You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/application/work/model/WorkClass.php

135 lines
3.7 KiB

4 years ago
<?php
// +----------------------------------------------------------------------
// | Description: 项目下任务分类模型
// +----------------------------------------------------------------------
// | Author: yykun
// +----------------------------------------------------------------------
namespace app\work\model;
3 years ago
use app\admin\controller\ApiCommon;
4 years ago
use think\Db;
use think\Model;
use think\Request;
class WorkClass extends Model
{
/**
* 为了数据库的整洁同时又不影响Model和Controller的名称
* 我们约定每个模块的数据表都加上相同的前缀比如微信模块用weixin作为数据表前缀
*/
protected $name = 'work_task_class';
protected $createTime = 'create_time';
protected $updateTime = false;
protected $autoWriteTimestamp = true;
protected $insert = [
'status' => 1,
];
/**
* [getDataList 列表]
* @AuthorHTL
* @param [string] $map [查询条件]
* @param [number] $page [当前页数]
* @param [number] $limit [每页数量]
* @return [array] [description]
*/
public function getDataList($work_id='')
{
$map['status'] = 1;
if ($work_id) {
$map['work_id'] = $work_id;
}
$dataCount = $this->where($map)->count();
$list = $this->where($map)->order('order_id asc')->field('class_id,name')->select();
$data = [];
$data['list'] = $list ? : [];
$data['dataCount'] = $dataCount ? : 0;
return $data;
}
/**
* 创建
* @author yykun
* @param
* @return
*/
public function createData($param)
{
//获取最大order_id
$max_order_id = $this->where(['work_id' => $param['work_id'],'status' => 1])->max('order_id');
$this->startTrans();
try {
$data['create_time'] = time();
$data['create_user_id'] = $param['create_user_id'];
$data['name'] = $param['name'];
$data['work_id'] = $param['work_id'];
$data['status'] = 1;
$data['order_id'] = $max_order_id ? $max_order_id+1 : 0;
$this->insert($data);
$this->commit();
3 years ago
$user=new ApiCommon();
$userInfo=$user->userInfo;
RecordActionLog($userInfo['id'], 'work', 'save',$param['name'], '','','添加了任务分类:'.$param['name']);
return true;
4 years ago
} catch(\Exception $e) {
$this->rollback();
$this->error = '添加失败';
return false;
}
}
/**
* 重命名
* @author yykun
* @param
* @return
*/
public function rename($param)
{
$map['class_id'] = $param['class_id'];
3 years ago
$classInfo = db('work_task_class')->where(['class_id' => $param['class_id']])->find();
4 years ago
$flag = $this->where($map)->update(['name' => $param['name']]);
if (!$flag) {
$this->error = '重命名失败';
return false;
}
3 years ago
$user=new ApiCommon();
$userInfo=$user->userInfo;
RecordActionLog($userInfo['id'], 'work', 'save',$classInfo['name'], '','','编辑了任务分类:'.$classInfo['name']);
return true;
4 years ago
}
/**
* 删除分类 该分类下所有任务删除
* @author yykun
* @param
* @return
*/
public function deleteById($param)
{
$map['class_id'] = $param['class_id'];
$this->startTrans();
try {
$taskData = [];
$taskData['ishidden'] = 1;
$taskData['hidden_time'] = time();
$flag = Db::name('Task')->where($map)->update($taskData);
$ret = $this->where($map)->update(['status' => 0]);
if ($ret) {
$this->commit();
return true;
} else {
$this->rollback();
$this->error = '删除失败';
return false;
}
} catch (\Exception $e) {
$this->rollback();
$this->error = '删除失败';
return false;
}
}
}