From db1061b951b55a400937486e0e1094eb37408973 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Tue, 14 Nov 2023 10:52:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=A1=B9=E7=9B=AE=E8=B7=9F?= =?UTF-8?q?=E8=BF=9B=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../project/ProjectFollowUpController.php | 108 ++++++++++++++ .../lists/project/ProjectFollowUpLists.php | 77 ++++++++++ .../logic/project/ProjectFollowUpLogic.php | 136 ++++++++++++++++++ .../project/ProjectFollowUpValidate.php | 94 ++++++++++++ app/common/model/project/ProjectFollowUp.php | 34 +++++ 5 files changed, 449 insertions(+) create mode 100644 app/adminapi/controller/project/ProjectFollowUpController.php create mode 100644 app/adminapi/lists/project/ProjectFollowUpLists.php create mode 100644 app/adminapi/logic/project/ProjectFollowUpLogic.php create mode 100644 app/adminapi/validate/project/ProjectFollowUpValidate.php create mode 100644 app/common/model/project/ProjectFollowUp.php diff --git a/app/adminapi/controller/project/ProjectFollowUpController.php b/app/adminapi/controller/project/ProjectFollowUpController.php new file mode 100644 index 000000000..96294ad1b --- /dev/null +++ b/app/adminapi/controller/project/ProjectFollowUpController.php @@ -0,0 +1,108 @@ +dataLists(new ProjectFollowUpLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function add() + { + $params = (new ProjectFollowUpValidate())->post()->goCheck('add'); + $result = ProjectFollowUpLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProjectFollowUpLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function edit() + { + $params = (new ProjectFollowUpValidate())->post()->goCheck('edit'); + $result = ProjectFollowUpLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProjectFollowUpLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function delete() + { + $params = (new ProjectFollowUpValidate())->post()->goCheck('delete'); + ProjectFollowUpLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function detail() + { + $params = (new ProjectFollowUpValidate())->goCheck('detail'); + $result = ProjectFollowUpLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/project/ProjectFollowUpLists.php b/app/adminapi/lists/project/ProjectFollowUpLists.php new file mode 100644 index 000000000..04d9174e9 --- /dev/null +++ b/app/adminapi/lists/project/ProjectFollowUpLists.php @@ -0,0 +1,77 @@ + ['project_id', 'executor', 'contacts', 'contact_information', 'project_role', 'position', 'follow_date', 'follow_type', 'theme', 'action_description', 'project_assurance', 'follow_status', 'follow_stage', 'notes', 'next_follow_up_date', 'ceate_time'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function lists(): array + { + return ProjectFollowUp::where($this->searchWhere) + ->field(['id', 'project_id', 'executor', 'contacts', 'contact_information', 'project_role', 'position', 'follow_date', 'follow_type', 'theme', 'action_description', 'project_assurance', 'follow_status', 'follow_stage', 'notes', 'next_follow_up_date', 'ceate_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function count(): int + { + return ProjectFollowUp::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/project/ProjectFollowUpLogic.php b/app/adminapi/logic/project/ProjectFollowUpLogic.php new file mode 100644 index 000000000..0871fd686 --- /dev/null +++ b/app/adminapi/logic/project/ProjectFollowUpLogic.php @@ -0,0 +1,136 @@ + $params['project_id'], + 'executor' => $params['executor'], + 'contacts' => $params['contacts'], + 'contact_information' => $params['contact_information'], + 'project_role' => $params['project_role'], + 'position' => $params['position'], + 'follow_date' => strtotime($params['follow_date']), + 'follow_type' => $params['follow_type'], + 'theme' => $params['theme'], + 'action_description' => $params['action_description'], + 'project_assurance' => $params['project_assurance'], + 'follow_status' => $params['follow_status'], + 'follow_stage' => $params['follow_stage'], + 'notes' => $params['notes'], + 'next_follow_up_date' => strtotime($params['next_follow_up_date']), + 'ceate_time' => $params['ceate_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/11/14 10:49 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProjectFollowUp::where('id', $params['id'])->update([ + 'project_id' => $params['project_id'], + 'executor' => $params['executor'], + 'contacts' => $params['contacts'], + 'contact_information' => $params['contact_information'], + 'project_role' => $params['project_role'], + 'position' => $params['position'], + 'follow_date' => strtotime($params['follow_date']), + 'follow_type' => $params['follow_type'], + 'theme' => $params['theme'], + 'action_description' => $params['action_description'], + 'project_assurance' => $params['project_assurance'], + 'follow_status' => $params['follow_status'], + 'follow_stage' => $params['follow_stage'], + 'notes' => $params['notes'], + 'next_follow_up_date' => strtotime($params['next_follow_up_date']), + 'ceate_time' => $params['ceate_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/11/14 10:49 + */ + public static function delete(array $params): bool + { + return ProjectFollowUp::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public static function detail($params): array + { + return ProjectFollowUp::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/project/ProjectFollowUpValidate.php b/app/adminapi/validate/project/ProjectFollowUpValidate.php new file mode 100644 index 000000000..ce63bfc11 --- /dev/null +++ b/app/adminapi/validate/project/ProjectFollowUpValidate.php @@ -0,0 +1,94 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return ProjectFollowUpValidate + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return ProjectFollowUpValidate + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return ProjectFollowUpValidate + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProjectFollowUpValidate + * @author likeadmin + * @date 2023/11/14 10:49 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/project/ProjectFollowUp.php b/app/common/model/project/ProjectFollowUp.php new file mode 100644 index 000000000..3d302a49d --- /dev/null +++ b/app/common/model/project/ProjectFollowUp.php @@ -0,0 +1,34 @@ +