From b69b85226446af3a83b0d44d17219a056877557c Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Fri, 23 Feb 2024 10:27:57 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E9=A1=B9=E7=9B=AE=E5=8F=98=E6=9B=B4?= =?UTF-8?q?=E7=AD=BE=E8=AF=81=E6=98=8E=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectChangeVisaContentController.php | 108 +++++++++++++++ .../ProjectChangeVisaContentLists.php | 77 +++++++++++ .../ProjectChangeVisaContentLogic.php | 130 ++++++++++++++++++ .../ProjectChangeVisaContentValidate.php | 94 +++++++++++++ .../ProjectChangeVisaContent.php | 34 +++++ 5 files changed, 443 insertions(+) create mode 100644 app/adminapi/controller/project_process_management/ProjectChangeVisaContentController.php create mode 100644 app/adminapi/lists/project_process_management/ProjectChangeVisaContentLists.php create mode 100644 app/adminapi/logic/project_process_management/ProjectChangeVisaContentLogic.php create mode 100644 app/adminapi/validate/project_process_management/ProjectChangeVisaContentValidate.php create mode 100644 app/common/model/project_process_management/ProjectChangeVisaContent.php diff --git a/app/adminapi/controller/project_process_management/ProjectChangeVisaContentController.php b/app/adminapi/controller/project_process_management/ProjectChangeVisaContentController.php new file mode 100644 index 000000000..2d63dec5c --- /dev/null +++ b/app/adminapi/controller/project_process_management/ProjectChangeVisaContentController.php @@ -0,0 +1,108 @@ +dataLists(new ProjectChangeVisaContentLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function add() + { + $params = (new ProjectChangeVisaContentValidate())->post()->goCheck('add'); + $result = ProjectChangeVisaContentLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProjectChangeVisaContentLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function edit() + { + $params = (new ProjectChangeVisaContentValidate())->post()->goCheck('edit'); + $result = ProjectChangeVisaContentLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProjectChangeVisaContentLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function delete() + { + $params = (new ProjectChangeVisaContentValidate())->post()->goCheck('delete'); + ProjectChangeVisaContentLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function detail() + { + $params = (new ProjectChangeVisaContentValidate())->goCheck('detail'); + $result = ProjectChangeVisaContentLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/project_process_management/ProjectChangeVisaContentLists.php b/app/adminapi/lists/project_process_management/ProjectChangeVisaContentLists.php new file mode 100644 index 000000000..72fd233c4 --- /dev/null +++ b/app/adminapi/lists/project_process_management/ProjectChangeVisaContentLists.php @@ -0,0 +1,77 @@ + ['project_change_visa_dataid', 'directory', 'unit_name', 'time', 'major', 'category', 'review_content', 'review_comments', 'reviewer', 'reviewer_id', 'declared_value', 'calculated_value', 'remark'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function lists(): array + { + return ProjectChangeVisaContent::where($this->searchWhere) + ->field(['id', 'project_change_visa_dataid', 'directory', 'unit_name', 'time', 'major', 'category', 'review_content', 'review_comments', 'reviewer', 'reviewer_id', 'declared_value', 'calculated_value', 'remark']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function count(): int + { + return ProjectChangeVisaContent::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/project_process_management/ProjectChangeVisaContentLogic.php b/app/adminapi/logic/project_process_management/ProjectChangeVisaContentLogic.php new file mode 100644 index 000000000..908ea0dc8 --- /dev/null +++ b/app/adminapi/logic/project_process_management/ProjectChangeVisaContentLogic.php @@ -0,0 +1,130 @@ + $params['project_change_visa_dataid'], + 'directory' => $params['directory'], + 'unit_name' => $params['unit_name'], + 'time' => $params['time'], + 'major' => $params['major'], + 'category' => $params['category'], + 'review_content' => $params['review_content'], + 'review_comments' => $params['review_comments'], + 'reviewer' => $params['reviewer'], + 'reviewer_id' => $params['reviewer_id'], + 'declared_value' => $params['declared_value'], + 'calculated_value' => $params['calculated_value'], + 'remark' => $params['remark'], + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProjectChangeVisaContent::where('id', $params['id'])->update([ + 'project_change_visa_dataid' => $params['project_change_visa_dataid'], + 'directory' => $params['directory'], + 'unit_name' => $params['unit_name'], + 'time' => $params['time'], + 'major' => $params['major'], + 'category' => $params['category'], + 'review_content' => $params['review_content'], + 'review_comments' => $params['review_comments'], + 'reviewer' => $params['reviewer'], + 'reviewer_id' => $params['reviewer_id'], + 'declared_value' => $params['declared_value'], + 'calculated_value' => $params['calculated_value'], + 'remark' => $params['remark'], + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public static function delete(array $params): bool + { + return ProjectChangeVisaContent::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public static function detail($params): array + { + return ProjectChangeVisaContent::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/project_process_management/ProjectChangeVisaContentValidate.php b/app/adminapi/validate/project_process_management/ProjectChangeVisaContentValidate.php new file mode 100644 index 000000000..2c16d5c76 --- /dev/null +++ b/app/adminapi/validate/project_process_management/ProjectChangeVisaContentValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return ProjectChangeVisaContentValidate + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return ProjectChangeVisaContentValidate + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return ProjectChangeVisaContentValidate + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProjectChangeVisaContentValidate + * @author likeadmin + * @date 2024/02/23 10:27 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/project_process_management/ProjectChangeVisaContent.php b/app/common/model/project_process_management/ProjectChangeVisaContent.php new file mode 100644 index 000000000..d0c7c019c --- /dev/null +++ b/app/common/model/project_process_management/ProjectChangeVisaContent.php @@ -0,0 +1,34 @@ +