diff --git a/app/adminapi/controller/safety/SafetyEventController.php b/app/adminapi/controller/safety/SafetyEventController.php new file mode 100644 index 000000000..4184ef55d --- /dev/null +++ b/app/adminapi/controller/safety/SafetyEventController.php @@ -0,0 +1,108 @@ +dataLists(new SafetyEventLists()); + } + + + /** + * @notes 添加安全事件 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function add() + { + $params = (new SafetyEventValidate())->post()->goCheck('add'); + $result = SafetyEventLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SafetyEventLogic::getError()); + } + + + /** + * @notes 编辑安全事件 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function edit() + { + $params = (new SafetyEventValidate())->post()->goCheck('edit'); + $result = SafetyEventLogic::edit($params,$this->adminId); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SafetyEventLogic::getError()); + } + + + /** + * @notes 删除安全事件 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function delete() + { + $params = (new SafetyEventValidate())->post()->goCheck('delete'); + SafetyEventLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取安全事件详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function detail() + { + $params = (new SafetyEventValidate())->goCheck('detail'); + $result = SafetyEventLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/safety/SafetyEventLists.php b/app/adminapi/lists/safety/SafetyEventLists.php new file mode 100644 index 000000000..575fb975e --- /dev/null +++ b/app/adminapi/lists/safety/SafetyEventLists.php @@ -0,0 +1,89 @@ + ['happen_time'], + '%like%' => ['name'], + ]; + } + + + /** + * @notes 获取安全事件列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function lists(): array + { + return SafetyEvent::where($this->searchWhere) + ->field(['id', 'org_id', 'dept_id', 'project_id', 'name', 'happen_time', 'content', 'remark', 'file']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($item){ + $project = Project::field('name')->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']; + return $item; + }) + ->toArray(); + } + + + /** + * @notes 获取安全事件数量 + * @return int + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function count(): int + { + return SafetyEvent::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/safety/SafetyEventLogic.php b/app/adminapi/logic/safety/SafetyEventLogic.php new file mode 100644 index 000000000..bfad884b3 --- /dev/null +++ b/app/adminapi/logic/safety/SafetyEventLogic.php @@ -0,0 +1,136 @@ + $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'name' => $params['name'], + 'happen_time' => strtotime($params['happen_time']), + 'content' => $params['content'], + 'remark' => $params['remark'], + 'file' => !empty($params['file']) ? $params['file'] : null, + 'add_user' => $admin_id, + 'update_user' => $admin_id, + ]); + 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/19 13:52 + */ + public static function edit(array $params,$admin_id): bool + { + Db::startTrans(); + try { + SafetyEvent::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'name' => $params['name'], + 'happen_time' => strtotime($params['happen_time']), + 'content' => $params['content'], + 'remark' => $params['remark'], + 'file' => !empty($params['file']) ? $params['file'] : null, + 'update_user' => $admin_id, + 'update_time' => time() + ]); + 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/19 13:52 + */ + public static function delete(array $params): bool + { + return SafetyEvent::destroy($params['id']); + } + + + /** + * @notes 获取安全事件详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public static function detail($params): array + { + $data = SafetyEvent::field('id,org_id,dept_id,project_id,name,happen_time,content,remark,file,add_user,update_user,create_time,update_time')->findOrEmpty($params['id'])->toArray(); + $project = Project::field('name')->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(); + $admin = Admin::where('id','in',[$data['add_user'],$data['update_user']])->column('name','id'); + $data['org_name'] = $org['name']; + $data['dept_name'] = $dept['name']; + $data['project_name'] = $project['name']; + $data['add_user_name'] = $admin[$data['add_user']]; + $data['update_user_name'] = $admin[$data['update_user']]; + return $data; + } +} \ No newline at end of file diff --git a/app/adminapi/validate/safety/SafetyEventValidate.php b/app/adminapi/validate/safety/SafetyEventValidate.php new file mode 100644 index 000000000..ee292c3ae --- /dev/null +++ b/app/adminapi/validate/safety/SafetyEventValidate.php @@ -0,0 +1,156 @@ + 'require', + 'org_id' => 'require|checkOrg', + 'dept_id' => 'require|checkDept', + 'project_id' => 'require|checkProject', + 'happen_time' => 'date', + 'file' => 'checkFile' + ]; + + protected $message = [ + 'id.require' => '缺少必要参数', + 'org_id.require' => '请选择组织', + 'dept_id.require' => '请选择部门', + 'project_id.require' => '请选择项目', + 'happen_time.date' => '发生时间格式错误', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'org_id' => '组织id', + 'dept_id' => '部门id', + 'project_id' => '项目id', + 'add_user' => '添加人', + 'update_user' => '更新人', + ]; + + + /** + * @notes 添加场景 + * @return SafetyEventValidate + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function sceneAdd() + { + return $this->only(['org_id','dept_id','project_id','name','happen_time','content','remark','file']); + } + + + /** + * @notes 编辑场景 + * @return SafetyEventValidate + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function sceneEdit() + { + return $this->only(['id','org_id','dept_id','project_id','name','happen_time','content','remark','file']); + } + + + /** + * @notes 删除场景 + * @return SafetyEventValidate + * @author likeadmin + * @date 2023/12/19 13:52 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SafetyEventValidate + * @author likeadmin + * @date 2023/12/19 13:52 + */ + 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/SafetyEvent.php b/app/common/model/safety/SafetyEvent.php new file mode 100644 index 000000000..1f72becf8 --- /dev/null +++ b/app/common/model/safety/SafetyEvent.php @@ -0,0 +1,42 @@ +