diff --git a/app/adminapi/controller/supervision_work/SupervisionSideStationController.php b/app/adminapi/controller/supervision_work/SupervisionSideStationController.php new file mode 100644 index 000000000..7fbb8a188 --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionSideStationController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionSideStationLists()); + } + + + /** + * @notes 添加工程监理--旁站登记 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function add() + { + $params = (new SupervisionSideStationValidate())->post()->goCheck('add'); + $result = SupervisionSideStationLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionSideStationLogic::getError()); + } + + + /** + * @notes 编辑工程监理--旁站登记 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function edit() + { + $params = (new SupervisionSideStationValidate())->post()->goCheck('edit'); + $result = SupervisionSideStationLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionSideStationLogic::getError()); + } + + + /** + * @notes 删除工程监理--旁站登记 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function delete() + { + $params = (new SupervisionSideStationValidate())->post()->goCheck('delete'); + SupervisionSideStationLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--旁站登记详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function detail() + { + $params = (new SupervisionSideStationValidate())->goCheck('detail'); + $result = SupervisionSideStationLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionSideStationProblemController.php b/app/adminapi/controller/supervision_work/SupervisionSideStationProblemController.php new file mode 100644 index 000000000..14d238162 --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionSideStationProblemController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionSideStationProblemLists()); + } + + + /** + * @notes 添加工程监理--旁站问题 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function add() + { + $params = (new SupervisionSideStationProblemValidate())->post()->goCheck('add'); + $result = SupervisionSideStationProblemLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionSideStationProblemLogic::getError()); + } + + + /** + * @notes 编辑工程监理--旁站问题 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function edit() + { + $params = (new SupervisionSideStationProblemValidate())->post()->goCheck('edit'); + $result = SupervisionSideStationProblemLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionSideStationProblemLogic::getError()); + } + + + /** + * @notes 删除工程监理--旁站问题 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function delete() + { + $params = (new SupervisionSideStationProblemValidate())->post()->goCheck('delete'); + SupervisionSideStationProblemLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--旁站问题详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function detail() + { + $params = (new SupervisionSideStationProblemValidate())->goCheck('detail'); + $result = SupervisionSideStationProblemLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionSideStationResultController.php b/app/adminapi/controller/supervision_work/SupervisionSideStationResultController.php new file mode 100644 index 000000000..80539be5c --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionSideStationResultController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionSideStationResultLists()); + } + + + /** + * @notes 添加工程监理--旁站结果 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function add() + { + $params = (new SupervisionSideStationResultValidate())->post()->goCheck('add'); + $result = SupervisionSideStationResultLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionSideStationResultLogic::getError()); + } + + + /** + * @notes 编辑工程监理--旁站结果 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function edit() + { + $params = (new SupervisionSideStationResultValidate())->post()->goCheck('edit'); + $result = SupervisionSideStationResultLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionSideStationResultLogic::getError()); + } + + + /** + * @notes 删除工程监理--旁站结果 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function delete() + { + $params = (new SupervisionSideStationResultValidate())->post()->goCheck('delete'); + SupervisionSideStationResultLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--旁站结果详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function detail() + { + $params = (new SupervisionSideStationResultValidate())->goCheck('detail'); + $result = SupervisionSideStationResultLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionSideStationLists.php b/app/adminapi/lists/supervision_work/SupervisionSideStationLists.php new file mode 100644 index 000000000..14f17f07c --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionSideStationLists.php @@ -0,0 +1,94 @@ + ['project_id', 'side_station_type'], + '%like%' => ['side_station_code'], + ]; + } + + + /** + * @notes 获取工程监理--旁站登记列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function lists(): array + { + return SupervisionSideStation::withoutField('update_time,delete_time')->where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty(); + $check_item = SupervisionCheckItem::field('node_name')->where('id',$data['check_item_id'])->findOrEmpty(); + $company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty(); + $check_item_detail = SupervisionCheckItem::where('id','in',$data['check_item_detail_ids'])->column('node_name'); + $create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty(); + $data['project_name'] = $project['project_name']; + $data['check_item_name'] = $check_item['node_name']; + $data['company_name'] = $company['unit_name']; + $data['check_item_detail_name'] = implode(',',$check_item_detail); + $data['create_user_name'] = $create_user['name']; + $data['side_station_type_text'] = $data->side_station_type_text; + $data['side_station_result_text'] = $data->side_station_result_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工程监理--旁站登记数量 + * @return int + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function count(): int + { + return SupervisionSideStation::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionSideStationProblemLists.php b/app/adminapi/lists/supervision_work/SupervisionSideStationProblemLists.php new file mode 100644 index 000000000..85367bf74 --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionSideStationProblemLists.php @@ -0,0 +1,76 @@ + ['side_station_id'], + ]; + } + + + /** + * @notes 获取工程监理--旁站问题列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function lists(): array + { + return SupervisionSideStationProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取工程监理--旁站问题数量 + * @return int + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function count(): int + { + return SupervisionSideStationProblem::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionSideStationResultLists.php b/app/adminapi/lists/supervision_work/SupervisionSideStationResultLists.php new file mode 100644 index 000000000..ceea9d24c --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionSideStationResultLists.php @@ -0,0 +1,79 @@ + ['side_station_id', 'must_check', 'check_result'], + ]; + } + + + /** + * @notes 获取工程监理--旁站结果列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function lists(): array + { + return SupervisionSideStationResult::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['must_check_text'] = $data->must_check_text; + $data['check_result_text'] = $data->check_result_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工程监理--旁站结果数量 + * @return int + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function count(): int + { + return SupervisionSideStationResult::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionSideStationLogic.php b/app/adminapi/logic/supervision_work/SupervisionSideStationLogic.php new file mode 100644 index 000000000..24a67d661 --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionSideStationLogic.php @@ -0,0 +1,225 @@ + $params['project_id'], + 'side_station_code' => data_unique_code('PZ'), + 'side_station_type' => $params['side_station_type'], + 'check_item_id' => $params['check_item_id'], + 'position' => $params['position'], + 'company_id' => $params['company_id'], + 'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0, + 'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0, + 'workers' => $params['workers'], + 'managers' => $params['managers'], + 'situation' => $params['situation'], + 'side_station_result' => $params['side_station_result'], + 'side_station_user' => $params['side_station_user'], + 'check_item_detail_ids' => $params['check_item_detail_ids'] ? json_encode($params['check_item_detail_ids']) : null, + 'annex' => $params['annex'] ? json_encode($params['annex']) : null, + 'create_user' => $admin_id + ]); + if(!empty($params['side_result'])){ + foreach($params['side_result'] as $v){ + SupervisionSideStationResult::create([ + 'side_station_id' => $res->id, + 'check_type' => $v['check_type'], + 'check_content' => $v['check_content'], + 'must_check' => $v['must_check'], + 'check_result' => $v['check_result'] + ]); + } + } + if(!empty($params['side_problem'])){ + foreach($params['side_problem'] as $v){ + SupervisionSideStationProblem::create([ + 'side_station_id' => $res->id, + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + ]); + } + } + 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/27 13:58 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionSideStation::where('id', $params['id'])->update([ + 'project_id' => $params['project_id'], + 'side_station_type' => $params['side_station_type'], + 'check_item_id' => $params['check_item_id'], + 'position' => $params['position'], + 'company_id' => $params['company_id'], + 'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0, + 'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0, + 'workers' => $params['workers'], + 'managers' => $params['managers'], + 'situation' => $params['situation'], + 'side_station_result' => $params['side_station_result'], + 'side_station_user' => $params['side_station_user'], + 'check_item_detail_ids' => $params['check_item_detail_ids'] ? json_encode($params['check_item_detail_ids']) : null, + 'annex' => $params['annex'] ? json_encode($params['annex']) : null, + 'update_time' => time(), + ]); + if(!empty($params['side_result'])){ + foreach($params['side_result'] as $v){ + if(!empty($v['id'])){ + SupervisionSideStationResult::where('id',$v['id'])->update([ + 'side_station_id' => $params['id'], + 'check_type' => $v['check_type'], + 'check_content' => $v['check_content'], + 'must_check' => $v['must_check'], + 'check_result' => $v['check_result'], + 'update_time' => time(), + ]); + }else{ + SupervisionSideStationResult::create([ + 'side_station_id' => $params['id'], + 'check_type' => $v['check_type'], + 'check_content' => $v['check_content'], + 'must_check' => $v['must_check'], + 'check_result' => $v['check_result'] + ]); + } + } + } + if(!empty($params['side_problem'])){ + foreach($params['side_problem'] as $v){ + if(!empty($v['id'])){ + SupervisionSideStationProblem::where('id',$v['id'])->update([ + 'side_station_id' => $params['id'], + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + 'update_time' => time(), + ]); + }else{ + SupervisionSideStationProblem::create([ + 'side_station_id' => $params['id'], + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + ]); + } + } + } + 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/27 13:58 + */ + public static function delete(array $params): bool + { + $side_station_result = SupervisionSideStationResult::where('side_station_id',$params['id'])->findOrEmpty(); + if(!$side_station_result->isEmpty()){ + self::setError('该旁站内容下存在旁站结果数据,请先删除旁站结果数据'); + return false; + } + $side_station_problem = SupervisionSideStationProblem::where('side_station_id',$params['id'])->findOrEmpty(); + if(!$side_station_problem->isEmpty()){ + self::setError('该旁站内容下存在旁站问题数据,请先删除旁站问题数据'); + return false; + } + return SupervisionSideStation::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--旁站登记详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public static function detail($params): array + { + $data = SupervisionSideStation::withoutField('update_time,delete_time')->findOrEmpty($params['id']); + $project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty(); + $check_item = SupervisionCheckItem::field('node_name')->where('id',$data['check_item_id'])->findOrEmpty(); + $company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty(); + $check_item_detail = SupervisionCheckItem::where('id','in',$data['check_item_detail_ids'])->column('node_name'); + $create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty(); + $data['project_name'] = $project['project_name']; + $data['check_item_name'] = $check_item['node_name']; + $data['company_name'] = $company['unit_name']; + $data['check_item_detail_name'] = implode(',',$check_item_detail); + $data['create_user_name'] = $create_user['name']; + $data['side_station_type_text'] = $data->side_station_type_text; + $data['side_station_result_text'] = $data->side_station_result_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionSideStationProblemLogic.php b/app/adminapi/logic/supervision_work/SupervisionSideStationProblemLogic.php new file mode 100644 index 000000000..ba71054b7 --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionSideStationProblemLogic.php @@ -0,0 +1,111 @@ + $params['side_station_id'], + 'problem_cate' => $params['problem_cate'], + 'problem_description' => $params['problem_description'], + 'problem_name' => $params['problem_name'] + ]); + 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/27 13:58 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionSideStationProblem::where('id', $params['id'])->update([ + 'side_station_id' => $params['side_station_id'], + 'problem_cate' => $params['problem_cate'], + 'problem_description' => $params['problem_description'], + 'problem_name' => $params['problem_name'], + '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 2024/02/27 13:58 + */ + public static function delete(array $params): bool + { + return SupervisionSideStationProblem::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--旁站问题详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public static function detail($params): array + { + return SupervisionSideStationProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionSideStationResultLogic.php b/app/adminapi/logic/supervision_work/SupervisionSideStationResultLogic.php new file mode 100644 index 000000000..c559a66cf --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionSideStationResultLogic.php @@ -0,0 +1,116 @@ + $params['side_station_id'], + 'check_type' => $params['check_type'], + 'check_content' => $params['check_content'], + 'must_check' => $params['must_check'], + 'check_result' => $params['check_result'] + ]); + 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/27 13:58 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionSideStationResult::where('id', $params['id'])->update([ + 'side_station_id' => $params['side_station_id'], + 'check_type' => $params['check_type'], + 'check_content' => $params['check_content'], + 'must_check' => $params['must_check'], + 'check_result' => $params['check_result'], + '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 2024/02/27 13:58 + */ + public static function delete(array $params): bool + { + return SupervisionSideStationResult::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--旁站结果详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public static function detail($params): array + { + $data = SupervisionSideStationResult::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']); + $data['must_check_text'] = $data->must_check_text; + $data['check_result_text'] = $data->check_result_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionSideStationProblemValidate.php b/app/adminapi/validate/supervision_work/SupervisionSideStationProblemValidate.php new file mode 100644 index 000000000..34f912a70 --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionSideStationProblemValidate.php @@ -0,0 +1,122 @@ + 'require|checkData', + 'side_station_id' => 'require|checkSideStation', + 'problem_cate' => 'require', + 'problem_description' => 'require', + 'problem_name' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'side_station_id' => '旁站id', + 'problem_cate' => '问题分类', + 'problem_description' => '问题说明', + 'problem_name' => '问题名称', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionSideStationProblemValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneAdd() + { + return $this->only(['side_station_id','problem_cate','problem_description','problem_name']); + } + + + /** + * @notes 编辑场景 + * @return SupervisionSideStationProblemValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneEdit() + { + return $this->only(['id','side_station_id','problem_cate','problem_description','problem_name']); + } + + + /** + * @notes 删除场景 + * @return SupervisionSideStationProblemValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionSideStationProblemValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionSideStationProblem::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkInspection($value): bool|string + { + $data = SupervisionSideStation::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '旁站信息不存在'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionSideStationResultValidate.php b/app/adminapi/validate/supervision_work/SupervisionSideStationResultValidate.php new file mode 100644 index 000000000..8c913d28c --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionSideStationResultValidate.php @@ -0,0 +1,124 @@ + 'require|checkData', + 'side_station_id' => 'require|checkSideStation', + 'check_type' => 'require', + 'check_content' => 'require', + 'must_check' => 'require|in:0,1', + 'check_result' => 'require|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'side_station_id' => '旁站id', + 'check_type' => '检查类别', + 'check_content' => '检查内容', + 'must_check' => '是否必检', + 'check_result' => '检查结果', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionSideStationResultValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneAdd() + { + return $this->only(['side_station_id','check_type','check_content','must_check','check_result']); + } + + + /** + * @notes 编辑场景 + * @return SupervisionSideStationResultValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneEdit() + { + return $this->only(['id','side_station_id','check_type','check_content','must_check','check_result']); + } + + + /** + * @notes 删除场景 + * @return SupervisionSideStationResultValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionSideStationResultValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionSideStationResult::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkSideStation($value): bool|string + { + $data = SupervisionSideStation::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '旁站信息不存在'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionSideStationValidate.php b/app/adminapi/validate/supervision_work/SupervisionSideStationValidate.php new file mode 100644 index 000000000..b7f7b4b6e --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionSideStationValidate.php @@ -0,0 +1,231 @@ + 'require|checkData', + 'project_id' => 'require|checkProject', + 'side_station_type' => 'require|checkSideStationType', + 'check_item_id' => 'require|checkCheckItem', + 'company_id' => 'checkCompany', + 'start_time' => 'require|dateFormat:Y-m-d H:i:s', + 'end_time' => 'require|dateFormat:Y-m-d H:i:s', + 'workers' => 'integer', + 'managers' => 'integer', + 'side_station_result' => 'in:0,1', + 'check_item_detail_ids' => 'checkCheckItemDetail', + 'annex' => 'checkAnnex', + 'side_result' => 'checkSideResult', + 'side_problem' => 'checkSideProblem' + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'project_id' => '项目id', + 'side_station_code' => '旁站编号', + 'side_station_type' => '旁站类型', + 'check_item_id' => '单位工程', + 'position' => '部位', + 'company_id' => '施工单位', + 'start_time' => '旁站开始时间', + 'end_time' => '旁站结束时间', + 'workers' => '施工人数', + 'managers' => '管理人数', + 'situation' => '现场施工情况', + 'side_station_result' => '旁站结果 0-完成 1-交班', + 'side_station_user' => '旁站人员', + 'create_user' => '创建人', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionSideStationValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return SupervisionSideStationValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return SupervisionSideStationValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionSideStationValidate + * @author likeadmin + * @date 2024/02/27 13:58 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionSideStation::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkProject($value): bool|string + { + $data = SupervisionProject::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '项目信息不存在'; + } + return true; + } + + public function checkSideStationType($value): bool|string + { + $dict = DictData::where('type_value','side_station_type')->column('value'); + if(!in_array($value,$dict)){ + return '旁站类型数据值无效'; + } + return true; + } + + public function checkCheckItem($value,$rule,$params): bool|string + { + $data = SupervisionCheckItem::where('id',$value)->where('project_id',$params['project_id'])->where('node_type',2)->findOrEmpty(); + if($data->isEmpty()){ + return '单位工程数据不存在'; + } + return true; + } + + public function checkCompany($value,$rule,$params): bool|string + { + $data = SupervisionParticipatingUnits::where('id',$value)->where('project_id',$params['project_id'])->findOrEmpty(); + if($data->isEmpty()){ + return '施工单位信息不存在'; + } + return true; + } + + public function checkCheckItemDetail($value,$rule,$params): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '检查表单选择数据格式错误'; + foreach($value as $v){ + $data = SupervisionCheckItem::where('id',$v)->where('project_id',$params['project_id'])->findOrEmpty(); + if($data->isEmpty()){ + return '检查项节点数据不存在'; + } + } + return true; + } + + public function checkAnnex($value): bool|string + { + if(!empty($value) && $value != '' && !is_array($value)){ + return '附件格式错误'; + } + return true; + } + + public function checkSideResult($value): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '旁站结果数据格式错误'; + foreach($value as $k=>$v){ + if(!empty($v['id'])){ + $data = SupervisionSideStationResult::where('id',$v['id'])->findOrEmpty(); + if($data->isEmpty()){ + return '旁站结果列表第'.($k+1).'行数据不存在'; + } + } + if(empty($v['check_type'])) return '旁站结果列表第'.($k+1).'行检查类别为空'; + if(empty($v['check_content'])) return '旁站结果列表第'.($k+1).'行检查内容为空'; + if(!isset($v['must_check']) || $v['must_check'] == '') return '旁站结果列表第'.($k+1).'行是否必检为空'; + if(!in_array($v['must_check'],[0,1])) return '旁站结果列表第'.($k+1).'行是否必检数据值无效'; + if(!isset($v['check_result']) || $v['check_result'] == '') return '旁站结果列表第'.($k+1).'行检查结果为空'; + if(!in_array($v['check_result'],[0,1])) return '旁站结果列表第'.($k+1).'行检查结果数据值无效'; + } + return true; + } + + public function checkSideProblem($value): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '旁站问题数据格式错误'; + foreach($value as $k=>$v){ + if(!empty($v['id'])){ + $data = SupervisionSideStationProblem::where('id',$v['id'])->findOrEmpty(); + if($data->isEmpty()){ + return '旁站问题列表第'.($k+1).'行数据不存在'; + } + } + if(empty($v['problem_cate'])) return '旁站问题列表第'.($k+1).'行问题分类为空'; + if(empty($v['problem_description'])) return '旁站问题列表第'.($k+1).'行问题说明为空'; + if(empty($v['problem_name'])) return '旁站问题列表第'.($k+1).'行问题名称为空'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/common/model/supervision_work/SupervisionSideStation.php b/app/common/model/supervision_work/SupervisionSideStation.php new file mode 100644 index 000000000..9780e11a9 --- /dev/null +++ b/app/common/model/supervision_work/SupervisionSideStation.php @@ -0,0 +1,63 @@ +column('name','value'); + return !empty($data['side_station_type']) ? $dict[$data['side_station_type']] : ''; + } + + public function getSideStationResultTextAttr($value,$data){ + $arr = [0=>'完成', 1=>'交班']; + return $arr[$data['side_station_result']]; + } + + public function getStartTimeAttr($value): string + { + return !empty($value) ? date('Y-m-d H:i:s', $value) : ''; + } + + public function getEndTimeAttr($value): string + { + return !empty($value) ? date('Y-m-d H:i:s', $value) : ''; + } +} \ No newline at end of file diff --git a/app/common/model/supervision_work/SupervisionSideStationProblem.php b/app/common/model/supervision_work/SupervisionSideStationProblem.php new file mode 100644 index 000000000..38b79dbb8 --- /dev/null +++ b/app/common/model/supervision_work/SupervisionSideStationProblem.php @@ -0,0 +1,34 @@ +'否',1=>'是']; + return $arr[$data['must_check']]; + } + + public function getCheckResultTextAttr($value,$data): string + { + $arr = [0=>'合格',1=>'不合格']; + return $arr[$data['check_result']]; + } +} \ No newline at end of file