diff --git a/app/adminapi/controller/project/ProjectMaterialBudgetController.php b/app/adminapi/controller/project/ProjectMaterialBudgetController.php new file mode 100644 index 000000000..c032ffee7 --- /dev/null +++ b/app/adminapi/controller/project/ProjectMaterialBudgetController.php @@ -0,0 +1,108 @@ +dataLists(new ProjectMaterialBudgetLists()); + } + + + /** + * @notes 添加材料预算 + * @return \think\response\Json + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function add() + { + $params = (new ProjectMaterialBudgetValidate())->post()->goCheck('add'); + $result = ProjectMaterialBudgetLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProjectMaterialBudgetLogic::getError()); + } + + + /** + * @notes 编辑材料预算 + * @return \think\response\Json + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function edit() + { + $params = (new ProjectMaterialBudgetValidate())->post()->goCheck('edit'); + $result = ProjectMaterialBudgetLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProjectMaterialBudgetLogic::getError()); + } + + + /** + * @notes 删除材料预算 + * @return \think\response\Json + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function delete() + { + $params = (new ProjectMaterialBudgetValidate())->post()->goCheck('delete'); + ProjectMaterialBudgetLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取材料预算详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function detail() + { + $params = (new ProjectMaterialBudgetValidate())->goCheck('detail'); + $result = ProjectMaterialBudgetLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/project/ProjectMaterialBudgetLists.php b/app/adminapi/lists/project/ProjectMaterialBudgetLists.php new file mode 100644 index 000000000..0408f6beb --- /dev/null +++ b/app/adminapi/lists/project/ProjectMaterialBudgetLists.php @@ -0,0 +1,77 @@ + ['project_id', 'material_id', 'budget_type'], + ]; + } + + + /** + * @notes 获取材料预算列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function lists(): array + { + return ProjectMaterialBudget::where($this->searchWhere) + ->field(['id', 'project_id', 'material_id', 'budget_type', 'num', 'price', 'amount', 'remark']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取材料预算数量 + * @return int + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function count(): int + { + return ProjectMaterialBudget::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/project/ProjectMaterialBudgetLogic.php b/app/adminapi/logic/project/ProjectMaterialBudgetLogic.php new file mode 100644 index 000000000..ffffb82f5 --- /dev/null +++ b/app/adminapi/logic/project/ProjectMaterialBudgetLogic.php @@ -0,0 +1,113 @@ + $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'material_budget_code' => data_unique_code('项目材料预算'), + 'remark' => $params['remark'] ?? '', + 'annex' => !empty($params['annex']) ? $params['annex'] : null, + ]); + 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/01/08 16:30 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProjectMaterialBudget::where('id', $params['id'])->update([ + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'project_id' => $params['project_id'], + 'remark' => $params['remark'] ?? '', + 'annex' => !empty($params['annex']) ? $params['annex'] : null, + ]); + 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/01/08 16:30 + */ + public static function delete(array $params): bool + { + return ProjectMaterialBudget::destroy($params['id']); + } + + + /** + * @notes 获取材料预算详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public static function detail($params): array + { + return ProjectMaterialBudget::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/project/ProjectMaterialBudgetValidate.php b/app/adminapi/validate/project/ProjectMaterialBudgetValidate.php new file mode 100644 index 000000000..f2759ebaf --- /dev/null +++ b/app/adminapi/validate/project/ProjectMaterialBudgetValidate.php @@ -0,0 +1,175 @@ + 'require', + 'org_id' => 'require|checkOrg', + 'dept_id' => 'require|checkDept', + 'project_id' => 'require|checkProject', + 'annex' => 'checkAnnex', + 'material_budget_detail' => 'require|checkMaterialBudgetDetail' + ]; + + protected $message = [ + 'id.require' => '缺少必要参数', + 'project_id.require' => '请选择项目', + 'material_budget_detail.require' => '请填写材料预算清单' + ]; + + + /** + * @notes 添加场景 + * @return ProjectMaterialBudgetValidate + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return ProjectMaterialBudgetValidate + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return ProjectMaterialBudgetValidate + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProjectMaterialBudgetValidate + * @author likeadmin + * @date 2024/01/08 16:30 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkOrg($value): bool|string + { + $org = Orgs::where('id',$value)->findOrEmpty(); + if($org->isEmpty()){ + return '组织不存在'; + } + return true; + } + + public function checkDept($value,$rule,$data): bool|string + { + $dept = Dept::where('id',$value)->findOrEmpty(); + if($dept->isEmpty()){ + return '部门不存在'; + } + if($dept['org_id'] != $data['org_id']){ + return '部门无效'; + } + return true; + } + + public function checkProject($value): bool|string + { + $project = Project::where('id',$value)->findOrEmpty(); + if($project->isEmpty()){ + return '项目信息不存在'; + } + if($project['is_budget'] != 1){ + return '该项目没有编制总预算,不能添加材料预算'; + } + return true; + } + + public function checkAnnex($value): bool|string + { + if(!empty($value) && $value != ''){ + $annex = json_decode($value,true); + if(empty($annex) || !is_array($annex)){ + return '附件格式错误'; + } + } + return true; + } + + + public function checkMaterialBudgetDetail($value): bool|string + { + $detail = json_decode($value,true); + if(empty($detail) || !is_array($detail)){ + return '材料预算清单数据格式错误'; + } + foreach($detail as $v) { + if(empty($v['material_id'])){ + return '请选择材料'; + }else{ + $product = Material::where('id',$v['material_id'])->findOrEmpty(); + if($product->isEmpty()){ + return '材料信息不存在'; + } + } + if(empty($v['num'])){ + return '数量不能为空'; + }else{ + if(!is_numeric($v['num']) || $v['num'] < 0){ + return '数量必须是大于0的数字'; + } + } + if(empty($v['price'])){ + return '单价不能为空'; + }else{ + if(!is_numeric($v['price']) || $v['price'] < 0){ + return '单价必须是大于0的数字'; + } + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/common/model/project/ProjectMaterialBudget.php b/app/common/model/project/ProjectMaterialBudget.php new file mode 100644 index 000000000..aadd83d36 --- /dev/null +++ b/app/common/model/project/ProjectMaterialBudget.php @@ -0,0 +1,37 @@ +