diff --git a/app/adminapi/controller/safety/SafetyProductMonthController.php b/app/adminapi/controller/safety/SafetyProductMonthController.php new file mode 100644 index 000000000..faf3b9aa2 --- /dev/null +++ b/app/adminapi/controller/safety/SafetyProductMonthController.php @@ -0,0 +1,108 @@ +dataLists(new SafetyProductMonthLists()); + } + + + /** + * @notes 添加安全生产月 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function add() + { + $params = (new SafetyProductMonthValidate())->post()->goCheck('add'); + $result = SafetyProductMonthLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SafetyProductMonthLogic::getError()); + } + + + /** + * @notes 编辑安全生产月 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function edit() + { + $params = (new SafetyProductMonthValidate())->post()->goCheck('edit'); + $result = SafetyProductMonthLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SafetyProductMonthLogic::getError()); + } + + + /** + * @notes 删除安全生产月 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function delete() + { + $params = (new SafetyProductMonthValidate())->post()->goCheck('delete'); + SafetyProductMonthLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取安全生产月详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function detail() + { + $params = (new SafetyProductMonthValidate())->goCheck('detail'); + $result = SafetyProductMonthLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/safety/SafetyProductMonthLists.php b/app/adminapi/lists/safety/SafetyProductMonthLists.php new file mode 100644 index 000000000..cc7000c4b --- /dev/null +++ b/app/adminapi/lists/safety/SafetyProductMonthLists.php @@ -0,0 +1,90 @@ + ['month'], + '%like%' => ['resp_user'], + ]; + } + + + /** + * @notes 获取安全生产月列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function lists(): array + { + return SafetyProductMonth::where($this->searchWhere) + ->field(['id', 'org_id', 'dept_id', 'project_id', 'month', 'resp_user', 'classify', 'hazard_num', 'data_statistics', 'current_important_work', 'next_important_work', 'item', 'file']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($item){ + $project = Project::field('name,project_code')->where('id',$item['project_id'])->findOrEmpty(); + $org = Orgs::field('name')->where('id',$item['org_id'])->findOrEmpty(); + $dept = Dept::field('name')->where('id',$item['dept_id'])->findOrEmpty(); + $item['org_name'] = $org['name']; + $item['dept_name'] = $dept['name']; + $item['project_name'] = $project['name']; + $item['project_code'] = $project['project_code']; + return $item; + }) + ->toArray(); + } + + + /** + * @notes 获取安全生产月数量 + * @return int + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function count(): int + { + return SafetyProductMonth::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/safety/SafetyProductMonthLogic.php b/app/adminapi/logic/safety/SafetyProductMonthLogic.php new file mode 100644 index 000000000..eee95b32b --- /dev/null +++ b/app/adminapi/logic/safety/SafetyProductMonthLogic.php @@ -0,0 +1,137 @@ + $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'month' => $params['month'], + 'resp_user' => $params['resp_user'], + 'classify' => $params['classify'], + 'hazard_num' => $params['hazard_num'], + 'data_statistics' => $params['data_statistics'], + 'current_important_work' => $params['current_important_work'], + 'next_important_work' => $params['next_important_work'], + 'item' => $params['item'], + 'file' => !empty($params['file']) ? $params['file'] : null, + ]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑安全生产月 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SafetyProductMonth::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'month' => $params['month'], + 'resp_user' => $params['resp_user'], + 'classify' => $params['classify'], + 'hazard_num' => $params['hazard_num'], + 'data_statistics' => $params['data_statistics'], + 'current_important_work' => $params['current_important_work'], + 'next_important_work' => $params['next_important_work'], + 'item' => $params['item'], + 'file' => !empty($params['file']) ? $params['file'] : null, + ]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除安全生产月 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public static function delete(array $params): bool + { + return SafetyProductMonth::destroy($params['id']); + } + + + /** + * @notes 获取安全生产月详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public static function detail($params): array + { + $data = SafetyProductMonth::findOrEmpty($params['id'])->toArray(); + $project = Project::field('name,project_code')->where('id',$data['project_id'])->findOrEmpty(); + $org = Orgs::field('name')->where('id',$data['org_id'])->findOrEmpty(); + $dept = Dept::field('name')->where('id',$data['dept_id'])->findOrEmpty(); + $data['org_name'] = $org['name']; + $data['dept_name'] = $dept['name']; + $data['project_name'] = $project['name']; + $data['project_code'] = $project['project_code']; + return $data; + } +} \ No newline at end of file diff --git a/app/adminapi/validate/safety/SafetyProductMonthValidate.php b/app/adminapi/validate/safety/SafetyProductMonthValidate.php new file mode 100644 index 000000000..0c3b92aed --- /dev/null +++ b/app/adminapi/validate/safety/SafetyProductMonthValidate.php @@ -0,0 +1,160 @@ + 'require', + 'org_id' => 'require|checkOrg', + 'dept_id' => 'require|checkDept', + 'project_id' => 'require|checkProject', + 'month' => 'require|in:1,2,3,4,5,6,7,8,9,10,11,12', + 'resp_user' => 'require', + 'hazard_num' => 'integer|gt:0', + 'file' => 'checkFile' + ]; + + protected $message = [ + 'id.require' => '缺少必要参数', + 'org_id.require' => '请选择组织', + 'dept_id.require' => '请选择部门', + 'project_id.require' => '请选择项目', + 'month.require' => '请选择月份', + 'month.in' => '月份数据值错误', + 'resp_user.require' => '请填写负责人', + 'hazard_num.integer' => '隐患数量值必须是整数', + 'hazard_num.gt' => '隐患数量值必须大于0', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'org_id' => '组织id', + 'dept_id' => '部门id', + 'project_id' => '项目id', + 'month' => '月份', + 'resp_user' => '负责人', + ]; + + + /** + * @notes 添加场景 + * @return SafetyProductMonthValidate + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return SafetyProductMonthValidate + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return SafetyProductMonthValidate + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SafetyProductMonthValidate + * @author likeadmin + * @date 2023/12/20 10:46 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkOrg($value): bool|string + { + $data = Orgs::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '组织不存在'; + } + return true; + } + + public function checkDept($value,$rule,$data): bool|string + { + $dept = Dept::where('id',$value)->findOrEmpty(); + if($dept->isEmpty()){ + return '部门不存在'; + } + if($dept['org_id'] != $data['org_id']){ + return '部门不属于当前选择的组织'; + } + return true; + } + + public function checkProject($value): bool|string + { + $data = Project::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '项目不存在'; + } + return true; + } + + public function checkFile($value): bool|string + { + if($value != ''){ + $file = json_decode($value,true); + if(empty($file)){ + return '附件必须是json数组'; + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/common/model/safety/SafetyProductMonth.php b/app/common/model/safety/SafetyProductMonth.php new file mode 100644 index 000000000..de39214a7 --- /dev/null +++ b/app/common/model/safety/SafetyProductMonth.php @@ -0,0 +1,37 @@ +