diff --git a/app/adminapi/controller/supervision_work/SupervisionDeviceEntryController.php b/app/adminapi/controller/supervision_work/SupervisionDeviceEntryController.php new file mode 100644 index 000000000..ac13af693 --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionDeviceEntryController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionDeviceEntryLists()); + } + + + /** + * @notes 添加工程监理--设备进场 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function add() + { + $params = (new SupervisionDeviceEntryValidate())->post()->goCheck('add'); + $result = SupervisionDeviceEntryLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionDeviceEntryLogic::getError()); + } + + + /** + * @notes 编辑工程监理--设备进场 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function edit() + { + $params = (new SupervisionDeviceEntryValidate())->post()->goCheck('edit'); + $result = SupervisionDeviceEntryLogic::edit($params,$this->adminId); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionDeviceEntryLogic::getError()); + } + + + /** + * @notes 删除工程监理--设备进场 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function delete() + { + $params = (new SupervisionDeviceEntryValidate())->post()->goCheck('delete'); + SupervisionDeviceEntryLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--设备进场详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function detail() + { + $params = (new SupervisionDeviceEntryValidate())->goCheck('detail'); + $result = SupervisionDeviceEntryLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/controller/supervision_work/SupervisionDeviceEntryDetailController.php b/app/adminapi/controller/supervision_work/SupervisionDeviceEntryDetailController.php new file mode 100644 index 000000000..3f5d4120c --- /dev/null +++ b/app/adminapi/controller/supervision_work/SupervisionDeviceEntryDetailController.php @@ -0,0 +1,108 @@ +dataLists(new SupervisionDeviceEntryDetailLists()); + } + + + /** + * @notes 添加工程监理--设备进场明细 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function add() + { + $params = (new SupervisionDeviceEntryDetailValidate())->post()->goCheck('add'); + $result = SupervisionDeviceEntryDetailLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(SupervisionDeviceEntryDetailLogic::getError()); + } + + + /** + * @notes 编辑工程监理--设备进场明细 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function edit() + { + $params = (new SupervisionDeviceEntryDetailValidate())->post()->goCheck('edit'); + $result = SupervisionDeviceEntryDetailLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(SupervisionDeviceEntryDetailLogic::getError()); + } + + + /** + * @notes 删除工程监理--设备进场明细 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function delete() + { + $params = (new SupervisionDeviceEntryDetailValidate())->post()->goCheck('delete'); + SupervisionDeviceEntryDetailLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工程监理--设备进场明细详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function detail() + { + $params = (new SupervisionDeviceEntryDetailValidate())->goCheck('detail'); + $result = SupervisionDeviceEntryDetailLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionDeviceEntryDetailLists.php b/app/adminapi/lists/supervision_work/SupervisionDeviceEntryDetailLists.php new file mode 100644 index 000000000..5838e4293 --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionDeviceEntryDetailLists.php @@ -0,0 +1,81 @@ + ['device_entry_id', 'contract_brand', 'documentation', 'verify'], + '%like%' => ['name', 'brand', 'model'], + ]; + } + + + /** + * @notes 获取工程监理--设备进场明细列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function lists(): array + { + return SupervisionDeviceEntryDetail::withoutField('create_time,update_time,delete_time')->where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['contract_brand_text'] = $data->contract_brand_text; + $data['documentation_text'] = $data->documentation_text; + $data['verify_text'] = $data->verify_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工程监理--设备进场明细数量 + * @return int + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function count(): int + { + return SupervisionDeviceEntryDetail::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/supervision_work/SupervisionDeviceEntryLists.php b/app/adminapi/lists/supervision_work/SupervisionDeviceEntryLists.php new file mode 100644 index 000000000..51bce38bd --- /dev/null +++ b/app/adminapi/lists/supervision_work/SupervisionDeviceEntryLists.php @@ -0,0 +1,88 @@ + ['project_id', 'enter_result'], + '%like%' => ['code'], + ]; + } + + + /** + * @notes 获取工程监理--设备进场列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function lists(): array + { + return SupervisionDeviceEntry::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(); + $company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty(); + $create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty(); + $data['project_name'] = $project['project_name']; + $data['company_name'] = $company['unit_name']; + $data['create_user_name'] = $create_user['name']; + $data['enter_result_text'] = $data->enter_result_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工程监理--设备进场数量 + * @return int + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function count(): int + { + return SupervisionDeviceEntry::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionDeviceEntryDetailLogic.php b/app/adminapi/logic/supervision_work/SupervisionDeviceEntryDetailLogic.php new file mode 100644 index 000000000..cb973aaf9 --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionDeviceEntryDetailLogic.php @@ -0,0 +1,125 @@ + $params['device_entry_id'], + 'name' => $params['name'], + 'brand' => $params['brand'], + 'model' => $params['model'], + 'unit' => $params['unit'], + 'contract_brand' => $params['contract_brand'], + 'entry_number' => $params['entry_number'], + 'documentation' => $params['documentation'], + 'verify' => $params['verify'] + ]); + 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/28 16:12 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + SupervisionDeviceEntryDetail::where('id', $params['id'])->update([ + 'device_entry_id' => $params['device_entry_id'], + 'name' => $params['name'], + 'brand' => $params['brand'], + 'model' => $params['model'], + 'unit' => $params['unit'], + 'contract_brand' => $params['contract_brand'], + 'entry_number' => $params['entry_number'], + 'documentation' => $params['documentation'], + 'verify' => $params['verify'], + '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/28 16:12 + */ + public static function delete(array $params): bool + { + return SupervisionDeviceEntryDetail::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--设备进场明细详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public static function detail($params): array + { + $data = SupervisionDeviceEntryDetail::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']); + $data['contract_brand_text'] = $data->contract_brand_text; + $data['documentation_text'] = $data->documentation_text; + $data['verify_text'] = $data->verify_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/supervision_work/SupervisionDeviceEntryLogic.php b/app/adminapi/logic/supervision_work/SupervisionDeviceEntryLogic.php new file mode 100644 index 000000000..5ebef6632 --- /dev/null +++ b/app/adminapi/logic/supervision_work/SupervisionDeviceEntryLogic.php @@ -0,0 +1,220 @@ + $params['project_id'], + 'code' => data_unique_code('SBJC'), + 'enter_time' => !empty($params['enter_time']) ? strtotime($params['enter_time']) : 0, + 'company_id' => $params['company_id'], + 'enter_result' => $params['enter_result'], + 'co_participant' => $params['co_participant'], + 'remark' => $params['remark'], + 'create_user' => $admin_id + ]); + if(!empty($params['entry_detail'])){ + foreach($params['entry_detail'] as $v){ + SupervisionDeviceEntryDetail::create([ + 'device_entry_id' => $res->id, + 'name' => $v['name'], + 'brand' => $v['brand'], + 'model' => $v['model'], + 'unit' => $v['unit'], + 'contract_brand' => $v['contract_brand'], + 'entry_number' => $v['entry_number'], + 'documentation' => $v['documentation'], + 'verify' => $v['verify'] + ]); + } + } + if(!empty($params['entry_problem'])){ + foreach($params['entry_problem'] as $v){ + SupervisionProblem::create([ + 'data_id' => $res->id, + 'data_type' => 4, + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + 'create_user' => $admin_id + ]); + } + } + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑工程监理--设备进场 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public static function edit(array $params,$admin_id): bool + { + Db::startTrans(); + try { + SupervisionDeviceEntry::where('id', $params['id'])->update([ + 'project_id' => $params['project_id'], + 'enter_time' => !empty($params['enter_time']) ? strtotime($params['enter_time']) : 0, + 'company_id' => $params['company_id'], + 'enter_result' => $params['enter_result'], + 'co_participant' => $params['co_participant'], + 'remark' => $params['remark'], + 'update_time' => time() + ]); + if(!empty($params['entry_detail'])){ + foreach($params['entry_detail'] as $v){ + if(!empty($v['id'])){ + SupervisionDeviceEntryDetail::where('id',$v['id'])->update([ + 'device_entry_id' => $params['id'], + 'name' => $v['name'], + 'brand' => $v['brand'], + 'model' => $v['model'], + 'unit' => $v['unit'], + 'contract_brand' => $v['contract_brand'], + 'entry_number' => $v['entry_number'], + 'documentation' => $v['documentation'], + 'verify' => $v['verify'], + 'update_time' => time() + ]); + }else{ + SupervisionDeviceEntryDetail::create([ + 'device_entry_id' => $params['id'], + 'name' => $v['name'], + 'brand' => $v['brand'], + 'model' => $v['model'], + 'unit' => $v['unit'], + 'contract_brand' => $v['contract_brand'], + 'entry_number' => $v['entry_number'], + 'documentation' => $v['documentation'], + 'verify' => $v['verify'] + ]); + } + } + } + if(!empty($params['entry_problem'])){ + foreach($params['entry_problem'] as $v){ + if(!empty($v['id'])){ + SupervisionProblem::where('id',$v['id'])->update([ + 'data_id' => $params['id'], + 'data_type' => 4, + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + 'update_time' => time() + ]); + }else{ + SupervisionProblem::create([ + 'data_id' => $params['id'], + 'data_type' => 4, + 'problem_cate' => $v['problem_cate'], + 'problem_description' => $v['problem_description'], + 'problem_name' => $v['problem_name'], + 'create_user' => $admin_id + ]); + } + } + } + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除工程监理--设备进场 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public static function delete(array $params): bool + { + $entry_detail = SupervisionDeviceEntryDetail::where('device_entry_id',$params['id'])->findOrEmpty(); + if(!$entry_detail->isEmpty()){ + self::setError('该内容下存在设备信息数据,请先删除设备信息数据'); + return false; + } + $entry_problem = SupervisionProblem::where('data_id',$params['id'])->where('data_type',4)->findOrEmpty(); + if(!$entry_problem->isEmpty()){ + self::setError('该内容下存在设备问题数据,请先删除设备问题数据'); + return false; + } + return SupervisionDeviceEntry::destroy($params['id']); + } + + + /** + * @notes 获取工程监理--设备进场详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public static function detail($params): array + { + $data = SupervisionDeviceEntry::withoutField('update_time,delete_time')->findOrEmpty($params['id']); + $project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty(); + $company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty(); + $create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty(); + $data['project_name'] = $project['project_name']; + $data['company_name'] = $company['unit_name']; + $data['create_user_name'] = $create_user['name']; + $data['enter_result_text'] = $data->enter_result_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionDeviceEntryDetailValidate.php b/app/adminapi/validate/supervision_work/SupervisionDeviceEntryDetailValidate.php new file mode 100644 index 000000000..7e763bbaf --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionDeviceEntryDetailValidate.php @@ -0,0 +1,132 @@ + 'require|checkData', + 'device_entry_id' => 'require|checkDeviceEntry', + 'name' => 'require', + 'brand' => 'require', + 'model' => 'require', + 'unit' => 'require', + 'contract_brand' => 'require|in:0,1', + 'entry_number' => 'require|float', + 'documentation' => 'require|in:0,1', + 'verify' => 'require|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'device_entry_id' => '设备进场id', + 'name' => '设备名称', + 'brand' => '设备品牌', + 'model' => '设备型号', + 'unit' => '计数单位', + 'contract_brand' => '合同约定品牌', + 'entry_number' => '进场数量', + 'documentation' => '证明文件是否齐全', + 'verify' => '核对是否一致', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionDeviceEntryDetailValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneAdd() + { + return $this->only(['device_entry_id','name','brand','model','unit','contract_brand','entry_number','documentation','verify']); + } + + + /** + * @notes 编辑场景 + * @return SupervisionDeviceEntryDetailValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneEdit() + { + return $this->only(['id','device_entry_id','name','brand','model','unit','contract_brand','entry_number','documentation','verify']); + } + + + /** + * @notes 删除场景 + * @return SupervisionDeviceEntryDetailValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionDeviceEntryDetailValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionDeviceEntryDetail::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '数据不存在'; + } + return true; + } + + public function checkDeviceEntry($value): bool|string + { + $data = SupervisionDeviceEntry::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '设备进场信息不存在'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/supervision_work/SupervisionDeviceEntryValidate.php b/app/adminapi/validate/supervision_work/SupervisionDeviceEntryValidate.php new file mode 100644 index 000000000..8c0e8fd37 --- /dev/null +++ b/app/adminapi/validate/supervision_work/SupervisionDeviceEntryValidate.php @@ -0,0 +1,201 @@ + 'require|checkData', + 'project_id' => 'require|checkProject', + 'enter_time' => 'require|dateFormat:Y-m-d H:i:s', + 'company_id' => 'checkCompany', + 'enter_result' => 'require|in:0,1', + 'entry_detail' => 'checkEntryDetail', + 'entry_problem' => 'checkEntryProblem' + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'project_id' => '项目id', + 'code' => '编号', + 'enter_time' => '进场时间', + 'company_id' => '施工单位', + 'enter_result' => '进场结果', + 'co_participant' => '共同参与人', + 'remark' => '备注', + 'create_user' => '操作人', + ]; + + + /** + * @notes 添加场景 + * @return SupervisionDeviceEntryValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return SupervisionDeviceEntryValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return SupervisionDeviceEntryValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return SupervisionDeviceEntryValidate + * @author likeadmin + * @date 2024/02/28 16:12 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = SupervisionDeviceEntry::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 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 checkEntryDetail($value): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '设备信息数据格式错误'; + foreach($value as $k=>$v){ + if(!empty($v['id'])){ + $data = SupervisionDeviceEntryDetail::where('id',$v['id'])->findOrEmpty(); + if($data->isEmpty()){ + return '设备信息列表第'.($k+1).'行数据不存在'; + } + } + if(empty($v['name'])) return '设备信息列表第'.($k+1).'行设备名称为空'; + if(empty($v['brand'])) return '设备信息列表第'.($k+1).'行设备品牌为空'; + if(empty($v['model'])) return '设备信息列表第'.($k+1).'行设备型号为空'; + if(empty($v['unit'])) return '设备信息列表第'.($k+1).'行计数单位为空'; + if(!isset($v['contract_brand']) || $v['contract_brand'] == ''){ + return '设备信息列表第'.($k+1).'行是否合同约定品牌为空'; + }else{ + if(!in_array($v['contract_brand'],[0,1])) return '设备信息列表第'.($k+1).'行是否合同约定品牌选项数据值无效'; + } + if(empty($v['entry_number'])){ + return '设备信息列表第'.($k+1).'行进场数量为空'; + }else{ + if(!is_numeric($v['entry_number'])) return '设备信息列表第'.($k+1).'行进场数量必须是数字'; + } + if(!isset($v['documentation']) || $v['documentation'] == ''){ + return '设备信息列表第'.($k+1).'行证明文件是否齐全为空'; + }else{ + if(!in_array($v['documentation'],[0,1])) return '设备信息列表第'.($k+1).'行证明文件是否齐全选项数据值无效'; + } + if(!isset($v['verify']) || $v['verify'] == ''){ + return '设备信息列表第'.($k+1).'行核对是否一致选项为空'; + }else{ + if(!in_array($v['verify'],[0,1])) return '设备信息列表第'.($k+1).'行核对是否一致项数据值无效'; + } + } + return true; + } + + public function checkEntryProblem($value): bool|string + { + if(!isset($value) || $value == '') return true; + if(!is_array($value)) return '设备问题数据格式错误'; + foreach($value as $k=>$v){ + if(!empty($v['id'])){ + $data = SupervisionProblem::where('id',$v['id'])->findOrEmpty(); + if($data->isEmpty()){ + return '设备问题列表第'.($k+1).'行数据不存在'; + } + } + if(empty($v['problem_cate'])){ + return '设备问题列表第'.($k+1).'行问题分类为空'; + }else{ + $dict = DictData::where('type_value','problem_cate')->column('value'); + if(!in_array($v['problem_cate'],$dict)) 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/SupervisionDeviceEntry.php b/app/common/model/supervision_work/SupervisionDeviceEntry.php new file mode 100644 index 000000000..14d4ea59d --- /dev/null +++ b/app/common/model/supervision_work/SupervisionDeviceEntry.php @@ -0,0 +1,43 @@ +'进场', 1=>'退场']; + return $arr[$data['enter_result']]; + } +} \ No newline at end of file diff --git a/app/common/model/supervision_work/SupervisionDeviceEntryDetail.php b/app/common/model/supervision_work/SupervisionDeviceEntryDetail.php new file mode 100644 index 000000000..4b676e77b --- /dev/null +++ b/app/common/model/supervision_work/SupervisionDeviceEntryDetail.php @@ -0,0 +1,50 @@ +'否', 1=>'是']; + return $arr[$data['contract_brand']]; + } + + public function getDocumentationTextAttr($value,$data): string + { + $arr = [0=>'否', 1=>'是']; + return $arr[$data['documentation']]; + } + + public function getVerifyTextAttr($value,$data): string + { + $arr = [0=>'否', 1=>'是']; + return $arr[$data['verify']]; + } +} \ No newline at end of file