From efb38e120d9c37f4e3e0e571a3fb3ce65a6ec84f Mon Sep 17 00:00:00 2001 From: weiz Date: Thu, 21 Dec 2023 14:24:50 +0800 Subject: [PATCH] QualityAccident --- .../quality/QualityAccidentController.php | 108 +++++++++++++ .../lists/quality/QualityAccidentLists.php | 91 +++++++++++ .../logic/quality/QualityAccidentLogic.php | 147 ++++++++++++++++++ .../quality/QualityAccidentValidate.php | 140 +++++++++++++++++ app/common/model/quality/QualityAccident.php | 42 +++++ 5 files changed, 528 insertions(+) create mode 100644 app/adminapi/controller/quality/QualityAccidentController.php create mode 100644 app/adminapi/lists/quality/QualityAccidentLists.php create mode 100644 app/adminapi/logic/quality/QualityAccidentLogic.php create mode 100644 app/adminapi/validate/quality/QualityAccidentValidate.php create mode 100644 app/common/model/quality/QualityAccident.php diff --git a/app/adminapi/controller/quality/QualityAccidentController.php b/app/adminapi/controller/quality/QualityAccidentController.php new file mode 100644 index 000000000..415486594 --- /dev/null +++ b/app/adminapi/controller/quality/QualityAccidentController.php @@ -0,0 +1,108 @@ +dataLists(new QualityAccidentLists()); + } + + + /** + * @notes 添加质量事故 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function add() + { + $params = (new QualityAccidentValidate())->post()->goCheck('add'); + $result = QualityAccidentLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(QualityAccidentLogic::getError()); + } + + + /** + * @notes 编辑质量事故 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function edit() + { + $params = (new QualityAccidentValidate())->post()->goCheck('edit'); + $result = QualityAccidentLogic::edit($params,$this->adminId); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(QualityAccidentLogic::getError()); + } + + + /** + * @notes 删除质量事故 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function delete() + { + $params = (new QualityAccidentValidate())->post()->goCheck('delete'); + QualityAccidentLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取质量事故详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function detail() + { + $params = (new QualityAccidentValidate())->goCheck('detail'); + $result = QualityAccidentLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/quality/QualityAccidentLists.php b/app/adminapi/lists/quality/QualityAccidentLists.php new file mode 100644 index 000000000..72521559c --- /dev/null +++ b/app/adminapi/lists/quality/QualityAccidentLists.php @@ -0,0 +1,91 @@ + ['happen_date'], + '%like%' => ['type', 'device_accident'], + + ]; + } + + + /** + * @notes 获取质量事故列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function lists(): array + { + return QualityAccident::where($this->searchWhere) + ->field(['id', 'org_id', 'dept_id', 'project_id', 'happen_date', 'type', 'device_accident', 'contractor_user', 'our_company_user', 'not_our_company_user', 'content', 'remark', 'file', 'add_user', 'update_user']) + ->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/21 14:03 + */ + public function count(): int + { + return QualityAccident::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/quality/QualityAccidentLogic.php b/app/adminapi/logic/quality/QualityAccidentLogic.php new file mode 100644 index 000000000..fa37d305f --- /dev/null +++ b/app/adminapi/logic/quality/QualityAccidentLogic.php @@ -0,0 +1,147 @@ + $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'happen_date' => strtotime($params['happen_date']), + 'type' => $params['type'], + 'device_accident' => $params['device_accident'], + 'contractor_user' => $params['contractor_user'], + 'our_company_user' => $params['our_company_user'], + 'not_our_company_user' => $params['not_our_company_user'], + '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/21 14:03 + */ + public static function edit(array $params,$admin_id): bool + { + Db::startTrans(); + try { + QualityAccident::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'happen_date' => strtotime($params['happen_date']), + 'type' => $params['type'], + 'device_accident' => $params['device_accident'], + 'contractor_user' => $params['contractor_user'], + 'our_company_user' => $params['our_company_user'], + 'not_our_company_user' => $params['not_our_company_user'], + '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/21 14:03 + */ + public static function delete(array $params): bool + { + return QualityAccident::destroy($params['id']); + } + + + /** + * @notes 获取质量事故详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public static function detail($params): array + { + $data = QualityAccident::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(); + $admin = Admin::where('id','in',[$data['add_user'],$data['update_user']])->column('name','id'); + $data['project_name'] = $project['name']; + $data['project_code'] = $project['project_code']; + $data['org_name'] = $org['name']; + $data['dept_name'] = $dept['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/quality/QualityAccidentValidate.php b/app/adminapi/validate/quality/QualityAccidentValidate.php new file mode 100644 index 000000000..66e474d29 --- /dev/null +++ b/app/adminapi/validate/quality/QualityAccidentValidate.php @@ -0,0 +1,140 @@ + 'require', + 'org_id' => 'require|checkOrg', + 'dept_id' => 'require|checkDept', + 'project_id' => 'require|checkProject', + 'happen_date' => 'dateFormat:Y-m-d', + 'file' => 'checkFile', + ]; + + protected $message = [ + 'id.require' => '缺少必要参数', + 'org_id.require' => '请选择组织', + 'dept_id.require' => '请选择部门', + 'project_id.require' => '请选择项目', + 'happen_date.dateFormat' => '发生日期格式错误', + ]; + + + /** + * @notes 添加场景 + * @return QualityAccidentValidate + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return QualityAccidentValidate + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return QualityAccidentValidate + * @author likeadmin + * @date 2023/12/21 14:03 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return QualityAccidentValidate + * @author likeadmin + * @date 2023/12/21 14:03 + */ + 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/quality/QualityAccident.php b/app/common/model/quality/QualityAccident.php new file mode 100644 index 000000000..5ec4ccf02 --- /dev/null +++ b/app/common/model/quality/QualityAccident.php @@ -0,0 +1,42 @@ +