diff --git a/app/adminapi/controller/supervision_work/SupervisionCheckItemController.php b/app/adminapi/controller/supervision_work/SupervisionCheckItemController.php new file mode 100644 index 000000000..264a9c48e --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionCheckItemController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionCheckItemLists()); + } + + + /** + * @notes 添加工程监理--新增检查项 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function add() + { + $params = (new SupervisionCheckItemValidate())->post()->goCheck('add'); + $result = SupervisionCheckItemLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionCheckItemLogic::getError()); + } + + + /** + * @notes 编辑工程监理--新增检查项 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function edit() + { + $params = (new SupervisionCheckItemValidate())->post()->goCheck('edit'); + $result = SupervisionCheckItemLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionCheckItemLogic::getError()); + } + + + /** + * @notes 删除工程监理--新增检查项 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function delete() + { + $params = (new SupervisionCheckItemValidate())->post()->goCheck('delete'); + SupervisionCheckItemLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--新增检查项详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function detail() + { + $params = (new SupervisionCheckItemValidate())->goCheck('detail'); + $result = SupervisionCheckItemLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionCheckItemDetailController.php b/app/adminapi/controller/supervision_work/SupervisionCheckItemDetailController.php new file mode 100644 index 000000000..c7053d11a --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionCheckItemDetailController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionCheckItemDetailLists()); + } + + + /** + * @notes 添加工程监理--新增检查项明细 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function add() + { + $params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('add'); + $result = SupervisionCheckItemDetailLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionCheckItemDetailLogic::getError()); + } + + + /** + * @notes 编辑工程监理--新增检查项明细 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function edit() + { + $params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('edit'); + $result = SupervisionCheckItemDetailLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionCheckItemDetailLogic::getError()); + } + + + /** + * @notes 删除工程监理--新增检查项明细 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function delete() + { + $params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('delete'); + SupervisionCheckItemDetailLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--新增检查项明细详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function detail() + { + $params = (new SupervisionCheckItemDetailValidate())->goCheck('detail'); + $result = SupervisionCheckItemDetailLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionInspectionController.php b/app/adminapi/controller/supervision_work/SupervisionInspectionController.php new file mode 100644 index 000000000..15fd38a0f --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionInspectionController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionInspectionLists()); + } + + + /** + * @notes 添加工程监理--巡视登记 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function add() + { + $params = (new SupervisionInspectionValidate())->post()->goCheck('add'); + $result = SupervisionInspectionLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionInspectionLogic::getError()); + } + + + /** + * @notes 编辑工程监理--巡视登记 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function edit() + { + $params = (new SupervisionInspectionValidate())->post()->goCheck('edit'); + $result = SupervisionInspectionLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionInspectionLogic::getError()); + } + + + /** + * @notes 删除工程监理--巡视登记 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function delete() + { + $params = (new SupervisionInspectionValidate())->post()->goCheck('delete'); + SupervisionInspectionLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--巡视登记详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function detail() + { + $params = (new SupervisionInspectionValidate())->goCheck('detail'); + $result = SupervisionInspectionLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionInspectionProblemController.php b/app/adminapi/controller/supervision_work/SupervisionInspectionProblemController.php new file mode 100644 index 000000000..80635b522 --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionInspectionProblemController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionInspectionProblemLists()); + } + + + /** + * @notes 添加工程监理--巡视问题 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function add() + { + $params = (new SupervisionInspectionProblemValidate())->post()->goCheck('add'); + $result = SupervisionInspectionProblemLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionInspectionProblemLogic::getError()); + } + + + /** + * @notes 编辑工程监理--巡视问题 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function edit() + { + $params = (new SupervisionInspectionProblemValidate())->post()->goCheck('edit'); + $result = SupervisionInspectionProblemLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionInspectionProblemLogic::getError()); + } + + + /** + * @notes 删除工程监理--巡视问题 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function delete() + { + $params = (new SupervisionInspectionProblemValidate())->post()->goCheck('delete'); + SupervisionInspectionProblemLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--巡视问题详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function detail() + { + $params = (new SupervisionInspectionProblemValidate())->goCheck('detail'); + $result = SupervisionInspectionProblemLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionInspectionResultController.php b/app/adminapi/controller/supervision_work/SupervisionInspectionResultController.php new file mode 100644 index 000000000..98114229f --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionInspectionResultController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionInspectionResultLists()); + } + + + /** + * @notes 添加工程监理--巡视结果 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function add() + { + $params = (new SupervisionInspectionResultValidate())->post()->goCheck('add'); + $result = SupervisionInspectionResultLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionInspectionResultLogic::getError()); + } + + + /** + * @notes 编辑工程监理--巡视结果 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function edit() + { + $params = (new SupervisionInspectionResultValidate())->post()->goCheck('edit'); + $result = SupervisionInspectionResultLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionInspectionResultLogic::getError()); + } + + + /** + * @notes 删除工程监理--巡视结果 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function delete() + { + $params = (new SupervisionInspectionResultValidate())->post()->goCheck('delete'); + SupervisionInspectionResultLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--巡视结果详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function detail() + { + $params = (new SupervisionInspectionResultValidate())->goCheck('detail'); + $result = SupervisionInspectionResultLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionCheckItemDetailLists.php b/app/adminapi/lists/supervision_work/SupervisionCheckItemDetailLists.php new file mode 100644 index 000000000..e78f6a386 --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionCheckItemDetailLists.php @@ -0,0 +1,88 @@ + ['node_id'], + ]; + } + + + /** + * @notes 获取工程监理--新增检查项明细列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function lists(): array + { + $params = $this->request->get(); + $where = []; + if(isset($params['node_ids']) && $params['node_ids'] != ''){ + $where[] = ['node_id','in',$params['node_ids']]; + } + return SupervisionCheckItemDetail::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)->where($where) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['must_check_text'] = $data->must_check_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工程监理--新增检查项明细数量 + * @return int + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function count(): int + { + $params = $this->request->get(); + $where = []; + if(isset($params['node_ids']) && $params['node_ids'] != ''){ + $where[] = ['node_id','in',$params['node_ids']]; + } + return SupervisionCheckItemDetail::where($this->searchWhere)->where($where)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionCheckItemLists.php b/app/adminapi/lists/supervision_work/SupervisionCheckItemLists.php new file mode 100644 index 000000000..80aceda6b --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionCheckItemLists.php @@ -0,0 +1,85 @@ + ['project_id', 'node_type'], + '%like%' => ['node_name'], + ]; + } + + + /** + * @notes 获取工程监理--新增检查项列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function lists(): array + { + $lists = SupervisionCheckItem::withoutField('create_time,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(); + $pid = SupervisionCheckItem::field('node_name')->where('id',$data['pid'])->findOrEmpty(); + $data['project_name'] = $project['project_name']; + $data['p_node_name'] = $pid['node_name']; + $data['node_type_text'] = $data->node_type_text; + }) + ->toArray(); + return buildTree($lists,'pid'); + } + + + /** + * @notes 获取工程监理--新增检查项数量 + * @return int + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function count(): int + { + return SupervisionCheckItem::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionInspectionLists.php b/app/adminapi/lists/supervision_work/SupervisionInspectionLists.php new file mode 100644 index 000000000..9913fbaaf --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionInspectionLists.php @@ -0,0 +1,94 @@ + ['project_id', 'inspection_type'], + '%like%' => ['inspection_code'], + ]; + } + + + /** + * @notes 获取工程监理--巡视登记列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function lists(): array + { + return SupervisionInspection::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['inspection_type_text'] = $data->inspection_type_text; + $data['is_important_text'] = $data->is_important_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工程监理--巡视登记数量 + * @return int + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function count(): int + { + return SupervisionInspection::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionInspectionProblemLists.php b/app/adminapi/lists/supervision_work/SupervisionInspectionProblemLists.php new file mode 100644 index 000000000..005bb4048 --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionInspectionProblemLists.php @@ -0,0 +1,76 @@ + ['inspection_id'], + ]; + } + + + /** + * @notes 获取工程监理--巡视问题列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function lists(): array + { + return SupervisionInspectionProblem::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/26 17:18 + */ + public function count(): int + { + return SupervisionInspectionProblem::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionInspectionResultLists.php b/app/adminapi/lists/supervision_work/SupervisionInspectionResultLists.php new file mode 100644 index 000000000..49e3d82f6 --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionInspectionResultLists.php @@ -0,0 +1,79 @@ + ['inspection_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 09:23 + */ + public function lists(): array + { + return SupervisionInspectionResult::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 09:23 + */ + public function count(): int + { + return SupervisionInspectionResult::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionCheckItemDetailLogic.php b/app/adminapi/logic/supervision_work/SupervisionCheckItemDetailLogic.php new file mode 100644 index 000000000..4a7b47a2f --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionCheckItemDetailLogic.php @@ -0,0 +1,113 @@ + $params['node_id'], + 'check_type' => $params['check_type'], + 'check_content' => $params['check_content'], + 'must_check' => $params['must_check'], + ]); + 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/26 15:34 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionCheckItemDetail::where('id', $params['id'])->update([ + 'node_id' => $params['node_id'], + 'check_type' => $params['check_type'], + 'check_content' => $params['check_content'], + 'must_check' => $params['must_check'], + '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/26 15:34 + */ + public static function delete(array $params): bool + { + return SupervisionCheckItemDetail::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--新增检查项明细详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public static function detail($params): array + { + $data = SupervisionCheckItemDetail::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']); + $data['must_check_text'] = $data->must_check_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionCheckItemLogic.php b/app/adminapi/logic/supervision_work/SupervisionCheckItemLogic.php new file mode 100644 index 000000000..5aed42998 --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionCheckItemLogic.php @@ -0,0 +1,160 @@ + $params['project_id'], + 'node_name' => $params['node_name'], + 'node_type' => $params['node_type'], + 'node_code' => $params['node_code'], + 'pid' => $params['pid'], + 'inspection_basis' => $params['inspection_basis'], + 'reference_law' => $params['reference_law'], + ]); + if(!empty($params['check_item_detail'])){ + foreach($params['check_item_detail'] as $v){ + SupervisionCheckItemDetail::create([ + 'node_id' => $res->id, + 'check_type' => $v['check_type'], + 'check_content' => $v['check_content'], + 'must_check' => $v['must_check'], + ]); + } + } + 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/26 15:34 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionCheckItem::where('id', $params['id'])->update([ + 'project_id' => $params['project_id'], + 'node_name' => $params['node_name'], + 'node_type' => $params['node_type'], + 'node_code' => $params['node_code'], + 'pid' => $params['pid'], + 'inspection_basis' => $params['inspection_basis'], + 'reference_law' => $params['reference_law'], + 'update_time' => time(), + ]); + if(!empty($params['check_item_detail'])){ + foreach($params['check_item_detail'] as $v){ + if(!empty($v['id'])){ + SupervisionCheckItemDetail::where('id',$v['id'])->update([ + 'node_id' => $params['id'], + 'check_type' => $v['check_type'], + 'check_content' => $v['check_content'], + 'must_check' => $v['must_check'], + 'update_time' => time(), + ]); + }else{ + SupervisionCheckItemDetail::create([ + 'node_id' => $params['id'], + 'check_type' => $v['check_type'], + 'check_content' => $v['check_content'], + 'must_check' => $v['must_check'], + ]); + } + } + } + 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/26 15:34 + */ + public static function delete(array $params): bool + { + $data = SupervisionCheckItem::where('pid',$params['id'])->findOrEmpty(); + if(!$data->isEmpty()){ + self::setError('当前节点下存在子节点,请先删除子节点'); + return false; + } + return SupervisionCheckItem::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--新增检查项详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public static function detail($params): array + { + $data = SupervisionCheckItem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']); + $project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty(); + $pid = SupervisionCheckItem::field('node_name')->where('id',$data['pid'])->findOrEmpty(); + $data['project_name'] = $project['project_name']; + $data['p_node_name'] = $pid['node_name']; + $data['node_type_text'] = $data->node_type_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionInspectionLogic.php b/app/adminapi/logic/supervision_work/SupervisionInspectionLogic.php new file mode 100644 index 000000000..f6a18955b --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionInspectionLogic.php @@ -0,0 +1,216 @@ + $params['project_id'], + 'inspection_code' => data_unique_code('XS'), + 'inspection_type' => $params['inspection_type'], + 'check_item_id' => $params['check_item_id'], + 'inspection_position' => $params['inspection_position'], + 'workers' => $params['workers'], + 'managers' => $params['managers'], + 'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0, + 'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0, + 'inspection_user' => $params['inspection_user'], + 'company_id' => $params['company_id'], + 'inspection_content' => $params['inspection_content'], + 'is_important' => $params['is_important'], + 'follow_user' => $params['follow_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['inspection_result'])){ + foreach($params['inspection_result'] as $v){ + SupervisionInspectionResult::create([ + 'inspection_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['inspection_problem'])){ + foreach($params['inspection_problem'] as $v){ + SupervisionInspectionProblem::create([ + 'inspection_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/26 17:18 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionInspection::where('id', $params['id'])->update([ + 'project_id' => $params['project_id'], + 'inspection_type' => $params['inspection_type'], + 'check_item_id' => $params['check_item_id'], + 'inspection_position' => $params['inspection_position'], + 'workers' => $params['workers'], + 'managers' => $params['managers'], + 'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0, + 'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0, + 'inspection_user' => $params['inspection_user'], + 'company_id' => $params['company_id'], + 'inspection_content' => $params['inspection_content'], + 'is_important' => $params['is_important'], + 'follow_user' => $params['follow_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['inspection_result'])){ + foreach($params['inspection_result'] as $v){ + if(!empty($v['id'])){ + SupervisionInspectionResult::where('id',$v['id'])->update([ + 'inspection_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{ + SupervisionInspectionResult::create([ + 'inspection_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['inspection_problem'])){ + foreach($params['inspection_problem'] as $v){ + if(!empty($v['id'])){ + SupervisionInspectionProblem::where('id',$v['id'])->update([ + 'inspection_id' => $params['id'], + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + ]); + }else{ + SupervisionInspectionProblem::create([ + 'inspection_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/26 17:18 + */ + public static function delete(array $params): bool + { + return SupervisionInspection::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--巡视登记详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public static function detail($params): array + { + $data = SupervisionInspection::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['inspection_type_text'] = $data->inspection_type_text; + $data['is_important_text'] = $data->is_important_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionInspectionProblemLogic.php b/app/adminapi/logic/supervision_work/SupervisionInspectionProblemLogic.php new file mode 100644 index 000000000..537f4868a --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionInspectionProblemLogic.php @@ -0,0 +1,112 @@ + $params['inspection_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/26 17:18 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionInspectionProblem::where('id', $params['id'])->update([ + 'inspection_id' => $params['inspection_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/26 17:18 + */ + public static function delete(array $params): bool + { + return SupervisionInspectionProblem::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--巡视问题详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public static function detail($params): array + { + $data = SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']); + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionInspectionResultLogic.php b/app/adminapi/logic/supervision_work/SupervisionInspectionResultLogic.php new file mode 100644 index 000000000..5618df4d3 --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionInspectionResultLogic.php @@ -0,0 +1,116 @@ + $params['inspection_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 09:23 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionInspectionResult::where('id', $params['id'])->update([ + 'inspection_id' => $params['inspection_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 09:23 + */ + public static function delete(array $params): bool + { + return SupervisionInspectionResult::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--巡视结果详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public static function detail($params): array + { + $data = SupervisionInspectionResult::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/SupervisionCheckItemDetailValidate.php b/app/adminapi/validate/supervision_work/SupervisionCheckItemDetailValidate.php new file mode 100644 index 000000000..32318a95b --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionCheckItemDetailValidate.php @@ -0,0 +1,120 @@ + 'require|checkData', + 'node_id' => 'require|checkNode', + 'check_type' => 'require', + 'check_content' => 'require', + 'must_check' => 'require|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'node_id' => '节点id', + 'check_type' => '检查类别', + 'check_content' => '检查内容', + 'must_check' => '是否必检', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionCheckItemDetailValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return SupervisionCheckItemDetailValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return SupervisionCheckItemDetailValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionCheckItemDetailValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionCheckItemDetail::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkNode($value): bool|string + { + $data = SupervisionCheckItem::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '检查项节点信息不存在'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionCheckItemValidate.php b/app/adminapi/validate/supervision_work/SupervisionCheckItemValidate.php new file mode 100644 index 000000000..f09392c3c --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionCheckItemValidate.php @@ -0,0 +1,172 @@ + 'require|checkData', + 'project_id' => 'require|checkProject', + 'pid' => 'integer|checkPid', + 'node_name' => 'require', + 'node_type' => 'require|checkNodeType', + 'check_item_detail' => 'checkDetail', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'project_id' => '项目id', + 'node_name' => '节点名称', + 'node_type' => '节点类型', + 'node_code' => '节点编号', + 'pid' => '父节点id', + 'inspection_basis' => '检查依据', + 'reference_law' => '参考法规', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionCheckItemValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return SupervisionCheckItemValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return SupervisionCheckItemValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionCheckItemValidate + * @author likeadmin + * @date 2024/02/26 15:34 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionCheckItem::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 checkPid($value): bool|string + { + if(empty($value)) return true; + $data = SupervisionCheckItem::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '父级节点信息不存在'; + } + return true; + } + + public function checkNodeType($value): bool|string + { + $dict = DictData::where('type_value','check_item_node_type')->column('value'); + if(!in_array($value,$dict)){ + return '节点类型数据值无效'; + } + return true; + } + + public function checkDetail($value): bool|string + { + if(empty($value) || $value == '') return true; + if(!is_array($value)) return '检查项数据格式错误'; + foreach($value as $k=>$v){ + if(isset($v['id']) && !empty($v['id'])){ + $data = SupervisionCheckItemDetail::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(empty($v['must_check'])){ + return '第'.($k+1).'行是否必检为空'; + } + if(!in_array($v['must_check'],[0,1])){ + return '第'.($k+1).'行是否必检项数据值错误'; + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionInspectionProblemValidate.php b/app/adminapi/validate/supervision_work/SupervisionInspectionProblemValidate.php new file mode 100644 index 000000000..8148cee14 --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionInspectionProblemValidate.php @@ -0,0 +1,122 @@ + 'require|checkData', + 'inspection_id' => 'require|checkInspection', + 'problem_cate' => 'require', + 'problem_description' => 'require', + 'problem_name' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'inspection_id' => '巡视id', + 'problem_cate' => '问题分类', + 'problem_description' => '问题说明', + 'problem_name' => '问题名称', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionInspectionProblemValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneAdd() + { + return $this->only(['inspection_id','problem_cate','problem_description','problem_name']); + } + + + /** + * @notes 编辑场景 + * @return SupervisionInspectionProblemValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneEdit() + { + return $this->only(['id','inspection_id','problem_cate','problem_description','problem_name']); + } + + + /** + * @notes 删除场景 + * @return SupervisionInspectionProblemValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionInspectionProblemValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionInspectionProblem::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkInspection($value): bool|string + { + $data = SupervisionInspection::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '巡视信息不存在'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionInspectionResultValidate.php b/app/adminapi/validate/supervision_work/SupervisionInspectionResultValidate.php new file mode 100644 index 000000000..a969e195c --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionInspectionResultValidate.php @@ -0,0 +1,124 @@ + 'require|checkData', + 'inspection_id' => 'require|checkInspection', + 'check_type' => 'require', + 'check_content' => 'require', + 'must_check' => 'require|in:0,1', + 'check_result' => 'require|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'inspection_id' => '巡视id', + 'check_type' => '检查类别', + 'check_content' => '检查内容', + 'must_check' => '是否必检', + 'check_result' => '检查结果', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionInspectionResultValidate + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function sceneAdd() + { + return $this->only(['inspection_id','check_type','check_content','must_check','check_result']); + } + + + /** + * @notes 编辑场景 + * @return SupervisionInspectionResultValidate + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function sceneEdit() + { + return $this->only(['id','inspection_id','check_type','check_content','must_check','check_result']); + } + + + /** + * @notes 删除场景 + * @return SupervisionInspectionResultValidate + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionInspectionResultValidate + * @author likeadmin + * @date 2024/02/27 09:23 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionInspectionResult::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkInspection($value): bool|string + { + $data = SupervisionInspection::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '巡视信息不存在'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionInspectionValidate.php b/app/adminapi/validate/supervision_work/SupervisionInspectionValidate.php new file mode 100644 index 000000000..a868e71d6 --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionInspectionValidate.php @@ -0,0 +1,234 @@ + 'require|checkData', + 'project_id' => 'require|checkProject', + 'inspection_type' => 'require|checkInspectionType', + 'check_item_id' => 'require|checkCheckItem', + 'workers' => 'integer', + 'managers' => 'integer', + 'start_time' => 'require|dateFormat:Y-m-d H:i:s', + 'end_time' => 'require|dateFormat:Y-m-d H:i:s', + 'inspection_user' => 'require', + 'company_id' => 'checkCompany', + 'inspection_content' => 'require', + 'is_important' => 'in:0,1', + 'check_item_detail_ids' => 'checkCheckItemDetail', + 'annex' => 'checkAnnex', + 'inspection_result' => 'checkInspectionResult', + 'inspection_problem' => 'checkInspectionProblem' + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'project_id' => '项目id', + 'inspection_code' => '编号', + 'inspection_type' => '巡视类型', + 'check_item_id' => '单位工程', + 'inspection_position' => '巡视部位', + 'workers' => '施工人数', + 'managers' => '管理人数', + 'start_time' => '巡视开始时间', + 'end_time' => '巡视结束时间', + 'inspection_user' => '巡视人员', + 'inspection_content' => '巡视内容', + 'is_important' => '设置重点关注事项', + 'follow_user' => '关注人', + 'check_item_detail_ids' => '检查表单选择', + 'create_user' => '创建人', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionInspectionValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return SupervisionInspectionValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return SupervisionInspectionValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionInspectionValidate + * @author likeadmin + * @date 2024/02/26 17:18 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionInspection::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 checkInspectionType($value): bool|string + { + $dict = DictData::where('type_value','inspection_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 checkInspectionResult($value): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '巡视结果数据格式错误'; + foreach($value as $k=>$v){ + if(!empty($v['id'])){ + $data = SupervisionInspectionResult::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 checkInspectionProblem($value): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '巡视问题数据格式错误'; + foreach($value as $k=>$v){ + if(!empty($v['id'])){ + $data = SupervisionInspectionProblem::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/SupervisionCheckItem.php b/app/common/model/supervision_work/SupervisionCheckItem.php new file mode 100644 index 000000000..384c48248 --- /dev/null +++ b/app/common/model/supervision_work/SupervisionCheckItem.php @@ -0,0 +1,38 @@ +column('name','value'); + return !empty($data['node_type']) ? $dict[$data['node_type']] : ''; + } +} \ No newline at end of file diff --git a/app/common/model/supervision_work/SupervisionCheckItemDetail.php b/app/common/model/supervision_work/SupervisionCheckItemDetail.php new file mode 100644 index 000000000..86eb4685f --- /dev/null +++ b/app/common/model/supervision_work/SupervisionCheckItemDetail.php @@ -0,0 +1,38 @@ +'否', 1=>'是']; + return $arr[$data['must_check']]; + } +} \ No newline at end of file diff --git a/app/common/model/supervision_work/SupervisionInspection.php b/app/common/model/supervision_work/SupervisionInspection.php new file mode 100644 index 000000000..3a01c20c0 --- /dev/null +++ b/app/common/model/supervision_work/SupervisionInspection.php @@ -0,0 +1,63 @@ +column('name','value'); + return !empty($data['inspection_type']) ? $dict[$data['inspection_type']] : ''; + } + + public function getIsImportantTextAttr($value,$data){ + $arr = [0=>'有效', 1=>'无效']; + return $arr[$data['is_important']]; + } + + 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/SupervisionInspectionProblem.php b/app/common/model/supervision_work/SupervisionInspectionProblem.php new file mode 100644 index 000000000..91eadd1ec --- /dev/null +++ b/app/common/model/supervision_work/SupervisionInspectionProblem.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