From 80b734a88bc4121b3b1f5ea23c3dba5415aeb12d Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Thu, 27 Feb 2025 09:55:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0oa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/model/works/OaMessage.php | 34 + app/common/model/works/bgsp/OaFlow.php | 44 + app/common/model/works/bgsp/OaFlowType.php | 38 + app/common/model/works/rcbg/OaPlan.php | 59 ++ app/common/model/works/rcbg/OaSchedule.php | 54 ++ app/common/model/works/rcbg/OaWork.php | 38 + app/common/model/works/rcbg/OaWorkComment.php | 34 + app/common/model/works/rcbg/OaWorkRecord.php | 34 + app/common/model/works/rlzy/OaAdmin.php | 50 ++ .../model/works/rlzy/OaDepartmentChange.php | 60 ++ .../model/works/rlzy/OaPersonalQuit.php | 42 + app/common/model/works/xzgl/OaCarCate.php | 38 + app/common/model/works/xzgl/OaMeetingCate.php | 38 + app/common/model/works/xzgl/OaSealCate.php | 38 + app/oa/controller/BaseAdminController.php | 22 + app/oa/controller/IndexController.php | 13 + app/oa/controller/UploadController.php | 42 + .../controller/works/OaMessageController.php | 107 +++ .../works/bgsp/OaApproveController.php | 638 +++++++++++++++ .../works/bgsp/OaFlowController.php | 108 +++ .../works/bgsp/OaFlowTypeController.php | 116 +++ .../works/finance/ExpenseController.php | 738 +++++++++++++++++ .../works/finance/IncomeController.php | 148 ++++ .../works/finance/InvoiceController.php | 750 ++++++++++++++++++ .../works/rcbg/OaPlanController.php | 115 +++ .../works/rcbg/OaScheduleController.php | 115 +++ .../works/rcbg/OaWorkCommentController.php | 108 +++ .../works/rcbg/OaWorkController.php | 111 +++ .../works/rcbg/OaWorkRecordController.php | 108 +++ .../works/rlzy/OaAdminController.php | 111 +++ .../rlzy/OaDepartmentChangeController.php | 108 +++ .../works/rlzy/OaPersonalQuitController.php | 108 +++ .../works/xzgl/OaCarCateController.php | 108 +++ .../works/xzgl/OaMeetingCateController.php | 108 +++ .../works/xzgl/OaSealCateController.php | 108 +++ app/oa/http/middleware/InitMiddleware.php | 48 ++ app/oa/http/middleware/LoginMiddleware.php | 62 ++ app/oa/lists/BaseAdminDataLists.php | 39 + app/oa/lists/works/OaMessageLists.php | 83 ++ app/oa/lists/works/bgsp/OaFlowLists.php | 97 +++ app/oa/lists/works/bgsp/OaFlowTypeLists.php | 86 ++ app/oa/lists/works/rcbg/OaPlanLists.php | 79 ++ app/oa/lists/works/rcbg/OaScheduleLists.php | 80 ++ .../lists/works/rcbg/OaWorkCommentLists.php | 82 ++ app/oa/lists/works/rcbg/OaWorkLists.php | 81 ++ app/oa/lists/works/rcbg/OaWorkRecordLists.php | 85 ++ app/oa/lists/works/rlzy/OaAdminLists.php | 90 +++ .../works/rlzy/OaDepartmentChangeLists.php | 82 ++ .../lists/works/rlzy/OaPersonalQuitLists.php | 85 ++ app/oa/lists/works/xzgl/OaCarCateLists.php | 80 ++ .../lists/works/xzgl/OaMeetingCateLists.php | 80 ++ app/oa/lists/works/xzgl/OaSealCateLists.php | 80 ++ app/oa/logic/works/OaMessageLogic.php | 121 +++ app/oa/logic/works/bgsp/OaFlowLogic.php | 186 +++++ app/oa/logic/works/bgsp/OaFlowTypeLogic.php | 149 ++++ app/oa/logic/works/rcbg/OaPlanLogic.php | 185 +++++ app/oa/logic/works/rcbg/OaScheduleLogic.php | 139 ++++ .../logic/works/rcbg/OaWorkCommentLogic.php | 109 +++ app/oa/logic/works/rcbg/OaWorkLogic.php | 150 ++++ app/oa/logic/works/rcbg/OaWorkRecordLogic.php | 125 +++ app/oa/logic/works/rlzy/OaAdminLogic.php | 247 ++++++ .../works/rlzy/OaDepartmentChangeLogic.php | 124 +++ .../logic/works/rlzy/OaPersonalQuitLogic.php | 129 +++ app/oa/logic/works/xzgl/OaCarCateLogic.php | 112 +++ .../logic/works/xzgl/OaMeetingCateLogic.php | 110 +++ app/oa/logic/works/xzgl/OaSealCateLogic.php | 110 +++ app/oa/validate/works/OaMessageValidate.php | 104 +++ .../works/bgsp/OaFlowTypeValidate.php | 130 +++ app/oa/validate/works/bgsp/OaFlowValidate.php | 203 +++++ .../works/finance/ExpenseValidate.php | 122 +++ .../works/finance/InvoiceValidate.php | 118 +++ app/oa/validate/works/rcbg/OaPlanValidate.php | 116 +++ .../works/rcbg/OaScheduleValidate.php | 109 +++ .../works/rcbg/OaWorkCommentValidate.php | 98 +++ .../works/rcbg/OaWorkRecordValidate.php | 104 +++ app/oa/validate/works/rcbg/OaWorkValidate.php | 110 +++ .../validate/works/rlzy/OaAdminValidate.php | 178 +++++ .../works/rlzy/OaDepartmentChangeValidate.php | 109 +++ .../works/rlzy/OaPersonalQuitValidate.php | 113 +++ .../validate/works/xzgl/OaCarCateValidate.php | 107 +++ .../works/xzgl/OaMeetingCateValidate.php | 105 +++ .../works/xzgl/OaSealCateValidate.php | 105 +++ 82 files changed, 9737 insertions(+) create mode 100644 app/common/model/works/OaMessage.php create mode 100644 app/common/model/works/bgsp/OaFlow.php create mode 100644 app/common/model/works/bgsp/OaFlowType.php create mode 100644 app/common/model/works/rcbg/OaPlan.php create mode 100644 app/common/model/works/rcbg/OaSchedule.php create mode 100644 app/common/model/works/rcbg/OaWork.php create mode 100644 app/common/model/works/rcbg/OaWorkComment.php create mode 100644 app/common/model/works/rcbg/OaWorkRecord.php create mode 100644 app/common/model/works/rlzy/OaAdmin.php create mode 100644 app/common/model/works/rlzy/OaDepartmentChange.php create mode 100644 app/common/model/works/rlzy/OaPersonalQuit.php create mode 100644 app/common/model/works/xzgl/OaCarCate.php create mode 100644 app/common/model/works/xzgl/OaMeetingCate.php create mode 100644 app/common/model/works/xzgl/OaSealCate.php create mode 100644 app/oa/controller/BaseAdminController.php create mode 100644 app/oa/controller/IndexController.php create mode 100644 app/oa/controller/UploadController.php create mode 100644 app/oa/controller/works/OaMessageController.php create mode 100644 app/oa/controller/works/bgsp/OaApproveController.php create mode 100644 app/oa/controller/works/bgsp/OaFlowController.php create mode 100644 app/oa/controller/works/bgsp/OaFlowTypeController.php create mode 100644 app/oa/controller/works/finance/ExpenseController.php create mode 100644 app/oa/controller/works/finance/IncomeController.php create mode 100644 app/oa/controller/works/finance/InvoiceController.php create mode 100644 app/oa/controller/works/rcbg/OaPlanController.php create mode 100644 app/oa/controller/works/rcbg/OaScheduleController.php create mode 100644 app/oa/controller/works/rcbg/OaWorkCommentController.php create mode 100644 app/oa/controller/works/rcbg/OaWorkController.php create mode 100644 app/oa/controller/works/rcbg/OaWorkRecordController.php create mode 100644 app/oa/controller/works/rlzy/OaAdminController.php create mode 100644 app/oa/controller/works/rlzy/OaDepartmentChangeController.php create mode 100644 app/oa/controller/works/rlzy/OaPersonalQuitController.php create mode 100644 app/oa/controller/works/xzgl/OaCarCateController.php create mode 100644 app/oa/controller/works/xzgl/OaMeetingCateController.php create mode 100644 app/oa/controller/works/xzgl/OaSealCateController.php create mode 100644 app/oa/http/middleware/InitMiddleware.php create mode 100644 app/oa/http/middleware/LoginMiddleware.php create mode 100644 app/oa/lists/BaseAdminDataLists.php create mode 100644 app/oa/lists/works/OaMessageLists.php create mode 100644 app/oa/lists/works/bgsp/OaFlowLists.php create mode 100644 app/oa/lists/works/bgsp/OaFlowTypeLists.php create mode 100644 app/oa/lists/works/rcbg/OaPlanLists.php create mode 100644 app/oa/lists/works/rcbg/OaScheduleLists.php create mode 100644 app/oa/lists/works/rcbg/OaWorkCommentLists.php create mode 100644 app/oa/lists/works/rcbg/OaWorkLists.php create mode 100644 app/oa/lists/works/rcbg/OaWorkRecordLists.php create mode 100644 app/oa/lists/works/rlzy/OaAdminLists.php create mode 100644 app/oa/lists/works/rlzy/OaDepartmentChangeLists.php create mode 100644 app/oa/lists/works/rlzy/OaPersonalQuitLists.php create mode 100644 app/oa/lists/works/xzgl/OaCarCateLists.php create mode 100644 app/oa/lists/works/xzgl/OaMeetingCateLists.php create mode 100644 app/oa/lists/works/xzgl/OaSealCateLists.php create mode 100644 app/oa/logic/works/OaMessageLogic.php create mode 100644 app/oa/logic/works/bgsp/OaFlowLogic.php create mode 100644 app/oa/logic/works/bgsp/OaFlowTypeLogic.php create mode 100644 app/oa/logic/works/rcbg/OaPlanLogic.php create mode 100644 app/oa/logic/works/rcbg/OaScheduleLogic.php create mode 100644 app/oa/logic/works/rcbg/OaWorkCommentLogic.php create mode 100644 app/oa/logic/works/rcbg/OaWorkLogic.php create mode 100644 app/oa/logic/works/rcbg/OaWorkRecordLogic.php create mode 100644 app/oa/logic/works/rlzy/OaAdminLogic.php create mode 100644 app/oa/logic/works/rlzy/OaDepartmentChangeLogic.php create mode 100644 app/oa/logic/works/rlzy/OaPersonalQuitLogic.php create mode 100644 app/oa/logic/works/xzgl/OaCarCateLogic.php create mode 100644 app/oa/logic/works/xzgl/OaMeetingCateLogic.php create mode 100644 app/oa/logic/works/xzgl/OaSealCateLogic.php create mode 100644 app/oa/validate/works/OaMessageValidate.php create mode 100644 app/oa/validate/works/bgsp/OaFlowTypeValidate.php create mode 100644 app/oa/validate/works/bgsp/OaFlowValidate.php create mode 100644 app/oa/validate/works/finance/ExpenseValidate.php create mode 100644 app/oa/validate/works/finance/InvoiceValidate.php create mode 100644 app/oa/validate/works/rcbg/OaPlanValidate.php create mode 100644 app/oa/validate/works/rcbg/OaScheduleValidate.php create mode 100644 app/oa/validate/works/rcbg/OaWorkCommentValidate.php create mode 100644 app/oa/validate/works/rcbg/OaWorkRecordValidate.php create mode 100644 app/oa/validate/works/rcbg/OaWorkValidate.php create mode 100644 app/oa/validate/works/rlzy/OaAdminValidate.php create mode 100644 app/oa/validate/works/rlzy/OaDepartmentChangeValidate.php create mode 100644 app/oa/validate/works/rlzy/OaPersonalQuitValidate.php create mode 100644 app/oa/validate/works/xzgl/OaCarCateValidate.php create mode 100644 app/oa/validate/works/xzgl/OaMeetingCateValidate.php create mode 100644 app/oa/validate/works/xzgl/OaSealCateValidate.php diff --git a/app/common/model/works/OaMessage.php b/app/common/model/works/OaMessage.php new file mode 100644 index 0000000..34461f9 --- /dev/null +++ b/app/common/model/works/OaMessage.php @@ -0,0 +1,34 @@ +column('name','value'); + return !empty($data['type']) ? $dict[$data['type']] : ''; + } + + public function getCheckTypeTextAttr($value,$data): string + { + $arr = [1=>'固定审批流',2=>'自由审批流',3=>'可回退的审批流']; + return !empty($data['check_type']) ? $arr[$data['check_type']] : ''; + } +} \ No newline at end of file diff --git a/app/common/model/works/bgsp/OaFlowType.php b/app/common/model/works/bgsp/OaFlowType.php new file mode 100644 index 0000000..0977605 --- /dev/null +++ b/app/common/model/works/bgsp/OaFlowType.php @@ -0,0 +1,38 @@ +column('name','value'); + return !empty($data['type']) ? $dict[$data['type']] : ''; + } +} \ No newline at end of file diff --git a/app/common/model/works/rcbg/OaPlan.php b/app/common/model/works/rcbg/OaPlan.php new file mode 100644 index 0000000..f890a64 --- /dev/null +++ b/app/common/model/works/rcbg/OaPlan.php @@ -0,0 +1,59 @@ +'无优先级',1=>'不重要',2=>'次要',3=>'重要',4=>'紧急']; + return $arr[$data['type']]; + } + + public function getRemindTypeTextAttr($value,$data): string + { + $arr = [0=>'不提醒',1=>'提前5分钟',2=>'提前15分钟',3=>'提前30分钟',4=>'提前1小时',5=>'提前2小时',6=>'提前1天']; + return $arr[$data['remind_type']]; + } +} \ No newline at end of file diff --git a/app/common/model/works/rcbg/OaSchedule.php b/app/common/model/works/rcbg/OaSchedule.php new file mode 100644 index 0000000..b19314d --- /dev/null +++ b/app/common/model/works/rcbg/OaSchedule.php @@ -0,0 +1,54 @@ +'其他',1=>'方案策划',2=>'撰写文档',3=>'需求调研',4=>'需求沟通',5=>'参加会议',6=>'拜访客户',7=>'接待客户']; + return $arr[$data['cid']]; + } + + public function getLaborTypeTextAttr($value,$data): string + { + $arr = [1=>'案头', 2=>'外勤']; + return !empty($data['labor_type']) ? $arr[$data['labor_type']] : ''; + } + + public function getStartTimeAttr($value): string + { + return !empty($value) ? date('Y-m-d H:i',$value) : ''; + } + + public function getEndTimeAttr($value): string + { + return !empty($value) ? date('Y-m-d H:i',$value) : ''; + } +} \ No newline at end of file diff --git a/app/common/model/works/rcbg/OaWork.php b/app/common/model/works/rcbg/OaWork.php new file mode 100644 index 0000000..c819227 --- /dev/null +++ b/app/common/model/works/rcbg/OaWork.php @@ -0,0 +1,38 @@ +'日报', 2=>'周报', 3=>'月报']; + return !empty($data['type']) ? $arr[$data['type']] : ''; + } +} \ No newline at end of file diff --git a/app/common/model/works/rcbg/OaWorkComment.php b/app/common/model/works/rcbg/OaWorkComment.php new file mode 100644 index 0000000..6fa9d0f --- /dev/null +++ b/app/common/model/works/rcbg/OaWorkComment.php @@ -0,0 +1,34 @@ +'未设置', 1=>'男', 2=>'女']; + return $arr[$data['sex']]; + } + + public function getTypeTextAttr($value,$data): string + { + $arr = [0=>'正式', 1=>'试用', 2=>'实习']; + return $arr[$data['type']]; + } + + public function getStatusTextAttr($value,$data): string + { + $arr = [0=>'禁用', 1=>'正常', 2=>'离职']; + return $arr[$data['status']]; + } +} \ No newline at end of file diff --git a/app/common/model/works/rlzy/OaDepartmentChange.php b/app/common/model/works/rlzy/OaDepartmentChange.php new file mode 100644 index 0000000..0b8018c --- /dev/null +++ b/app/common/model/works/rlzy/OaDepartmentChange.php @@ -0,0 +1,60 @@ +'禁用', 1=>'启用']; + return $arr[$data['status']]; + } + + public function getMoveTimeAttr($value): string + { + return !empty($value) ? date('Y-m-d',$value) : ''; + } + + public function getUserNameAttr($value,$data){ + $user = Admin::field('name')->where('id',$data['uid'])->findOrEmpty(); + return !$user->isEmpty() ? $user['name'] : ''; + } + + public function getFromDeptAttr($value,$data){ + $dept = Dept::field('name')->where('id',$data['from_did'])->findOrEmpty(); + return !$dept->isEmpty() ? $dept['name'] : ''; + } + + public function getToDeptAttr($value,$data){ + $dept = Dept::field('name')->where('id',$data['to_did'])->findOrEmpty(); + return !$dept->isEmpty() ? $dept['name'] : ''; + } +} \ No newline at end of file diff --git a/app/common/model/works/rlzy/OaPersonalQuit.php b/app/common/model/works/rlzy/OaPersonalQuit.php new file mode 100644 index 0000000..fe7c0e7 --- /dev/null +++ b/app/common/model/works/rlzy/OaPersonalQuit.php @@ -0,0 +1,42 @@ +'禁用', 1=>'启用']; + return $arr[$data['status']]; + } +} \ No newline at end of file diff --git a/app/common/model/works/xzgl/OaMeetingCate.php b/app/common/model/works/xzgl/OaMeetingCate.php new file mode 100644 index 0000000..c716f34 --- /dev/null +++ b/app/common/model/works/xzgl/OaMeetingCate.php @@ -0,0 +1,38 @@ +'禁用', 1=>'启用']; + return $arr[$data['status']]; + } +} \ No newline at end of file diff --git a/app/common/model/works/xzgl/OaSealCate.php b/app/common/model/works/xzgl/OaSealCate.php new file mode 100644 index 0000000..965509a --- /dev/null +++ b/app/common/model/works/xzgl/OaSealCate.php @@ -0,0 +1,38 @@ +'禁用', 1=>'启用']; + return $arr[$data['status']]; + } +} \ No newline at end of file diff --git a/app/oa/controller/BaseAdminController.php b/app/oa/controller/BaseAdminController.php new file mode 100644 index 0000000..b79a0c3 --- /dev/null +++ b/app/oa/controller/BaseAdminController.php @@ -0,0 +1,22 @@ +request->adminInfo) && $this->request->adminInfo) { + $this->adminInfo = $this->request->adminInfo; + $this->adminId = $this->request->adminInfo['admin_id']; + } + } +} \ No newline at end of file diff --git a/app/oa/controller/IndexController.php b/app/oa/controller/IndexController.php new file mode 100644 index 0000000..05e012d --- /dev/null +++ b/app/oa/controller/IndexController.php @@ -0,0 +1,13 @@ +data([]); + } + +} \ No newline at end of file diff --git a/app/oa/controller/UploadController.php b/app/oa/controller/UploadController.php new file mode 100644 index 0000000..18edb4f --- /dev/null +++ b/app/oa/controller/UploadController.php @@ -0,0 +1,42 @@ +request->post('cid', 0); + $result = UploadService::image($cid); + return $this->success('上传成功', $result); + } catch (\Exception $e) { + return $this->fail($e->getMessage()); + } + } + + /** + * @notes 上传视频 + * @author 乔峰 + * @date 2021/12/29 16:27 + */ + public function video() + { + try { + $cid = $this->request->post('cid', 0); + $result = UploadService::video($cid); + return $this->success('上传成功', $result); + } catch (Exception $e) { + return $this->fail($e->getMessage()); + } + } +} diff --git a/app/oa/controller/works/OaMessageController.php b/app/oa/controller/works/OaMessageController.php new file mode 100644 index 0000000..daca368 --- /dev/null +++ b/app/oa/controller/works/OaMessageController.php @@ -0,0 +1,107 @@ +dataLists(new OaMessageLists()); + } + + + /** + * @notes 添加系统消息 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/29 14:04 + */ +// public function add() +// { +// $params = (new OaMessageValidate())->post()->goCheck('add'); +// $result = OaMessageLogic::add($params); +// if (true === $result) { +// return $this->success('添加成功', [], 1, 1); +// } +// return $this->fail(OaMessageLogic::getError()); +// } + + + /** + * @notes 编辑系统消息 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/29 14:04 + */ +// public function edit() +// { +// $params = (new OaMessageValidate())->post()->goCheck('edit'); +// $result = OaMessageLogic::edit($params); +// if (true === $result) { +// return $this->success('编辑成功', [], 1, 1); +// } +// return $this->fail(OaMessageLogic::getError()); +// } + + + /** + * @notes 删除系统消息 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function delete() + { + $params = (new OaMessageValidate())->post()->goCheck('delete'); + OaMessageLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取系统消息详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function detail() + { + $params = (new OaMessageValidate())->goCheck('detail'); + $result = OaMessageLogic::detail($params); + return $this->data($result); + } + +} \ No newline at end of file diff --git a/app/oa/controller/works/bgsp/OaApproveController.php b/app/oa/controller/works/bgsp/OaApproveController.php new file mode 100644 index 0000000..c2ad467 --- /dev/null +++ b/app/oa/controller/works/bgsp/OaApproveController.php @@ -0,0 +1,638 @@ +request->get(['type','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + if(empty($params['type']) || !in_array($params['type'],[1,2,3,4,5])){ + return $this->fail("参数错误"); + } + $where = []; + if($params['type'] == 1){ + $where[] = ['check_status','in','0,1,2,3,4']; + } + if($params['type'] == 2){ + $where[] = ['check_status','=',0]; + } + if($params['type'] == 3){ + $where[] = ['check_status','=',2]; + } + if($params['type'] == 4){ + $where[] = ['check_status','=',3]; + } + if($params['type'] == 5){ + $where[] = ['check_status','=',1]; + } + $lists = Db::name('oa_approve')->field('id,type,flow_id,admin_id,check_admin_ids,check_status,create_time')->where('admin_id',$this->adminId)->where($where) + ->page($page_no, $page_size)->order('id desc')->select()->each(function($data){ + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $flow_type = OaFlowType::where('id',$data['type'])->value('title'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['type_name'] = $flow_type ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + return $data; + })->toArray(); + $count = Db::name('oa_approve')->where($where)->where('admin_id',$this->adminId)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function detail(){ + $params = $this->request->get(['id']); + if(empty($params['id'])){ + return $this->fail("参数错误"); + } + $data = Db::name('oa_approve')->where('id',$params['id'])->find(); + $data['extends'] = !empty($data['extends']) ? json_decode($data['extends'],true) : []; + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $copy_users = Admin::where('id','in',$data['copy_uids'])->column('name'); + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['copy_users'] = !empty($copy_users) ? implode(',',$copy_users) : ''; + $data['flow_info'] = OaFlow::where('id',$data['flow_id'])->findOrEmpty(); + $data['record'] = Db::name('oa_flow_record')->field('check_user_id,check_time,status,content')->where('action_id',$params['id'])->where('type',1)->order('id desc')->select()->each(function($data){ + $data['check_time'] = date('Y-m-d H:i:s',$data['check_time']); + $user = Admin::where('id',$data['check_user_id'])->value('name'); + $data['check_user_name'] = $user ?? ''; + $data['status_text'] = match ($data['status']){ + 0=>'提交',1=>'通过',2=>'拒绝',3=>'撤销' + }; + return $data; + })->toArray(); + $step = Db::name('oa_flow_step')->field('id,action_id,flow_uids,flow_type,sort')->where('action_id',$params['id'])->where('type',1)->order('sort asc')->select()->toArray(); + foreach ($step as $key => &$val) { + $user_id_info = Admin::field('id,name')->where('id','in',$val['flow_uids'])->select()->toArray(); + foreach ($user_id_info as $k => &$v) { + $v['check_time'] = 0; + $v['content'] = ''; + $v['status'] = 0; + $check_array = Db::name('oa_flow_record')->where(['check_user_id' => $v['id'],'step_id' => $val['id'],'type'=>1])->order('check_time desc')->select()->toArray(); + if(!empty($check_array)){ + $checked = $check_array[0]; + $v['check_time'] = date('Y-m-d H:i', $checked['check_time']); + $v['content'] = $checked['content']; + $v['status'] = $checked['status']; + } + } + $check_list = Db::name('oa_flow_record') + ->field('f.*,a.name') + ->alias('f') + ->join('admin a', 'a.id = f.check_user_id', 'left') + ->where(['f.step_id' => $val['id']])->where('f.status','>',0)->select()->toArray(); + foreach ($check_list as $kk => &$vv) { + $vv['check_time_str'] = date('Y-m-d H:i', $vv['check_time']); + } + $val['user_id_info'] = $user_id_info; + $val['check_list'] = $check_list; + } + $data['steps'] = $step; + return $this->data($data); + } + + public function add() + { + $param = $this->request->post(['flow_id','check_admin_ids','copy_uids','extends']); + if(empty($param['flow_id'])){ + return $this->fail("请选择审批流程"); + } + $flow = Db::name('oa_flow')->where('id',$param['flow_id'])->find(); + if(empty($flow)){ + return $this->fail("审批流程信息不存在"); + } + if($flow['check_type'] == 2){ + if(empty($param['check_admin_ids'])){ + return $this->fail("请选择审核人"); + } + }else{ + if(empty($flow['flow_list'])){ + return $this->fail("当前审批流程未设置完全"); + } + } + if($flow['type'] == 1){ + if(!empty($param['extends']['KSSJ']['value']) && !empty($param['extends']['JSSJ']['value'])){ + $kssj = $param['extends']['KSSJ']['value']; + $jssj = $param['extends']['JSSJ']['value']; + //SELECT * FROM vx_live_room where info ->> 'name' like '%测试%' + $has = Db::name('oa_approve')->whereRaw("extends->'$.KSSJ.value' = '{$kssj}' and extends->'$.JSSJ.value' = '{$jssj}'")->find(); + if(!empty($has)){ + return $this->fail('当前时间已有请假申请'); + } + } + } + $param['admin_id'] = $this->adminId; + $param['create_time'] = time(); + $param['type'] = $flow['flow_cate']; + $param['extends'] = !empty($param['extends']) ? json_encode($param['extends']) : null; + $param['copy_uids'] = !empty($param['copy_uids']) ? $param['copy_uids'] : $flow['copy_uids']; + if (empty($param['check_admin_ids'])) { + $flow_list = unserialize($flow['flow_list']); + if($flow_list[0]['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$this->adminId)->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $param['check_admin_ids'] = $leader; + } + }else{ + $param['check_admin_ids'] = $flow_list[0]['flow_uids']; + } + $aid = Db::name('oa_approve')->strict(false)->field(true)->insertGetId($param); + foreach ($flow_list as $key => &$value){ + $value['action_id'] = $aid; + $value['sort'] = $key; + $value['create_time'] = time(); + $value['type'] = 1; + } + Db::name('oa_flow_step')->strict(false)->field(true)->insertAll($flow_list); + } + else{ + $aid = Db::name('oa_approve')->strict(false)->field(true)->insertGetId($param); + $flow_step = array( + 'action_id' => $aid, + 'flow_uids' => $param['check_admin_ids'], + 'create_time' => time(), + 'type' => 1 + ); + Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + } + $step_id = Db::name('oa_flow_step')->where('action_id',$aid)->where('type',1)->order('id asc')->find(); + //添加提交申请记录 + $checkData=array( + 'action_id' => $aid, + 'check_user_id' => $this->adminId, + 'content' => '提交申请', + 'check_time' => time(), + 'create_time' => time(), + 'type' => 1, + 'step_id' => $step_id['id'] + ); + $record_id = Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $record_id ? $this->success('ok') : $this->fail('fail'); + } + + public function edit(){ + $param = $this->request->post(['id','flow_id','check_admin_ids','copy_uids','extends']); + if(empty($param['id'])){ + return $this->fail("id参数错误"); + } + $data = Db::name('oa_approve')->where('id',$param['id'])->find(); + if(empty($data)){ + return $this->fail("数据信息不存在"); + } + if(empty($param['flow_id'])){ + return $this->fail("请选择审批流程"); + } + $flow = Db::name('oa_flow')->where('id',$param['flow_id'])->find(); + if(empty($flow)){ + return $this->fail("审批流程信息不存在"); + } + if($flow['check_type'] == 2){ + if(empty($param['check_admin_ids'])){ + return $this->fail("请选择审核人"); + } + }else{ + if(empty($flow['flow_list'])){ + return $this->fail("当前审批流程未设置完全"); + } + } + $param['type'] = $flow['flow_cate']; + $param['extends'] = !empty($param['extends']) ? json_encode($param['extends']) : null; + $param['update_time'] = time(); + $param['check_status'] = 0; + $param['check_step_sort'] = 0; + //删除原来的审核流程和审核记录 + Db::name('oa_flow_step')->where(['action_id'=>$param['id']])->where('type',1)->update(['delete_time'=>time()]); + Db::name('oa_flow_record')->where(['action_id'=>$param['id']])->where('type',1)->update(['delete_time'=>time(),'is_invalid'=>1]); + if (empty($param['check_admin_ids'])) { + $flow_list = unserialize($flow['flow_list']); + if($flow_list[0]['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$this->adminId)->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $param['check_admin_ids'] = $leader; + } + }else{ + $param['check_admin_ids'] = $flow_list[0]['flow_uids']; + } + Db::name('oa_approve')->where('id',$param['id'])->strict(false)->field(true)->update($param); + foreach ($flow_list as $key => &$value){ + $value['action_id'] = $param['id']; + $value['sort'] = $key; + $value['create_time'] = time(); + $value['type'] = 1; + } + Db::name('oa_flow_step')->strict(false)->field(true)->insertAll($flow_list); + } + else{ + Db::name('oa_approve')->where('id',$param['id'])->strict(false)->field(true)->update($param); + $flow_step = array( + 'action_id' => $param['id'], + 'flow_uids' => $param['check_admin_ids'], + 'create_time' => time(), + 'type' => 1, + ); + Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + } + $step_id = Db::name('oa_flow_step')->where('action_id',$param['id'])->order('id asc')->find(); + //添加提交申请记录 + $checkData=array( + 'action_id' => $param['id'], + 'check_user_id' => $this->adminId, + 'content' => '重新提交申请', + 'check_time' => time(), + 'create_time' => time(), + 'type' => 1, + 'step_id' => $step_id['id'] + ); + $record_id = Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $record_id ? $this->success('ok') : $this->fail('fail'); + } + + public function check(){ + $params = $this->request->post(['id','check','content','check_node','check_admin_ids']); + if(empty($params['id'])){ + return $this->fail('缺少数据主键'); + } + if(empty($params['check']) || !in_array($params['check'],[1,2,3])){ + return $this->fail('审核参数错误'); + } + $data = Db::name('oa_approve')->where('id',$params['id'])->find(); + if(empty($data)){ + return $this->fail('数据信息不存在'); + } + //撤销 + if($params['check'] == 3){ + if($data['admin_id'] != $this->adminId){ + return $this->fail('你不是该申请的发起者,无权撤销'); + } + //撤销审核,数据操作 + $params['check_status'] = 4; + $params['check_admin_ids'] =''; + $params['check_step_sort'] = 0; + $res = Db::name('oa_approve')->strict(false)->field('check_step_sort,check_status,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => 0, + 'check_user_id' => $this->adminId, + 'type' => 1, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + }else{ + return $this->fail('fail'); + } + } + //拒绝 + if($params['check'] == 2){ + //当前审核节点详情 + $step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>$data['check_step_sort'],'type'=>1])->find(); + $check_admin_ids = explode(",", strval($data['check_admin_ids'])); + if (!in_array($this->adminId, $check_admin_ids)){ + return $this->fail('您没权限审核该审批'); + } + //拒绝审核,数据操作 + $params['check_status'] = 3; + $params['last_admin_id'] = $this->adminId; + $params['flow_admin_ids'] = $data['flow_admin_ids'].$this->adminId.','; + $params['check_admin_ids'] = ''; + if($step['flow_type'] == 4){ + //获取上一步的审核信息 + $prev_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']-1),'type'=>1])->find(); + if($prev_step){ + //存在上一步审核 + $params['check_step_sort'] = $prev_step['sort']; + $params['check_admin_ids'] = $prev_step['flow_uids']; + $params['check_status'] = 1; + } + else{ + //不存在上一步审核,审核初始化步骤 + $params['check_step_sort'] = 0; + $params['check_admin_ids'] = ''; + $params['check_status'] = 0; + } + } + $res = Db::name('oa_approve')->strict(false)->field('check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => $step['id'], + 'check_user_id' => $this->adminId, + 'type' => 1, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + } + else{ + return $this->fail('fail'); + } + } + //通过 + if($params['check'] == 1){ + //当前审核节点详情 + $step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>$data['check_step_sort'],'type'=>1])->find(); + $check_admin_ids = explode(",", strval($data['check_admin_ids'])); + if (!in_array($this->adminId, $check_admin_ids)){ + return $this->fail('您没权限审核该审批'); + } + //多人会签审批 + if($step['flow_type'] == 3){ + //查询当前会签记录数 + $check_count = Db::name('oa_flow_record')->where(['action_id'=>$params['id'],'step_id'=>$step['id'],'type'=>1])->count(); + //当前会签记应有记录数 + $flow_count = explode(',', $step['flow_uids']); + if(($check_count+1) >=count($flow_count)){ + $next_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']+1),'type'=>1])->find(); + if($next_step){ + //存在下一步审核 + if($next_step['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$data['admin_id'])->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $next_step['flow_uids']; + } + $params['check_step_sort'] = $data['check_step_sort']+1; + $params['check_status'] = 1; + }else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + }else{ + $params['check_status'] = 1; + $params['check_admin_ids'] = $step['flow_uids']; + } + }else if($step['flow_type'] == 0){ + //自由人审批 + if($params['check_node'] == 2){ + $next_step = $data['check_step_sort']+1; + $flow_step = array( + 'action_id' => $params['id'], + 'sort' => $next_step, + 'type' => 1, + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time() + ); + $fid = Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + //下一步审核步骤 + $params['check_step_sort'] = $next_step; + $params['check_status'] = 1; + } + else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + }else{ + $next_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']+1),'type'=>1])->find(); + if($next_step){ + //存在下一步审核 + if($next_step['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$data['admin_id'])->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + } + else{ + $params['check_admin_ids'] = $next_step['flow_uids']; + } + $params['check_step_sort'] = $data['check_step_sort']+1; + $params['check_status'] = 1; + } + else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + } + if($params['check_status'] == 1 && empty($params['check_admin_ids'])){ + return $this->fail('找不到下一步的审批人,该审批流程设置有问题,请联系HR或者管理员'); + } + //审核通过数据操作 + $params['last_admin_id'] = $this->adminId; + $params['flow_admin_ids'] = $data['flow_admin_ids'].$this->adminId.','; + $res = Db::name('oa_approve')->strict(false)->field('check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => $step['id'], + 'check_user_id' => $this->adminId, + 'type' => 1, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + } + else{ + return $this->fail('fail'); + } + } + return $this->fail(); + } + + public function copy(){ + $params = $this->request->get(); + $user_id = $this->adminId; + //查询条件 + $map = []; + $map[] = ['f.check_status', '=', 2]; + $map[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',f.copy_uids)")]; + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $lists = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->where($map) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + return $item; + })->toArray(); + $count = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->where($map)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function lst(){ + $params = $this->request->get(); + $user_id = $this->adminId; + $status = !empty($params['status']) ? $params['status'] : 0; + //查询条件 + $map1 = []; + $map2 = []; + $map1[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',f.check_admin_ids)")]; + $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$user_id}',f.flow_admin_ids)")]; + + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $lists = []; + $count = 0; + if($status == 0){ + $lists = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->whereOr([$map1,$map2]) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + return $item; + })->toArray(); + $count = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->whereOr([$map1,$map2])->count(); + } + + if($status == 1){ + $lists = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->where($map1) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + return $item; + })->toArray(); + $count = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->where($map1)->count(); + } + if($status == 2){ + $lists = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->where($map2) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item, $key){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + return $item; + })->toArray(); + $count = Db::name('oa_approve') + ->field('f.*,a.name as user_name,d.name as dept_name,t.title as type_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->join('oa_flow_type t', 't.id = f.type', 'left') + ->where($map2)->count(); + } + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + } \ No newline at end of file diff --git a/app/oa/controller/works/bgsp/OaFlowController.php b/app/oa/controller/works/bgsp/OaFlowController.php new file mode 100644 index 0000000..7ae842b --- /dev/null +++ b/app/oa/controller/works/bgsp/OaFlowController.php @@ -0,0 +1,108 @@ +dataLists(new OaFlowLists()); + } + + + /** + * @notes 添加审批流程 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function add() + { + $params = (new OaFlowValidate())->post()->goCheck('add'); + $result = OaFlowLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaFlowLogic::getError()); + } + + + /** + * @notes 编辑审批流程 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function edit() + { + $params = (new OaFlowValidate())->post()->goCheck('edit'); + $result = OaFlowLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaFlowLogic::getError()); + } + + + /** + * @notes 删除审批流程 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function delete() + { + $params = (new OaFlowValidate())->post()->goCheck('delete'); + OaFlowLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取审批流程详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function detail() + { + $params = (new OaFlowValidate())->goCheck('detail'); + $result = OaFlowLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/bgsp/OaFlowTypeController.php b/app/oa/controller/works/bgsp/OaFlowTypeController.php new file mode 100644 index 0000000..9211da5 --- /dev/null +++ b/app/oa/controller/works/bgsp/OaFlowTypeController.php @@ -0,0 +1,116 @@ +dataLists(new OaFlowTypeLists()); + } + + + /** + * @notes 添加审批类型 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function add() + { + $params = (new OaFlowTypeValidate())->post()->goCheck('add'); + $result = OaFlowTypeLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaFlowTypeLogic::getError()); + } + + + /** + * @notes 编辑审批类型 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function edit() + { + $params = (new OaFlowTypeValidate())->post()->goCheck('edit'); + $result = OaFlowTypeLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaFlowTypeLogic::getError()); + } + + + /** + * @notes 删除审批类型 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function delete() + { + $params = (new OaFlowTypeValidate())->post()->goCheck('delete'); + $result = OaFlowTypeLogic::delete($params); + if (true === $result) { + return $this->success('删除成功', [], 1, 1); + } + return $this->fail(OaFlowTypeLogic::getError()); + } + + + /** + * @notes 获取审批类型详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function detail() + { + $params = (new OaFlowTypeValidate())->goCheck('detail'); + $result = OaFlowTypeLogic::detail($params); + return $this->data($result); + } + + public function all(){ + $result = OaFlowTypeLogic::all(); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/finance/ExpenseController.php b/app/oa/controller/works/finance/ExpenseController.php new file mode 100644 index 0000000..907a98d --- /dev/null +++ b/app/oa/controller/works/finance/ExpenseController.php @@ -0,0 +1,738 @@ +post()->goCheck('add'); + $params['income_month'] = strtotime($params['income_month']); + $params['expense_time'] = strtotime($params['expense_time']); + $params['admin_id'] = $this->adminId; + $params['annex'] = !empty($params['annex']) ? json_encode($params['annex']) : null; + $params['check_status'] = 0; + $params['check_step_sort'] = 0; + $params['create_time'] = time(); + $params['detail'] = json_encode($params['detail']); + $flow = Db::name('oa_flow')->where('id',$params['flow_id'])->find(); + if(empty($flow)){ + return $this->fail("审批流程信息不存在"); + } + if($flow['check_type'] == 2){ + if(empty($params['check_admin_ids'])){ + return $this->fail("请选择审核人"); + } + }else{ + if(empty($flow['flow_list'])){ + return $this->fail("当前审批流程未设置完全"); + } + } + $params['copy_uids'] = !empty($params['copy_uids']) ? $params['copy_uids'] : $flow['copy_uids']; + if (empty($params['check_admin_ids'])) { + $flow_list = unserialize($flow['flow_list']); + if($flow_list[0]['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$this->adminId)->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $flow_list[0]['flow_uids']; + } + $aid = Db::name('oa_expense')->strict(false)->field(true)->insertGetId($params); + foreach ($flow_list as $key => &$value){ + $value['action_id'] = $aid; + $value['sort'] = $key; + $value['create_time'] = time(); + $value['type'] = 2; + } + Db::name('oa_flow_step')->strict(false)->field(true)->insertAll($flow_list); + } + else{ + $aid = Db::name('oa_expense')->strict(false)->field(true)->insertGetId($params); + $flow_step = array( + 'action_id' => $aid, + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time(), + 'type' => 2 + ); + Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + } + $step_id = Db::name('oa_flow_step')->where('action_id',$aid)->where('type',2)->order('id asc')->find(); + //添加提交申请记录 + $checkData=array( + 'action_id' => $aid, + 'check_user_id' => $this->adminId, + 'content' => '提交申请', + 'check_time' => time(), + 'create_time' => time(), + 'type' => 2, + 'step_id' => $step_id['id'] + ); + $record_id = Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $record_id ? $this->success('ok') : $this->fail('fail'); + } + + public function edit(){ + $params = (new ExpenseValidate())->post()->goCheck('edit'); + $params['income_month'] = strtotime($params['income_month']); + $params['expense_time'] = strtotime($params['expense_time']); + $params['annex'] = !empty($params['annex']) ? json_encode($params['annex']) : null; + $params['check_status'] = 0; + $params['check_step_sort'] = 0; + $params['detail'] = json_encode($params['detail']); + $flow = Db::name('oa_flow')->where('id',$params['flow_id'])->find(); + if(empty($flow)){ + return $this->fail("审批流程信息不存在"); + } + if($flow['check_type'] == 2){ + if(empty($param['check_admin_ids'])){ + return $this->fail("请选择审核人"); + } + }else{ + if(empty($flow['flow_list'])){ + return $this->fail("当前审批流程未设置完全"); + } + } + //删除原来的审核流程和审核记录 + Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'type'=>2])->update(['delete_time'=>time()]); + Db::name('oa_flow_record')->where(['action_id'=>$params['id'],'type'=>2])->update(['delete_time'=>time(),'is_invalid'=>1]); + if (empty($params['check_admin_ids'])) { + $flow_list = unserialize($flow['flow_list']); + if($flow_list[0]['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$this->adminId)->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $flow_list[0]['flow_uids']; + } + Db::name('oa_expense')->where('id',$params['id'])->strict(false)->field(true)->update($params); + foreach ($flow_list as $key => &$value){ + $value['action_id'] = $params['id']; + $value['sort'] = $key; + $value['create_time'] = time(); + $value['type'] = 2; + } + Db::name('oa_flow_step')->strict(false)->field(true)->insertAll($flow_list); + } + else{ + Db::name('oa_expense')->where('id',$params['id'])->strict(false)->field(true)->insertGetId($params); + $flow_step = array( + 'action_id' => $params['id'], + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time(), + 'type' => 2 + ); + Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + } + $step_id = Db::name('oa_flow_step')->where('action_id',$params['id'])->where('type',2)->order('id asc')->find(); + //添加提交申请记录 + $checkData=array( + 'action_id' => $params['id'], + 'check_user_id' => $this->adminId, + 'content' => '提交申请', + 'check_time' => time(), + 'create_time' => time(), + 'type' => 2, + 'step_id' => $step_id['id'] + ); + $record_id = Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $record_id ? $this->success('ok') : $this->fail('fail'); + } + + public function detail(){ + $params = (new ExpenseValidate())->get()->goCheck('detail'); + $data = Db::name('oa_expense')->where('id',$params['id'])->find(); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待打款',3=>'审核不通过',4=>'撤销审核' + }; + $data['income_month'] = date('Y-m',$data['income_month']); + $data['expense_time'] = date('Y-m-d',$data['expense_time']); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $copy_users = Admin::where('id','in',$data['copy_uids'])->column('name'); + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['copy_users'] = !empty($copy_users) ? implode(',',$copy_users) : ''; + $data['detail'] = json_decode($data['detail'],true); + $data['annex'] = json_decode($data['annex'],true); + $data['total_amount'] = 0; + foreach ($data['detail'] as &$v){ + $data['total_amount'] += $v['amount']; + //1-交通费 2-住宿费 3-餐补费 4-招待费 5-汽油费 6-其他费 + $v['cate_name'] = match ($v['cate_id']){ + '1'=>'交通费', '2'=>'住宿费', '3'=>'餐补费', '4'=>'招待费', '5'=>'汽油费', '6'=>'其他费', default=>'' + }; + } + $data['admin_name'] = Admin::where('id',$data['admin_id'])->value('name'); + $data['flow_info'] = OaFlow::where('id',$data['flow_id'])->findOrEmpty(); + $data['record'] = Db::name('oa_flow_record')->field('check_user_id,check_time,status,content')->where('action_id',$params['id'])->where('type',2)->order('id desc')->select()->each(function($data){ + $data['check_time'] = date('Y-m-d H:i:s',$data['check_time']); + $user = Admin::where('id',$data['check_user_id'])->value('name'); + $data['check_user_name'] = $user ?? ''; + $data['status_text'] = match ($data['status']){ + 0=>'提交',1=>'通过',2=>'拒绝',3=>'撤销' + }; + return $data; + })->toArray(); + $step = Db::name('oa_flow_step')->field('id,action_id,flow_uids,flow_type,sort')->where('action_id',$params['id'])->where('type',2)->order('sort asc')->select()->toArray(); + foreach ($step as $key => &$val) { + $user_id_info = Admin::field('id,name')->where('id','in',$val['flow_uids'])->select()->toArray(); + foreach ($user_id_info as $k => &$v) { + $v['check_time'] = 0; + $v['content'] = ''; + $v['status'] = 0; + $check_array = Db::name('oa_flow_record')->where(['check_user_id' => $v['id'],'step_id' => $val['id'],'type'=>2])->order('check_time desc')->select()->toArray(); + if(!empty($check_array)){ + $checked = $check_array[0]; + $v['check_time'] = date('Y-m-d H:i', $checked['check_time']); + $v['content'] = $checked['content']; + $v['status'] = $checked['status']; + } + } + $check_list = Db::name('oa_flow_record') + ->field('f.*,a.name') + ->alias('f') + ->join('admin a', 'a.id = f.check_user_id', 'left') + ->where(['f.step_id' => $val['id']])->where('f.status','>',0)->select()->toArray(); + foreach ($check_list as $kk => &$vv) { + $vv['check_time_str'] = date('Y-m-d H:i', $vv['check_time']); + } + $val['user_id_info'] = $user_id_info; + $val['check_list'] = $check_list; + } + $data['steps'] = $step; + return $this->data($data); + } + + public function lists(){ + $params = $this->request->get(['start_time','end_time','status','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $where = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $where[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + if(!empty($params['status'])){ + $where[] = match ($params['status']){ + '1'=> ['check_status','=',0], //待审核 + '2'=> ['check_status','=',1], //审核中 + '3'=> [['check_status','=',2],['pay_admin_id','=',0],['pay_time','=',0]], //审批通过,待打款 + '4'=> ['check_status','=',3], //审核不通过 + '5'=> ['check_status','=',4], //撤销审核 + '6'=> [['check_status','=',2],['pay_admin_id','>',0],['pay_time','>',0]], //审批通过,已打款 + }; + }else{ + $where[] = ['check_status','in','0,1,2,3,4']; + } + $lists = Db::name('oa_expense')->field('id,code,income_month,expense_time,admin_id,check_admin_ids,check_status,pay_admin_id,pay_time,create_time,detail')->where('admin_id',$this->adminId)->where($where) + ->page($page_no, $page_size)->order('id desc')->select()->each(function($data){ + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['income_month'] = date('Y-m',$data['income_month']); + $data['expense_time'] = date('Y-m-d',$data['expense_time']); + $data['pay_time'] = !empty($data['pay_time']) ? date('Y-m-d H:i:s',$data['pay_time']) : ''; + $data['pay_admin_name'] = Admin::where('id',$data['pay_admin_id'])?->value('name'); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + if(!empty($data['pay_admin_id']) && !empty($data['pay_time']) && $data['check_status'] == 2){ + $data['check_status_text'] = '已打款'; + } + $data['total_amount'] = 0; + foreach (json_decode($data['detail'],true) as $v){ + $data['total_amount'] += $v['amount']; + } + return $data; + })->toArray(); + $count = Db::name('oa_expense')->where($where)->where('admin_id',$this->adminId)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function copy(){ + $params = $this->request->get(['start_time','end_time','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $map = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $map[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + //查询条件 + $map = []; + $map[] = ['f.check_status', '=', 2]; + $map[] = ['', 'exp', Db::raw("FIND_IN_SET('{$this->adminId}',f.copy_uids)")]; + + $lists = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['income_month'] = date('Y-m',$item['income_month']); + $item['expense_time'] = date('Y-m-d',$item['expense_time']); + $item['pay_time'] = !empty($item['pay_time']) ? date('Y-m-d H:i:s',$item['pay_time']) : ''; + $item['pay_admin_name'] = Admin::where('id',$item['pay_admin_id'])?->value('name'); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + if(!empty($item['pay_admin_id']) && !empty($item['pay_time']) && $item['check_status'] == 2){ + $item['check_status_text'] = '已打款'; + } + $item['total_amount'] = 0; + foreach (json_decode($item['detail'],true) as $v){ + $item['total_amount'] += $v['amount']; + } + return $item; + })->toArray(); + $count = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function deal_with(){ + $params = $this->request->get(); + $status = !empty($params['status']) ? $params['status'] : 0; + //查询条件 + $map1 = []; + $map2 = []; + $map1[] = ['', 'exp', Db::raw("FIND_IN_SET('{$this->adminId}',f.check_admin_ids)")]; + $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$this->adminId}',f.flow_admin_ids)")]; + + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $lists = []; + $count = 0; + if($status == 0){ + $lists = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->whereOr([$map1,$map2]) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['income_month'] = date('Y-m',$item['income_month']); + $item['expense_time'] = date('Y-m-d',$item['expense_time']); + $item['pay_time'] = !empty($item['pay_time']) ? date('Y-m-d H:i:s',$item['pay_time']) : ''; + $item['pay_admin_name'] = Admin::where('id',$item['pay_admin_id'])?->value('name'); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核' + }; + if(!empty($item['pay_admin_id']) && !empty($item['pay_time']) && $item['check_status'] == 2){ + $item['check_status_text'] = '已打款'; + } + $item['total_amount'] = 0; + foreach (json_decode($item['detail'],true) as $v){ + $item['total_amount'] += $v['amount']; + } + return $item; + })->toArray(); + $count = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->whereOr([$map1,$map2])->count(); + } + + if($status == 1){ + $lists = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map1) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['income_month'] = date('Y-m',$item['income_month']); + $item['expense_time'] = date('Y-m-d',$item['expense_time']); + $item['pay_time'] = !empty($item['pay_time']) ? date('Y-m-d H:i:s',$item['pay_time']) : ''; + $item['pay_admin_name'] = Admin::where('id',$item['pay_admin_id'])?->value('name'); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待打款',3=>'审核不通过',4=>'撤销审核' + }; + if(!empty($item['pay_admin_id']) && !empty($item['pay_time']) && $item['check_status'] == 2){ + $item['check_status_text'] = '已打款'; + } + $item['total_amount'] = 0; + foreach (json_decode($item['detail'],true) as $v){ + $item['total_amount'] += $v['amount']; + } + return $item; + })->toArray(); + $count = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map1)->count(); + } + if($status == 2){ + $lists = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map2) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item, $key){ + $item['create_time'] = date('Y-m-d H:i', $item['create_time']); + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['income_month'] = date('Y-m',$item['income_month']); + $item['expense_time'] = date('Y-m-d',$item['expense_time']); + $item['pay_time'] = !empty($item['pay_time']) ? date('Y-m-d H:i:s',$item['pay_time']) : ''; + $item['pay_admin_name'] = Admin::where('id',$item['pay_admin_id'])?->value('name'); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待打款',3=>'审核不通过',4=>'撤销审核' + }; + if(!empty($item['pay_admin_id']) && !empty($item['pay_time']) && $item['check_status'] == 2){ + $item['check_status_text'] = '已打款'; + } + $item['total_amount'] = 0; + foreach (json_decode($item['detail'],true) as $v){ + $item['total_amount'] += $v['amount']; + } + return $item; + })->toArray(); + $count = Db::name('oa_expense') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map2)->count(); + } + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function check(){ + $params = $this->request->post(['id','check','content','check_node','check_admin_ids']); + if(empty($params['id'])){ + return $this->fail('缺少数据主键'); + } + if(empty($params['check']) || !in_array($params['check'],[1,2,3])){ + return $this->fail('审核参数错误'); + } + $data = Db::name('oa_expense')->where('id',$params['id'])->find(); + if(empty($data)){ + return $this->fail('数据信息不存在'); + } + //撤销 + if($params['check'] == 3){ + if($data['admin_id'] != $this->adminId){ + return $this->fail('你不是该申请的发起者,无权撤销'); + } + //撤销审核,数据操作 + $params['check_status'] = 4; + $params['check_admin_ids'] =''; + $params['check_step_sort'] = 0; + $res = Db::name('oa_expense')->strict(false)->field('check_step_sort,check_status,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => 0, + 'check_user_id' => $this->adminId, + 'type' => 2, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + }else{ + return $this->fail('fail'); + } + } + //拒绝 + if($params['check'] == 2){ + //当前审核节点详情 + $step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>$data['check_step_sort'],'type'=>2])->find(); + $check_admin_ids = explode(",", strval($data['check_admin_ids'])); + if (!in_array($this->adminId, $check_admin_ids)){ + return $this->fail('您没权限审核该审批'); + } + //拒绝审核,数据操作 + $params['check_status'] = 3; + $params['last_admin_id'] = $this->adminId; + $params['flow_admin_ids'] = $data['flow_admin_ids'].$this->adminId.','; + $params['check_admin_ids'] = ''; + if($step['flow_type'] == 4){ + //获取上一步的审核信息 + $prev_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']-1),'type'=>2])->find(); + if($prev_step){ + //存在上一步审核 + $params['check_step_sort'] = $prev_step['sort']; + $params['check_admin_ids'] = $prev_step['flow_uids']; + $params['check_status'] = 1; + } + else{ + //不存在上一步审核,审核初始化步骤 + $params['check_step_sort'] = 0; + $params['check_admin_ids'] = ''; + $params['check_status'] = 0; + } + } + $res = Db::name('oa_expense')->strict(false)->field('check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => $step['id'], + 'check_user_id' => $this->adminId, + 'type' => 2, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + } + else{ + return $this->fail('fail'); + } + } + //通过 + if($params['check'] == 1){ + //当前审核节点详情 + $step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>$data['check_step_sort'],'type'=>2])->find(); + $check_admin_ids = explode(",", strval($data['check_admin_ids'])); + if (!in_array($this->adminId, $check_admin_ids)){ + return $this->fail('您没权限审核该审批'); + } + //多人会签审批 + if($step['flow_type'] == 3){ + //查询当前会签记录数 + $check_count = Db::name('oa_flow_record')->where(['action_id'=>$params['id'],'step_id'=>$step['id'],'type'=>2])->count(); + //当前会签记应有记录数 + $flow_count = explode(',', $step['flow_uids']); + if(($check_count+1) >=count($flow_count)){ + $next_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']+1),'type'=>2])->find(); + if($next_step){ + //存在下一步审核 + if($next_step['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$data['admin_id'])->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $next_step['flow_uids']; + } + $params['check_step_sort'] = $data['check_step_sort']+1; + $params['check_status'] = 1; + }else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + }else{ + $params['check_status'] = 1; + $params['check_admin_ids'] = $step['flow_uids']; + } + }else if($step['flow_type'] == 0){ + //自由人审批 + if($params['check_node'] == 2){ + $next_step = $data['check_step_sort']+1; + $flow_step = array( + 'action_id' => $params['id'], + 'sort' => $next_step, + 'type' => 2, + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time() + ); + $fid = Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + //下一步审核步骤 + $params['check_step_sort'] = $next_step; + $params['check_status'] = 1; + } + else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + }else{ + $next_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']+1),'type'=>2])->find(); + if($next_step){ + //存在下一步审核 + if($next_step['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$data['admin_id'])->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + } + else{ + $params['check_admin_ids'] = $next_step['flow_uids']; + } + $params['check_step_sort'] = $data['check_step_sort']+1; + $params['check_status'] = 1; + } + else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + } + if($params['check_status'] == 1 && empty($params['check_admin_ids'])){ + return $this->fail('找不到下一步的审批人,该审批流程设置有问题,请联系HR或者管理员'); + } + //审核通过数据操作 + $params['last_admin_id'] = $this->adminId; + $params['flow_admin_ids'] = $data['flow_admin_ids'].$this->adminId.','; + $res = Db::name('oa_expense')->strict(false)->field('check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => $step['id'], + 'check_user_id' => $this->adminId, + 'type' => 2, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + } + else{ + return $this->fail('fail'); + } + } + return $this->fail(); + } + + public function lists2(){ + $params = $this->request->get(['start_time','end_time','status','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $where = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $where[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + if(!empty($params['status'])){ + $where[] = match ($params['status']){ + '1'=> [['check_status','=',2],['pay_admin_id','=',0],['pay_time','=',0]], //审批通过,待打款 + '2'=> [['check_status','=',2],['pay_admin_id','>',0],['pay_time','>',0]], //审批通过,已打款 + }; + }else{ + $where[] = ['check_status','=',2]; + } + $lists = Db::name('oa_expense')->field('id,code,income_month,expense_time,admin_id,check_admin_ids,check_status,pay_admin_id,pay_time,create_time,detail')->where($where) + ->page($page_no, $page_size)->order('id desc')->select()->each(function($data){ + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['income_month'] = date('Y-m',$data['income_month']); + $data['expense_time'] = date('Y-m-d',$data['expense_time']); + $data['pay_time'] = !empty($data['pay_time']) ? date('Y-m-d H:i:s',$data['pay_time']) : ''; + $data['pay_admin_name'] = Admin::where('id',$data['pay_admin_id'])?->value('name'); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待打款',3=>'审核不通过',4=>'撤销审核' + }; + if(!empty($data['pay_admin_id']) && !empty($data['pay_time']) && $data['check_status'] == 2){ + $data['check_status_text'] = '已打款'; + } + $data['total_amount'] = 0; + foreach (json_decode($data['detail'],true) as $v){ + $data['total_amount'] += $v['amount']; + } + return $data; + })->toArray(); + $count = Db::name('oa_expense')->where($where)->where('admin_id',$this->adminId)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function payment(){ + $params = (new ExpenseValidate())->post()->goCheck('pay'); + $data = Db::name('oa_expense')->where('id',$params['id'])->find(); + if(empty($data)){ + return $this->success('申请信息不存在'); + } + if($data['check_status'] !== 2){ + return $this->success('当前申请未审核通过'); + } + $res = Db::name('oa_expense')->where('id',$params['id'])->update(['pay_admin_id'=>$this->adminId,'pay_time'=>time()]); + return $res ? $this->success('ok') : $this->fail('fail'); + } + } \ No newline at end of file diff --git a/app/oa/controller/works/finance/IncomeController.php b/app/oa/controller/works/finance/IncomeController.php new file mode 100644 index 0000000..6ca144c --- /dev/null +++ b/app/oa/controller/works/finance/IncomeController.php @@ -0,0 +1,148 @@ +request->get(['start_time','end_time','status','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $where = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $where[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + if(!empty($params['status'])){ + $where[] = match ($params['status']){ + '1'=> ['is_cash','=',0], //未到账 + '2'=> ['is_cash','=',1], //部分到账 + '3'=> [['is_cash','=',2]], //全部到账 + }; + }else{ + $where[] = ['is_cash','in','0,1,2']; + } + $lists = Db::name('oa_invoice')->field('id,is_cash,enter_amount,enter_time,type,invoice_title,amount,invoice_type,admin_id,create_time,code,open_time,check_admin_ids,open_admin_id')->where('check_status',5)->where($where) + ->page($page_no, $page_size)->order('id desc')->select()->each(function($data){ + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['type_text'] = match ($data['type']){ + 1=>'企业',2=>'个人' + }; + $data['invoice_type_text'] = match ($data['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $data['is_cash_text'] = match ($data['is_cash']){ + 0=>'未到账',1=>'部分到账',2=>'全部到账' + }; + $data['open_time'] = !empty($data['open_time']) ? date('Y-m-d',$data['open_time']) : ''; + $data['enter_time'] = !empty($data['enter_time']) ? date('Y-m-d H:i:s',$data['enter_time']) : ''; + $data['open_admin_name'] = Admin::where('id',$data['open_admin_id'])?->value('name'); + return $data; + })->toArray(); + $count = Db::name('oa_invoice')->where($where)->where('check_status',5)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function add(){ + $params = $this->request->post(['invoice_id','detail']); + if(empty($params['invoice_id']) || empty($params['detail'])){ + return $this->fail('参数错误'); + } + $invoice = Db::name('oa_invoice')->where('id',$params['invoice_id'])->find(); + if(empty($invoice)){ + return $this->fail('开票信息不存在'); + } + if(!is_array($params['detail'])){ + return $this->fail('到账记录数据格式错误'); + } + $income_amount = 0; + $save_data = []; + foreach($params['detail'] as $k=>$v){ + if(empty($v['enter_time']) || !strtotime($v['enter_time'])){ + return $this->fail('到账记录第'.($k+1).'行到账日期为空'); + } + if(empty($v['amount'])){ + return $this->fail('到账记录第'.($k+1).'行到帐金额为空'); + } + $income_amount += $v['amount']; + $save_data[] = [ + 'inid' => $params['invoice_id'], + 'amount' => $v['amount'], + 'admin_id' => $this->adminId, + 'enter_time' => strtotime($v['enter_time']), + 'remarks' => $v['remarks'] ?? '', + 'create_time' => time(), + 'status' => 1 + ]; + } + if($income_amount > $invoice['amount']){ + return $this->fail('到账金额大于发票金额,不允许保存'); + } + Db::startTrans(); + try { + Db::name('oa_invoice_income')->where('inid',$params['invoice_id'])->delete(); + Db::name('oa_invoice_income')->insertAll($save_data); + Db::name('oa_invoice')->where('id',$params['invoice_id'])->update([ + 'enter_amount' => $income_amount, + 'enter_time' => time(), + 'is_cash' => $income_amount < $invoice['amount'] ? 1 : 2 + ]); + Db::commit(); + return $this->success('ok'); + } catch (\Exception $e) { + Db::rollback(); + return $this->fail(); + } + } + + public function lists(){ + $params = $this->request->get(['invoice_id']); + if(empty($params['invoice_id'])){ + return $this->fail('参数错误'); + } + $data = Db::name('oa_invoice_income')->where('inid',$params['invoice_id'])->order('create_time desc')->select()->each(function($data){ + $data['enter_time'] = date('Y-m-d',$data['enter_time']); + $data['admin_name'] = Admin::where('id',$data['admin_id'])?->value('name'); + return $data; + })->toArray(); + return $this->data($data); + } + + public function fdz(){ + $params = $this->request->post(['invoice_id']); + if(empty($params['invoice_id'])){ + return $this->fail('参数错误'); + } + $invoice = Db::name('oa_invoice')->where('id',$params['invoice_id'])->find(); + if(empty($invoice)){ + return $this->fail('开票信息不存在'); + } + Db::startTrans(); + try { + Db::name('oa_invoice_income')->where('inid',$params['invoice_id'])->delete(); + Db::name('oa_invoice')->where('id',$params['invoice_id'])->update([ + 'enter_amount' => 0, + 'enter_time' => 0, + 'is_cash' => 0 + ]); + Db::commit(); + return $this->success('ok'); + } catch (\Exception $e) { + Db::rollback(); + return $this->fail(); + } + } + } \ No newline at end of file diff --git a/app/oa/controller/works/finance/InvoiceController.php b/app/oa/controller/works/finance/InvoiceController.php new file mode 100644 index 0000000..eddf9b7 --- /dev/null +++ b/app/oa/controller/works/finance/InvoiceController.php @@ -0,0 +1,750 @@ +post()->goCheck('add'); + $params['admin_id'] = $this->adminId; + $params['annex'] = !empty($params['annex']) ? json_encode($params['annex']) : null; + $params['create_time'] = time(); + $params['check_status'] = 0; + $params['check_step_sort'] = 0; + $flow = Db::name('oa_flow')->where('id',$params['flow_id'])->find(); + if(empty($flow)){ + return $this->fail("审批流程信息不存在"); + } + if($flow['check_type'] == 2){ + if(empty($params['check_admin_ids'])){ + return $this->fail("请选择审核人"); + } + }else{ + if(empty($flow['flow_list'])){ + return $this->fail("当前审批流程未设置完全"); + } + } + $params['copy_uids'] = !empty($params['copy_uids']) ? $params['copy_uids'] : $flow['copy_uids']; + if (empty($params['check_admin_ids'])) { + $flow_list = unserialize($flow['flow_list']); + if($flow_list[0]['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$this->adminId)->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $flow_list[0]['flow_uids']; + } + $aid = Db::name('oa_invoice')->strict(false)->field(true)->insertGetId($params); + foreach ($flow_list as $key => &$value){ + $value['action_id'] = $aid; + $value['sort'] = $key; + $value['create_time'] = time(); + $value['type'] = 3; + } + Db::name('oa_flow_step')->strict(false)->field(true)->insertAll($flow_list); + } + else{ + $aid = Db::name('oa_invoice')->strict(false)->field(true)->insertGetId($params); + $flow_step = array( + 'action_id' => $aid, + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time(), + 'type' => 3 + ); + Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + } + $step_id = Db::name('oa_flow_step')->where('action_id',$aid)->where('type',3)->order('id asc')->find(); + //添加提交申请记录 + $checkData=array( + 'action_id' => $aid, + 'check_user_id' => $this->adminId, + 'content' => '提交申请', + 'check_time' => time(), + 'create_time' => time(), + 'type' => 3, + 'step_id' => $step_id['id'] + ); + $record_id = Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $record_id ? $this->success('ok') : $this->fail('fail'); + } + + public function edit(){ + $params = (new InvoiceValidate())->post()->goCheck('edit'); + $params['admin_id'] = $this->adminId; + $params['annex'] = !empty($params['annex']) ? json_encode($params['annex']) : null; + $params['create_time'] = time(); + $params['check_status'] = 0; + $params['check_step_sort'] = 0; + $flow = Db::name('oa_flow')->where('id',$params['flow_id'])->find(); + if(empty($flow)){ + return $this->fail("审批流程信息不存在"); + } + if($flow['check_type'] == 2){ + if(empty($param['check_admin_ids'])){ + return $this->fail("请选择审核人"); + } + }else{ + if(empty($flow['flow_list'])){ + return $this->fail("当前审批流程未设置完全"); + } + } + //删除原来的审核流程和审核记录 + Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'type'=>3])->update(['delete_time'=>time()]); + Db::name('oa_flow_record')->where(['action_id'=>$params['id'],'type'=>3])->update(['delete_time'=>time(),'is_invalid'=>1]); + if (empty($params['check_admin_ids'])) { + $flow_list = unserialize($flow['flow_list']); + if($flow_list[0]['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$this->adminId)->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $flow_list[0]['flow_uids']; + } + Db::name('oa_invoice')->where('id',$params['id'])->strict(false)->field(true)->update($params); + foreach ($flow_list as $key => &$value){ + $value['action_id'] = $params['id']; + $value['sort'] = $key; + $value['create_time'] = time(); + $value['type'] = 3; + } + Db::name('oa_flow_step')->strict(false)->field(true)->insertAll($flow_list); + } + else{ + Db::name('oa_invoice')->where('id',$params['id'])->strict(false)->field(true)->insertGetId($params); + $flow_step = array( + 'action_id' => $params['id'], + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time(), + 'type' => 3 + ); + Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + } + $step_id = Db::name('oa_flow_step')->where('action_id',$params['id'])->where('type',3)->order('id asc')->find(); + //添加提交申请记录 + $checkData=array( + 'action_id' => $params['id'], + 'check_user_id' => $this->adminId, + 'content' => '提交申请', + 'check_time' => time(), + 'create_time' => time(), + 'type' => 3, + 'step_id' => $step_id['id'] + ); + $record_id = Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $record_id ? $this->success('ok') : $this->fail('fail'); + } + + public function lists(){ + $params = $this->request->get(['start_time','end_time','status','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $where = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $where[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + if(!empty($params['status'])){ + $where[] = match ($params['status']){ + '1'=> ['check_status','=',0], //待审核 + '2'=> ['check_status','=',1], //审核中 + '3'=> [['check_status','=',2]], //审批通过,待开具 + '4'=> ['check_status','=',3], //审核不通过 + '5'=> ['check_status','=',4], //撤销审核 + '6'=> [['check_status','=',5]], //审批通过,已开具 + '7'=> [['check_status','=',10]], //已作废 + }; + }else{ + $where[] = ['check_status','in','0,1,2,3,4,5,10']; + } + $lists = Db::name('oa_invoice')->field('id,type,invoice_title,invoice_subject,amount,invoice_type,check_status,admin_id,create_time,check_admin_ids,open_admin_id,open_time,code')->where('admin_id',$this->adminId)->where($where) + ->page($page_no, $page_size)->order('id desc')->select()->each(function($data){ + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待开具',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $data['type_text'] = match ($data['type']){ + 1=>'企业',2=>'个人' + }; + $data['invoice_type_text'] = match ($data['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $data['open_time'] = !empty($data['open_time']) ? date('Y-m-d',$data['open_time']) : ''; + $data['open_admin_name'] = Admin::where('id',$data['open_admin_id'])?->value('name'); + return $data; + })->toArray(); + $count = Db::name('oa_invoice')->where($where)->where('admin_id',$this->adminId)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function detail(){ + $params = (new InvoiceValidate())->post()->goCheck('detail'); + $data = Db::name('oa_invoice')->where('id',$params['id'])->find(); + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $copy_users = Admin::where('id','in',$data['copy_uids'])->column('name'); + $data['copy_users'] = !empty($copy_users) ? implode(',',$copy_users) : ''; + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['annex'] = json_decode($data['annex'],true); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待开具',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $data['type_text'] = match ($data['type']){ + 1=>'企业',2=>'个人' + }; + $data['invoice_type_text'] = match ($data['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $data['is_cash_text'] = match ($data['is_cash']){ + 0=>'未到账',1=>'部分到账',2=>'全部到账' + }; + $data['open_time'] = !empty($data['open_time']) ? date('Y-m-d',$data['open_time']) : ''; + $data['open_admin_name'] = Admin::where('id',$data['open_admin_id'])?->value('name'); + + $data['flow_info'] = OaFlow::where('id',$data['flow_id'])->findOrEmpty(); + $data['record'] = Db::name('oa_flow_record')->field('check_user_id,check_time,status,content')->where('action_id',$params['id'])->where('type',3)->order('id desc')->select()->each(function($data){ + $data['check_time'] = date('Y-m-d H:i:s',$data['check_time']); + $user = Admin::where('id',$data['check_user_id'])->value('name'); + $data['check_user_name'] = $user ?? ''; + $data['status_text'] = match ($data['status']){ + 0=>'提交',1=>'通过',2=>'拒绝',3=>'撤销' + }; + return $data; + })->toArray(); + $step = Db::name('oa_flow_step')->field('id,action_id,flow_uids,flow_type,sort')->where('action_id',$params['id'])->where('type',3)->order('sort asc')->select()->toArray(); + foreach ($step as $key => &$val) { + $user_id_info = Admin::field('id,name')->where('id','in',$val['flow_uids'])->select()->toArray(); + foreach ($user_id_info as $k => &$v) { + $v['check_time'] = 0; + $v['content'] = ''; + $v['status'] = 0; + $check_array = Db::name('oa_flow_record')->where(['check_user_id' => $v['id'],'step_id' => $val['id'],'type'=>3])->order('check_time desc')->select()->toArray(); + if(!empty($check_array)){ + $checked = $check_array[0]; + $v['check_time'] = date('Y-m-d H:i', $checked['check_time']); + $v['content'] = $checked['content']; + $v['status'] = $checked['status']; + } + } + $check_list = Db::name('oa_flow_record') + ->field('f.*,a.name') + ->alias('f') + ->join('admin a', 'a.id = f.check_user_id', 'left') + ->where(['f.step_id' => $val['id']])->where('f.status','>',0)->select()->toArray(); + foreach ($check_list as $kk => &$vv) { + $vv['check_time_str'] = date('Y-m-d H:i', $vv['check_time']); + } + $val['user_id_info'] = $user_id_info; + $val['check_list'] = $check_list; + } + $data['steps'] = $step; + return $this->data($data); + } + + public function copy(){ + $params = $this->request->get(['start_time','end_time','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $map = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $map[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + //查询条件 + $map = []; + $map[] = ['f.check_status', '=', 2]; + $map[] = ['', 'exp', Db::raw("FIND_IN_SET('{$this->adminId}',f.copy_uids)")]; + + $lists = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['create_time'] = date('Y-m-d H:i:s',$item['create_time']); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待开具',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $item['type_text'] = match ($item['type']){ + 1=>'企业',2=>'个人' + }; + $item['invoice_type_text'] = match ($item['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $item['open_time'] = !empty($item['open_time']) ? date('Y-m-d',$item['open_time']) : ''; + $item['open_admin_name'] = Admin::where('id',$item['open_admin_id'])?->value('name'); + return $item; + })->toArray(); + $count = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function deal_with(){ + $params = $this->request->get(); + $status = !empty($params['status']) ? $params['status'] : 0; + //查询条件 + $map1 = []; + $map2 = []; + $map1[] = ['', 'exp', Db::raw("FIND_IN_SET('{$this->adminId}',f.check_admin_ids)")]; + $map2[] = ['', 'exp', Db::raw("FIND_IN_SET('{$this->adminId}',f.flow_admin_ids)")]; + + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $lists = []; + $count = 0; + if($status == 0){ + $lists = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->whereOr([$map1,$map2]) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['create_time'] = date('Y-m-d H:i:s',$item['create_time']); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $item['type_text'] = match ($item['type']){ + 1=>'企业',2=>'个人' + }; + $item['invoice_type_text'] = match ($item['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $item['open_time'] = !empty($item['open_time']) ? date('Y-m-d',$item['open_time']) : ''; + $item['open_admin_name'] = Admin::where('id',$item['open_admin_id'])?->value('name'); + return $item; + })->toArray(); + $count = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->whereOr([$map1,$map2])->count(); + } + + if($status == 1){ + $lists = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map1) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item){ + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['create_time'] = date('Y-m-d H:i:s',$item['create_time']); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中,待开具',2=>'审核通过',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $item['type_text'] = match ($item['type']){ + 1=>'企业',2=>'个人' + }; + $item['invoice_type_text'] = match ($item['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $item['open_time'] = !empty($item['open_time']) ? date('Y-m-d',$item['open_time']) : ''; + $item['open_admin_name'] = Admin::where('id',$item['open_admin_id'])?->value('name'); + return $item; + })->toArray(); + $count = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map1)->count(); + } + if($status == 2){ + $lists = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map2) + ->order('f.id desc') + ->group('f.id') + ->page($page_no, $page_size)->select() + ->each(function($item, $key){ + if($item['check_status']<2 && !empty($item['check_admin_ids'])){ + $check_user = Db::name('admin')->where('id','in',$item['check_admin_ids'])->column('name'); + $item['check_admin_users'] = implode(',',$check_user); + } + $item['create_time'] = date('Y-m-d H:i:s',$item['create_time']); + $item['check_status_text'] = match ($item['check_status']){ + 0=>'待审核',1=>'审核中,待开具',2=>'审核通过',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $item['type_text'] = match ($item['type']){ + 1=>'企业',2=>'个人' + }; + $item['invoice_type_text'] = match ($item['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $item['open_time'] = !empty($item['open_time']) ? date('Y-m-d',$item['open_time']) : ''; + $item['open_admin_name'] = Admin::where('id',$item['open_admin_id'])?->value('name'); + return $item; + })->toArray(); + $count = Db::name('oa_invoice') + ->field('f.*,a.name as user_name,d.name as dept_name') + ->alias('f') + ->join('admin a', 'a.id = f.admin_id', 'left') + ->join('dept d', 'd.id = a.dept_id', 'left') + ->where($map2)->count(); + } + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function check(){ + $params = $this->request->post(['id','check','content','check_node','check_admin_ids']); + if(empty($params['id'])){ + return $this->fail('缺少数据主键'); + } + if(empty($params['check']) || !in_array($params['check'],[1,2,3])){ + return $this->fail('审核参数错误'); + } + $data = Db::name('oa_invoice')->where('id',$params['id'])->find(); + if(empty($data)){ + return $this->fail('数据信息不存在'); + } + //撤销 + if($params['check'] == 3){ + if($data['admin_id'] != $this->adminId){ + return $this->fail('你不是该申请的发起者,无权撤销'); + } + //撤销审核,数据操作 + $params['check_status'] = 4; + $params['check_admin_ids'] =''; + $params['check_step_sort'] = 0; + $res = Db::name('oa_invoice')->strict(false)->field('check_step_sort,check_status,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => 0, + 'check_user_id' => $this->adminId, + 'type' => 3, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + }else{ + return $this->fail('fail'); + } + } + //拒绝 + if($params['check'] == 2){ + //当前审核节点详情 + $step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>$data['check_step_sort'],'type'=>3])->find(); + $check_admin_ids = explode(",", strval($data['check_admin_ids'])); + if (!in_array($this->adminId, $check_admin_ids)){ + return $this->fail('您没权限审核该审批'); + } + //拒绝审核,数据操作 + $params['check_status'] = 3; + $params['last_admin_id'] = $this->adminId; + $params['flow_admin_ids'] = $data['flow_admin_ids'].$this->adminId.','; + $params['check_admin_ids'] = ''; + if($step['flow_type'] == 4){ + //获取上一步的审核信息 + $prev_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']-1),'type'=>3])->find(); + if($prev_step){ + //存在上一步审核 + $params['check_step_sort'] = $prev_step['sort']; + $params['check_admin_ids'] = $prev_step['flow_uids']; + $params['check_status'] = 1; + } + else{ + //不存在上一步审核,审核初始化步骤 + $params['check_step_sort'] = 0; + $params['check_admin_ids'] = ''; + $params['check_status'] = 0; + } + } + $res = Db::name('oa_invoice')->strict(false)->field('check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => $step['id'], + 'check_user_id' => $this->adminId, + 'type' => 3, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + } + else{ + return $this->fail('fail'); + } + } + //通过 + if($params['check'] == 1){ + //当前审核节点详情 + $step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>$data['check_step_sort'],'type'=>3])->find(); + $check_admin_ids = explode(",", strval($data['check_admin_ids'])); + if (!in_array($this->adminId, $check_admin_ids)){ + return $this->fail('您没权限审核该审批'); + } + //多人会签审批 + if($step['flow_type'] == 3){ + //查询当前会签记录数 + $check_count = Db::name('oa_flow_record')->where(['action_id'=>$params['id'],'step_id'=>$step['id'],'type'=>3])->count(); + //当前会签记应有记录数 + $flow_count = explode(',', $step['flow_uids']); + if(($check_count+1) >=count($flow_count)){ + $next_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']+1),'type'=>3])->find(); + if($next_step){ + //存在下一步审核 + if($next_step['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$data['admin_id'])->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + }else{ + $params['check_admin_ids'] = $next_step['flow_uids']; + } + $params['check_step_sort'] = $data['check_step_sort']+1; + $params['check_status'] = 1; + }else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + }else{ + $params['check_status'] = 1; + $params['check_admin_ids'] = $step['flow_uids']; + } + }else if($step['flow_type'] == 0){ + //自由人审批 + if($params['check_node'] == 2){ + $next_step = $data['check_step_sort']+1; + $flow_step = array( + 'action_id' => $params['id'], + 'sort' => $next_step, + 'type' => 3, + 'flow_uids' => $params['check_admin_ids'], + 'create_time' => time() + ); + $fid = Db::name('oa_flow_step')->strict(false)->field(true)->insertGetId($flow_step); + //下一步审核步骤 + $params['check_step_sort'] = $next_step; + $params['check_status'] = 1; + } + else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + }else{ + $next_step = Db::name('oa_flow_step')->where(['action_id'=>$params['id'],'sort'=>($data['check_step_sort']+1),'type'=>3])->find(); + if($next_step){ + //存在下一步审核 + if($next_step['flow_type'] == 1){ + //获取部门负责人 + $dept = Admin::where('id',$data['admin_id'])->value('dept_id'); + if(empty($dept)){ + return $this->fail('当前用户未设置部门,请联系管理员'); + } + $leader = Dept::where('id',$dept)->value('leader_id'); + if(empty($leader)){ + return $this->fail('当前部门负责人还未设置,请联系管理员'); + }else{ + $params['check_admin_ids'] = $leader; + } + } + else{ + $params['check_admin_ids'] = $next_step['flow_uids']; + } + $params['check_step_sort'] = $data['check_step_sort']+1; + $params['check_status'] = 1; + } + else{ + //不存在下一步审核,审核结束 + $params['check_status'] = 2; + $params['check_admin_ids'] =''; + } + } + if($params['check_status'] == 1 && empty($params['check_admin_ids'])){ + return $this->fail('找不到下一步的审批人,该审批流程设置有问题,请联系HR或者管理员'); + } + //审核通过数据操作 + $params['last_admin_id'] = $this->adminId; + $params['flow_admin_ids'] = $data['flow_admin_ids'].$this->adminId.','; + $res = Db::name('oa_invoice')->strict(false)->field('check_step_sort,check_status,last_admin_id,flow_admin_ids,check_admin_ids')->update($params); + if($res){ + $checkData=array( + 'action_id' => $params['id'], + 'step_id' => $step['id'], + 'check_user_id' => $this->adminId, + 'type' => 3, + 'check_time' => time(), + 'status' => $params['check'], + 'content' => $params['content'] ?? '', + 'create_time' => time() + ); + Db::name('oa_flow_record')->strict(false)->field(true)->insertGetId($checkData); + return $this->success('ok'); + } + else{ + return $this->fail('fail'); + } + } + return $this->fail(); + } + + public function lists2(){ + $params = $this->request->get(['start_time','end_time','status','page_no','page_size']); + $page_no = !empty($params['page_no']) ? $params['page_no'] : 1; + $page_size = !empty($params['page_size']) ? $params['page_size'] : 15; + $where = []; + if(!empty($params['start_time']) && !empty($params['end_time'])){ + if(strtotime($params['end_time']) <= strtotime($params['start_time'])){ + return $this->fail('结束时间不等小于开始时间'); + } + $where[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + if(!empty($params['status'])){ + $where[] = match ($params['status']){ + '1'=> ['check_status','=',2], //审批通过,待开具 + '2'=> ['check_status','=',5], //审批通过,已开具 + '3'=> [['check_status','=',10]], //已作废 + }; + }else{ + $where[] = ['check_status','in','2,5,10']; + } + $lists = Db::name('oa_invoice')->field('id,type,invoice_title,invoice_subject,amount,invoice_type,check_status,admin_id,create_time,check_admin_ids,open_admin_id,open_time,code,delivery')->where($where) + ->page($page_no, $page_size)->order('id desc')->select()->each(function($data){ + $admin = Admin::field('name,dept_id')->where('id',$data['admin_id'])->findOrEmpty(); + $dept = Dept::where('id',$admin['dept_id'])->value('name'); + $check_admin_users = Admin::where('id','in',$data['check_admin_ids'])->column('name'); + $data['user_name'] = $admin['name']; + $data['dept_name'] = $dept ?? ''; + $data['check_admin_users'] = !empty($check_admin_users) ? implode(',',$check_admin_users) : ''; + $data['create_time'] = date('Y-m-d H:i:s',$data['create_time']); + $data['check_status_text'] = match ($data['check_status']){ + 0=>'待审核',1=>'审核中',2=>'审核通过,待开具',3=>'审核不通过',4=>'撤销审核',5=>'已开具',10=>'已作废' + }; + $data['type_text'] = match ($data['type']){ + 1=>'企业',2=>'个人' + }; + $data['invoice_type_text'] = match ($data['invoice_type']){ + 1=>'增值税专用发票',2=>'普通发票',3=>'专用发票' + }; + $data['open_time'] = !empty($data['open_time']) ? date('Y-m-d',$data['open_time']) : ''; + $data['open_admin_name'] = Admin::where('id',$data['open_admin_id'])?->value('name'); + return $data; + })->toArray(); + $count = Db::name('oa_invoice')->where($where)->count(); + return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size')); + } + + public function invoice(){ + $params = (new InvoiceValidate())->post()->goCheck('invoice'); + $data = Db::name('oa_invoice')->where('id',$params['id'])->find(); + if(empty($data)){ + return $this->success('申请信息不存在'); + } + if($data['check_status'] != 2 && $data['check_status'] != 5 ){ + return $this->success('当前申请未审核通过'); + } + $update_data = [ + 'code' => $params['code'], + 'open_time' => strtotime($params['open_time']), + 'open_admin_id' => $this->adminId, + 'delivery' => $params['delivery'] ?? '', + 'check_status' => 5, + ]; + $res = Db::name('oa_invoice')->where('id',$params['id'])->update($update_data); + return $res ? $this->success('ok') : $this->fail('fail'); + } + + public function voids(){ + $params = (new InvoiceValidate())->post()->goCheck('detail'); + $data = Db::name('oa_invoice')->where('id',$params['id'])->find(); + if(empty($data)){ + return $this->fail('申请信息不存在'); + } + if($data['check_status'] < 5){ + return $this->fail('当前申请未开票'); + } + if($data['is_cash'] > 0){ + return $this->fail('发票已经新增有到账记录,请先反到账后再作废发票'); + } + if($data['check_status']==5){ + $res = Db::name('oa_invoice')->where('id',$params['id'])->update(['check_status'=>10]); + }else{ + $res = Db::name('oa_invoice')->where('id',$params['id'])->update(['check_status'=>5]); + } + return $res ? $this->success('ok') : $this->fail('fail'); + } + } \ No newline at end of file diff --git a/app/oa/controller/works/rcbg/OaPlanController.php b/app/oa/controller/works/rcbg/OaPlanController.php new file mode 100644 index 0000000..64cc42f --- /dev/null +++ b/app/oa/controller/works/rcbg/OaPlanController.php @@ -0,0 +1,115 @@ +dataLists(new OaPlanLists()); + } + + + /** + * @notes 添加日程安排 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function add() + { + $params = (new OaPlanValidate())->post()->goCheck('add'); + $result = OaPlanLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaPlanLogic::getError()); + } + + + /** + * @notes 编辑日程安排 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function edit() + { + $params = (new OaPlanValidate())->post()->goCheck('edit'); + $result = OaPlanLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaPlanLogic::getError()); + } + + + /** + * @notes 删除日程安排 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function delete() + { + $params = (new OaPlanValidate())->post()->goCheck('delete'); + OaPlanLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取日程安排详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function detail() + { + $params = (new OaPlanValidate())->goCheck('detail'); + $result = OaPlanLogic::detail($params); + return $this->data($result); + } + + public function calendar(){ + $params = (new OaPlanValidate())->get()->goCheck('calendar'); + $params['admin_id'] = $this->adminId; + $result = OaPlanLogic::calendar($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rcbg/OaScheduleController.php b/app/oa/controller/works/rcbg/OaScheduleController.php new file mode 100644 index 0000000..1b6ffba --- /dev/null +++ b/app/oa/controller/works/rcbg/OaScheduleController.php @@ -0,0 +1,115 @@ +dataLists(new OaScheduleLists()); + } + + + /** + * @notes 添加工作记录 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function add() + { + $params = (new OaScheduleValidate())->post()->goCheck('add'); + $result = OaScheduleLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaScheduleLogic::getError()); + } + + + /** + * @notes 编辑工作记录 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function edit() + { + $params = (new OaScheduleValidate())->post()->goCheck('edit'); + $result = OaScheduleLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaScheduleLogic::getError()); + } + + + /** + * @notes 删除工作记录 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function delete() + { + $params = (new OaScheduleValidate())->post()->goCheck('delete'); + OaScheduleLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工作记录详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function detail() + { + $params = (new OaScheduleValidate())->goCheck('detail'); + $result = OaScheduleLogic::detail($params); + return $this->data($result); + } + + public function calendar(){ + $params = (new OaScheduleValidate())->get()->goCheck('calendar'); + $params['admin_id'] = $this->adminId; + $result = OaScheduleLogic::calendar($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rcbg/OaWorkCommentController.php b/app/oa/controller/works/rcbg/OaWorkCommentController.php new file mode 100644 index 0000000..ac9f71c --- /dev/null +++ b/app/oa/controller/works/rcbg/OaWorkCommentController.php @@ -0,0 +1,108 @@ +dataLists(new OaWorkCommentLists()); + } + + + /** + * @notes 添加工作汇报点评表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function add() + { + $params = (new OaWorkCommentValidate())->post()->goCheck('add'); + $result = OaWorkCommentLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaWorkCommentLogic::getError()); + } + + + /** + * @notes 编辑工作汇报点评表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function edit() + { + $params = (new OaWorkCommentValidate())->post()->goCheck('edit'); + $result = OaWorkCommentLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaWorkCommentLogic::getError()); + } + + + /** + * @notes 删除工作汇报点评表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function delete() + { + $params = (new OaWorkCommentValidate())->post()->goCheck('delete'); + OaWorkCommentLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取工作汇报点评表详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function detail() + { + $params = (new OaWorkCommentValidate())->goCheck('detail'); + $result = OaWorkCommentLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rcbg/OaWorkController.php b/app/oa/controller/works/rcbg/OaWorkController.php new file mode 100644 index 0000000..5e94cee --- /dev/null +++ b/app/oa/controller/works/rcbg/OaWorkController.php @@ -0,0 +1,111 @@ +dataLists(new OaWorkLists()); + } + + + /** + * @notes 添加工作汇报 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function add() + { + $params = (new OaWorkValidate())->post()->goCheck('add'); + $result = OaWorkLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaWorkLogic::getError()); + } + + + /** + * @notes 编辑工作汇报 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function edit() + { + $params = (new OaWorkValidate())->post()->goCheck('edit'); + $result = OaWorkLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaWorkLogic::getError()); + } + + + /** + * @notes 删除工作汇报 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function delete() + { + $params = (new OaWorkValidate())->post()->goCheck('delete'); + $result = OaWorkLogic::delete($params); + if (true === $result) { + return $this->success('删除成功', [], 1, 1); + } + return $this->fail(OaWorkLogic::getError()); + } + + + /** + * @notes 获取工作汇报详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function detail() + { + $params = (new OaWorkValidate())->goCheck('detail'); + $result = OaWorkLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rcbg/OaWorkRecordController.php b/app/oa/controller/works/rcbg/OaWorkRecordController.php new file mode 100644 index 0000000..6b66bf8 --- /dev/null +++ b/app/oa/controller/works/rcbg/OaWorkRecordController.php @@ -0,0 +1,108 @@ +dataLists(new OaWorkRecordLists()); + } + + + /** + * @notes 添加汇报工作发送记录表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function add() + { + $params = (new OaWorkRecordValidate())->post()->goCheck('add'); + $result = OaWorkRecordLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaWorkRecordLogic::getError()); + } + + + /** + * @notes 编辑汇报工作发送记录表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function edit() + { + $params = (new OaWorkRecordValidate())->post()->goCheck('edit'); + $result = OaWorkRecordLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaWorkRecordLogic::getError()); + } + + + /** + * @notes 删除汇报工作发送记录表 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function delete() + { + $params = (new OaWorkRecordValidate())->post()->goCheck('delete'); + OaWorkRecordLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取汇报工作发送记录表详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function detail() + { + $params = (new OaWorkRecordValidate())->goCheck('detail'); + $result = OaWorkRecordLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rlzy/OaAdminController.php b/app/oa/controller/works/rlzy/OaAdminController.php new file mode 100644 index 0000000..6dfecdf --- /dev/null +++ b/app/oa/controller/works/rlzy/OaAdminController.php @@ -0,0 +1,111 @@ +dataLists(new OaAdminLists()); + } + + + /** + * @notes 添加企业员工 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function add() + { + $params = (new OaAdminValidate())->post()->goCheck('add'); + $result = OaAdminLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaAdminLogic::getError()); + } + + + /** + * @notes 编辑企业员工 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function edit() + { + $params = (new OaAdminValidate())->post()->goCheck('edit'); + $result = OaAdminLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaAdminLogic::getError()); + } + + + /** + * @notes 删除企业员工 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function delete() + { + $params = (new OaAdminValidate())->post()->goCheck('delete'); + $result = OaAdminLogic::delete($params); + if (true === $result) { + return $this->success('删除成功', [], 1, 1); + } + return $this->fail(OaAdminLogic::getError()); + } + + + /** + * @notes 获取企业员工详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function detail() + { + $params = (new OaAdminValidate())->goCheck('detail'); + $result = OaAdminLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rlzy/OaDepartmentChangeController.php b/app/oa/controller/works/rlzy/OaDepartmentChangeController.php new file mode 100644 index 0000000..12fa6b3 --- /dev/null +++ b/app/oa/controller/works/rlzy/OaDepartmentChangeController.php @@ -0,0 +1,108 @@ +dataLists(new OaDepartmentChangeLists()); + } + + + /** + * @notes 添加人事调动 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function add() + { + $params = (new OaDepartmentChangeValidate())->post()->goCheck('add'); + $result = OaDepartmentChangeLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaDepartmentChangeLogic::getError()); + } + + + /** + * @notes 编辑人事调动 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function edit() + { + $params = (new OaDepartmentChangeValidate())->post()->goCheck('edit'); + $result = OaDepartmentChangeLogic::edit($params,$this->adminId); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaDepartmentChangeLogic::getError()); + } + + + /** + * @notes 删除人事调动 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function delete() + { + $params = (new OaDepartmentChangeValidate())->post()->goCheck('delete'); + OaDepartmentChangeLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取人事调动详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function detail() + { + $params = (new OaDepartmentChangeValidate())->goCheck('detail'); + $result = OaDepartmentChangeLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/rlzy/OaPersonalQuitController.php b/app/oa/controller/works/rlzy/OaPersonalQuitController.php new file mode 100644 index 0000000..3b4408b --- /dev/null +++ b/app/oa/controller/works/rlzy/OaPersonalQuitController.php @@ -0,0 +1,108 @@ +dataLists(new OaPersonalQuitLists()); + } + + + /** + * @notes 添加离职档案 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function add() + { + $params = (new OaPersonalQuitValidate())->post()->goCheck('add'); + $result = OaPersonalQuitLogic::add($params,$this->adminId); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaPersonalQuitLogic::getError()); + } + + + /** + * @notes 编辑离职档案 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function edit() + { + $params = (new OaPersonalQuitValidate())->post()->goCheck('edit'); + $result = OaPersonalQuitLogic::edit($params,$this->adminId); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaPersonalQuitLogic::getError()); + } + + + /** + * @notes 删除离职档案 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function delete() + { + $params = (new OaPersonalQuitValidate())->post()->goCheck('delete'); + OaPersonalQuitLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取离职档案详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function detail() + { + $params = (new OaPersonalQuitValidate())->goCheck('detail'); + $result = OaPersonalQuitLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/xzgl/OaCarCateController.php b/app/oa/controller/works/xzgl/OaCarCateController.php new file mode 100644 index 0000000..00fff3b --- /dev/null +++ b/app/oa/controller/works/xzgl/OaCarCateController.php @@ -0,0 +1,108 @@ +dataLists(new OaCarCateLists()); + } + + + /** + * @notes 添加车辆管理 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function add() + { + $params = (new OaCarCateValidate())->post()->goCheck('add'); + $result = OaCarCateLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaCarCateLogic::getError()); + } + + + /** + * @notes 编辑车辆管理 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function edit() + { + $params = (new OaCarCateValidate())->post()->goCheck('edit'); + $result = OaCarCateLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaCarCateLogic::getError()); + } + + + /** + * @notes 删除车辆管理 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function delete() + { + $params = (new OaCarCateValidate())->post()->goCheck('delete'); + OaCarCateLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取车辆管理详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function detail() + { + $params = (new OaCarCateValidate())->goCheck('detail'); + $result = OaCarCateLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/xzgl/OaMeetingCateController.php b/app/oa/controller/works/xzgl/OaMeetingCateController.php new file mode 100644 index 0000000..d2d674e --- /dev/null +++ b/app/oa/controller/works/xzgl/OaMeetingCateController.php @@ -0,0 +1,108 @@ +dataLists(new OaMeetingCateLists()); + } + + + /** + * @notes 添加会议室管理 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function add() + { + $params = (new OaMeetingCateValidate())->post()->goCheck('add'); + $result = OaMeetingCateLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaMeetingCateLogic::getError()); + } + + + /** + * @notes 编辑会议室管理 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function edit() + { + $params = (new OaMeetingCateValidate())->post()->goCheck('edit'); + $result = OaMeetingCateLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaMeetingCateLogic::getError()); + } + + + /** + * @notes 删除会议室管理 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function delete() + { + $params = (new OaMeetingCateValidate())->post()->goCheck('delete'); + OaMeetingCateLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取会议室管理详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function detail() + { + $params = (new OaMeetingCateValidate())->goCheck('detail'); + $result = OaMeetingCateLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/controller/works/xzgl/OaSealCateController.php b/app/oa/controller/works/xzgl/OaSealCateController.php new file mode 100644 index 0000000..3937cc1 --- /dev/null +++ b/app/oa/controller/works/xzgl/OaSealCateController.php @@ -0,0 +1,108 @@ +dataLists(new OaSealCateLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function add() + { + $params = (new OaSealCateValidate())->post()->goCheck('add'); + $result = OaSealCateLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(OaSealCateLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function edit() + { + $params = (new OaSealCateValidate())->post()->goCheck('edit'); + $result = OaSealCateLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(OaSealCateLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function delete() + { + $params = (new OaSealCateValidate())->post()->goCheck('delete'); + OaSealCateLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function detail() + { + $params = (new OaSealCateValidate())->goCheck('detail'); + $result = OaSealCateLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/oa/http/middleware/InitMiddleware.php b/app/oa/http/middleware/InitMiddleware.php new file mode 100644 index 0000000..25af0db --- /dev/null +++ b/app/oa/http/middleware/InitMiddleware.php @@ -0,0 +1,48 @@ +controller); + $controllerClass = new $controller; + if (($controllerClass instanceof BaseApiController) === false) { + throw new ControllerExtendException($controller, '404'); + } + } catch (ClassNotFoundException $e) { + throw new HttpException(404, 'controller not exists:' . $e->getClass()); + } + + //创建控制器对象 + $request->controllerObject = new $controller; + return $handler($request); + } + +} \ No newline at end of file diff --git a/app/oa/http/middleware/LoginMiddleware.php b/app/oa/http/middleware/LoginMiddleware.php new file mode 100644 index 0000000..433947f --- /dev/null +++ b/app/oa/http/middleware/LoginMiddleware.php @@ -0,0 +1,62 @@ +header('token'); + //判断接口是否免登录 + $isNotNeedLogin = $request->controllerObject->isNotNeedLogin(); + + //不直接判断$isNotNeedLogin结果,使不需要登录的接口通过,为了兼容某些接口可以登录或不登录访问 + if (empty($token) && !$isNotNeedLogin) { + //没有token并且该地址需要登录才能访问, 指定show为0,前端不弹出此报错 + return JsonService::fail('请求参数缺token', [], 0, 1); + } + + $userInfo = (new UserTokenCache())->getUserInfo($token); + + if (empty($userInfo) && !$isNotNeedLogin) { + //token过期无效并且该地址需要登录才能访问 + return JsonService::fail('登录超时,请重新登录', [], -1, 0); + } + //token临近过期,自动续期 + if ($userInfo) { + //获取临近过期自动续期时长 + $beExpireDuration = Config::get('project.user_token.be_expire_duration'); + //token续期 + if (time() > ($userInfo['expire_time'] - $beExpireDuration)) { + $result = UserTokenService::overtimeToken($token); + //续期失败(数据表被删除导致) + if (empty($result)) { + return JsonService::fail('登录过期', [], -1); + } + } + } + + //给request赋值,用于控制器 + $request->userInfo = $userInfo; + $request->userId = $userInfo['user_id'] ?? 0; + + return $handler($request); + } + +} \ No newline at end of file diff --git a/app/oa/lists/BaseAdminDataLists.php b/app/oa/lists/BaseAdminDataLists.php new file mode 100644 index 0000000..471af3c --- /dev/null +++ b/app/oa/lists/BaseAdminDataLists.php @@ -0,0 +1,39 @@ +adminInfo = $this->request->adminInfo; + $this->adminId = $this->request->adminId; + } + + +} \ No newline at end of file diff --git a/app/oa/lists/works/OaMessageLists.php b/app/oa/lists/works/OaMessageLists.php new file mode 100644 index 0000000..dc43024 --- /dev/null +++ b/app/oa/lists/works/OaMessageLists.php @@ -0,0 +1,83 @@ + ['title'], + ]; + } + + + /** + * @notes 获取系统消息列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function lists(): array + { + $params = $this->request->get(['start_time','end_time']); + if(!empty($params['start_time']) && !empty($params['end_time'])){ + $this->where[] = ['create_time','between',[strtotime($params['start_time']),strtotime($params['end_time'])]]; + } + return OaMessage::where($this->searchWhere)->where($this->where)->where('to_uid',$this->adminId) + ->field(['id', 'title', 'content', 'read_time', 'create_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['is_read'] = empty($data['read_time']) ? '未读' : '已读'; + }) + ->toArray(); + } + + + /** + * @notes 获取系统消息数量 + * @return int + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function count(): int + { + return OaMessage::where($this->searchWhere)->where($this->where)->where('to_uid',$this->adminId)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/bgsp/OaFlowLists.php b/app/oa/lists/works/bgsp/OaFlowLists.php new file mode 100644 index 0000000..2b09e72 --- /dev/null +++ b/app/oa/lists/works/bgsp/OaFlowLists.php @@ -0,0 +1,97 @@ + ['check_type', 'type','flow_cate'], + '%like%' => ['name'], + ]; + } + + + /** + * @notes 获取审批流程列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function lists(): array + { + return OaFlow::where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['type_text'] = $data->type_text; + $data['check_type_text'] = $data->check_type_text; + $flow_cate = OaFlowType::where('id',$data['flow_cate'])->findOrEmpty(); + $data['flow_cate_name'] = $flow_cate['title']; + if(!empty($data['department_ids'])){ + $dept = Dept::where('id','in',$data['department_ids'])->column('name'); + $data['department_names'] = implode(',',$dept); + }else{ + $data['department_names'] = '全公司'; + } + if(!empty($data['copy_uids'])){ + $copy_user = Admin::where('id','in',$data['copy_uids'])->column('name'); + $data['copy_user_names'] = implode(',',$copy_user); + }else{ + $data['copy_user_names'] = ''; + } + }) + ->toArray(); + } + + + /** + * @notes 获取审批流程数量 + * @return int + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function count(): int + { + return OaFlow::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/bgsp/OaFlowTypeLists.php b/app/oa/lists/works/bgsp/OaFlowTypeLists.php new file mode 100644 index 0000000..1724a8b --- /dev/null +++ b/app/oa/lists/works/bgsp/OaFlowTypeLists.php @@ -0,0 +1,86 @@ + ['type'], + '%like%' => ['title', 'name'], + ]; + } + + + /** + * @notes 获取审批类型列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function lists(): array + { + return OaFlowType::where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + if(!empty($data['department_ids'])){ + $dept = Dept::where('id','in',$data['department_ids'])->column('name'); + $data['department_names'] = implode(',',$dept); + }else{ + $data['department_names'] = '全公司'; + } + $data['type_text'] = $data->type_text; + }) + ->toArray(); + } + + + /** + * @notes 获取审批类型数量 + * @return int + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function count(): int + { + return OaFlowType::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rcbg/OaPlanLists.php b/app/oa/lists/works/rcbg/OaPlanLists.php new file mode 100644 index 0000000..d5b8d25 --- /dev/null +++ b/app/oa/lists/works/rcbg/OaPlanLists.php @@ -0,0 +1,79 @@ + ['title', 'type'], + ]; + } + + + /** + * @notes 获取日程安排列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function lists(): array + { + return OaPlan::where($this->searchWhere)->where('admin_id',$this->adminId) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['type_text'] = $data->type_text; + $data['remind_type_text'] = $data->remind_type_text; + }) + ->toArray(); + } + + + /** + * @notes 获取日程安排数量 + * @return int + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function count(): int + { + return OaPlan::where($this->searchWhere)->where('admin_id',$this->adminId)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rcbg/OaScheduleLists.php b/app/oa/lists/works/rcbg/OaScheduleLists.php new file mode 100644 index 0000000..80f2500 --- /dev/null +++ b/app/oa/lists/works/rcbg/OaScheduleLists.php @@ -0,0 +1,80 @@ + ['labor_type','cid'], + '%like%' => ['title'], + ]; + } + + + /** + * @notes 获取工作记录列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function lists(): array + { + return OaSchedule::where($this->searchWhere)->where('admin_id',$this->adminId) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['cid_text'] = $data->cid_text; + $data['labor_type_text'] = $data->labor_type_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工作记录数量 + * @return int + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function count(): int + { + return OaSchedule::where($this->searchWhere)->where('admin_id',$this->adminId)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rcbg/OaWorkCommentLists.php b/app/oa/lists/works/rcbg/OaWorkCommentLists.php new file mode 100644 index 0000000..e374ddc --- /dev/null +++ b/app/oa/lists/works/rcbg/OaWorkCommentLists.php @@ -0,0 +1,82 @@ + ['work_id'] + ]; + } + + + /** + * @notes 获取工作汇报点评表列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function lists(): array + { + return OaWorkComment::where($this->searchWhere) + ->field(['id', 'work_id', 'admin_id', 'content','create_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $user = Admin::field('name,avatar')->where('id',$data['admin_id'])->findOrEmpty(); + $data['admin_name'] = $user['name']; + $data['admin_avatar'] = $user['avatar']; + }) + ->toArray(); + } + + + /** + * @notes 获取工作汇报点评表数量 + * @return int + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function count(): int + { + return OaWorkComment::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rcbg/OaWorkLists.php b/app/oa/lists/works/rcbg/OaWorkLists.php new file mode 100644 index 0000000..5a9a955 --- /dev/null +++ b/app/oa/lists/works/rcbg/OaWorkLists.php @@ -0,0 +1,81 @@ + ['type'], + ]; + } + + + /** + * @notes 获取工作汇报列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function lists(): array + { + return OaWork::where($this->searchWhere)->where('admin_id',$this->adminId) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $type_user = Admin::where('id','in',$data['type_user'])->column('name'); + $data['type_user_names'] = implode(',',$type_user); + $data['type_text'] = $data->type_text; + }) + ->toArray(); + } + + + /** + * @notes 获取工作汇报数量 + * @return int + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function count(): int + { + return OaWork::where($this->searchWhere)->where('admin_id',$this->adminId)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rcbg/OaWorkRecordLists.php b/app/oa/lists/works/rcbg/OaWorkRecordLists.php new file mode 100644 index 0000000..153edae --- /dev/null +++ b/app/oa/lists/works/rcbg/OaWorkRecordLists.php @@ -0,0 +1,85 @@ +searchWhere)->where('to_uid',$this->adminId) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $work = OaWork::field('type,works')->where('id',$data['wid'])->findOrEmpty(); + $data['type_text'] = $work->type_text; + $data['works'] = $work['works']; + $from_user = Admin::field('name')->where('id',$data['from_uid'])->findOrEmpty(); + $data['from_user_name'] = $from_user['name'] ?? ''; + $data['is_read'] = !empty($data['read_time']) ? '已读' : '未读'; + }) + ->toArray(); + } + + + /** + * @notes 获取汇报工作发送记录表数量 + * @return int + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function count(): int + { + return OaWorkRecord::where($this->searchWhere)->where('to_uid',$this->adminId)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rlzy/OaAdminLists.php b/app/oa/lists/works/rlzy/OaAdminLists.php new file mode 100644 index 0000000..2be22e9 --- /dev/null +++ b/app/oa/lists/works/rlzy/OaAdminLists.php @@ -0,0 +1,90 @@ + ['sex', 'org_id', 'dept_id', 'job_id', 'type', 'status'], + '%like%' => ['name', 'mobile'], + ]; + } + + + /** + * @notes 获取企业员工列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function lists(): array + { + return OaAdmin::where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['sex_text'] = $data->sex_text; + $data['type_text'] = $data->type_text; + $data['status_text'] = $data->status_text; + $org = Orgs::field('name')->where('id',$data['org_id'])->findOrEmpty(); + $dept = Dept::field('name')->where('id',$data['dept_id'])->findOrEmpty(); + $job = Jobs::field('name')->where('id',$data['job_id'])->findOrEmpty(); + $data['org_name'] = !$org->isEmpty() ? $org['name'] : ''; + $data['dept_name'] = !$dept->isEmpty() ? $dept['name'] : ''; + $data['job_name'] = !$job->isEmpty() ? $job['name'] : ''; + }) + ->toArray(); + } + + + /** + * @notes 获取企业员工数量 + * @return int + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function count(): int + { + return OaAdmin::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rlzy/OaDepartmentChangeLists.php b/app/oa/lists/works/rlzy/OaDepartmentChangeLists.php new file mode 100644 index 0000000..39af0a3 --- /dev/null +++ b/app/oa/lists/works/rlzy/OaDepartmentChangeLists.php @@ -0,0 +1,82 @@ + ['uid', 'from_did', 'to_did', 'status', 'move_time'], + ]; + } + + + /** + * @notes 获取人事调动列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function lists(): array + { + return OaDepartmentChange::where($this->searchWhere) + ->field(['id', 'uid', 'from_did', 'to_did', 'remark', 'admin_id', 'status', 'move_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['user_name'] = $data->user_name; + $data['from_dept'] = $data->from_dept; + $data['to_dept'] = $data->to_dept; + $data['status_text'] = $data->status_text; + }) + ->toArray(); + } + + + /** + * @notes 获取人事调动数量 + * @return int + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function count(): int + { + return OaDepartmentChange::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/rlzy/OaPersonalQuitLists.php b/app/oa/lists/works/rlzy/OaPersonalQuitLists.php new file mode 100644 index 0000000..5c2222d --- /dev/null +++ b/app/oa/lists/works/rlzy/OaPersonalQuitLists.php @@ -0,0 +1,85 @@ + ['uid', 'lead_admin_id', 'connect_id', 'quit_time'], + ]; + } + + + /** + * @notes 获取离职档案列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function lists(): array + { + return OaPersonalQuit::where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $user = Admin::where('id',$data['uid'])->findOrEmpty(); + $other_user = Admin::where('id','in',[$data['lead_admin_id'],$data['connect_id']])->column('name','id'); + $connect_users = Admin::where('id','in',$data['connect_uids'])->column('name'); + $data['user_name'] = $user['name']; + $data['lead_admin_name'] = $other_user[$data['lead_admin_id']] ?? ''; + $data['connect_user_name'] = $other_user[$data['connect_id']] ?? ''; + $data['connect_users'] = implode(',',$connect_users); + }) + ->toArray(); + } + + + /** + * @notes 获取离职档案数量 + * @return int + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function count(): int + { + return OaPersonalQuit::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/xzgl/OaCarCateLists.php b/app/oa/lists/works/xzgl/OaCarCateLists.php new file mode 100644 index 0000000..04e1c8b --- /dev/null +++ b/app/oa/lists/works/xzgl/OaCarCateLists.php @@ -0,0 +1,80 @@ + ['status'], + '%like%' => ['title', 'name'], + ]; + } + + + /** + * @notes 获取车辆管理列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function lists(): array + { + return OaCarCate::where($this->searchWhere) + ->field(['id', 'title', 'name', 'status']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['status_text'] = $data->status_text; + }) + ->toArray(); + } + + + /** + * @notes 获取车辆管理数量 + * @return int + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function count(): int + { + return OaCarCate::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/xzgl/OaMeetingCateLists.php b/app/oa/lists/works/xzgl/OaMeetingCateLists.php new file mode 100644 index 0000000..098cf47 --- /dev/null +++ b/app/oa/lists/works/xzgl/OaMeetingCateLists.php @@ -0,0 +1,80 @@ + ['status'], + '%like%' => ['title'], + ]; + } + + + /** + * @notes 获取会议室管理列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function lists(): array + { + return OaMeetingCate::where($this->searchWhere) + ->field(['id', 'title', 'status']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['status_text'] = $data->status_text; + }) + ->toArray(); + } + + + /** + * @notes 获取会议室管理数量 + * @return int + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function count(): int + { + return OaMeetingCate::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/lists/works/xzgl/OaSealCateLists.php b/app/oa/lists/works/xzgl/OaSealCateLists.php new file mode 100644 index 0000000..fbe8204 --- /dev/null +++ b/app/oa/lists/works/xzgl/OaSealCateLists.php @@ -0,0 +1,80 @@ + ['status'], + '%like%' => ['title'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function lists(): array + { + return OaSealCate::where($this->searchWhere) + ->field(['id', 'title', 'status']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function($data){ + $data['status_text'] = $data->status_text; + }) + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function count(): int + { + return OaSealCate::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/oa/logic/works/OaMessageLogic.php b/app/oa/logic/works/OaMessageLogic.php new file mode 100644 index 0000000..cdfc1a8 --- /dev/null +++ b/app/oa/logic/works/OaMessageLogic.php @@ -0,0 +1,121 @@ + $params['title'], + 'content' => $params['content'], + 'from_uid' => $params['from_uid'], + 'to_uid' => $params['to_uid'], + 'read_time' => $params['read_time'], + 'create_time' => $params['create_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/05/29 14:04 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaMessage::where('id', $params['id'])->update([ + 'title' => $params['title'], + 'content' => $params['content'], + 'from_uid' => $params['from_uid'], + 'to_uid' => $params['to_uid'], + 'read_time' => $params['read_time'], + 'create_time' => $params['create_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/05/29 14:04 + */ + public static function delete(array $params): bool + { + return OaMessage::destroy($params['id']); + } + + + /** + * @notes 获取系统消息详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public static function detail($params): array + { + $data = OaMessage::findOrEmpty($params['id']); + $data['to_user_name'] = Admin::where('id',$data['to_uid'])->value('name'); + OaMessage::where('id',$params['id'])->update(['read_time'=>time()]); + return $data->toArray(); + } + +} \ No newline at end of file diff --git a/app/oa/logic/works/bgsp/OaFlowLogic.php b/app/oa/logic/works/bgsp/OaFlowLogic.php new file mode 100644 index 0000000..7d143f4 --- /dev/null +++ b/app/oa/logic/works/bgsp/OaFlowLogic.php @@ -0,0 +1,186 @@ + $params['name'], + 'check_type' => $params['check_type'], + 'type' => $params['type'], + 'flow_cate' => $params['flow_cate'], + 'department_ids' => $params['department_ids'] ?? '', + 'copy_uids' => $params['copy_uids'] ?? '', + 'remark' => $params['remark'] ?? '', + 'flow_list' => !empty($params['flow_list']) ? serialize($params['flow_list']) : '' + ]); + + 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/05/24 14:16 + */ + public static function edit(array $params): bool + { + if($params['check_type'] == 3){ + $flow_list = $params['flow_list']; + foreach($flow_list as &$v){ + $v['flow_type'] = 4; + } + $params['flow_list'] = $flow_list; + } + if($params['check_type'] == 2){ + $params['flow_list'] = ''; + } + if($params['check_type'] == 1){ + $flow_list = $params['flow_list']; + foreach($flow_list as &$v){ + unset($v['flow_name']); + } + $params['flow_list'] = $flow_list; + } + Db::startTrans(); + try { + OaFlow::where('id', $params['id'])->update([ + 'name' => $params['name'], + 'check_type' => $params['check_type'], + 'type' => $params['type'], + 'flow_cate' => $params['flow_cate'], + 'department_ids' => $params['department_ids'] ?? '', + 'copy_uids' => $params['copy_uids'] ?? '', + 'remark' => $params['remark'] ?? '', + 'flow_list' => !empty($params['flow_list']) ? serialize($params['flow_list']) : '' + ]); + + 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/05/24 14:16 + */ + public static function delete(array $params): bool + { + return OaFlow::destroy($params['id']); + } + + + /** + * @notes 获取审批流程详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public static function detail($params): array + { + $data = OaFlow::findOrEmpty($params['id']); + $data['type_text'] = $data->type_text; + $data['check_type_text'] = $data->check_type_text; + $flow_cate = OaFlowType::where('id',$data['flow_cate'])->findOrEmpty(); + $data['flow_cate_name'] = $flow_cate['title']; + if(!empty($data['department_ids'])){ + $dept = Dept::where('id','in',$data['department_ids'])->column('name'); + $data['department_names'] = implode(',',$dept); + }else{ + $data['department_names'] = '全公司'; + } + if(!empty($data['copy_uids'])){ + $copy_user = Admin::where('id','in',$data['copy_uids'])->column('name'); + $data['copy_user_names'] = implode(',',$copy_user); + }else{ + $data['copy_user_names'] = ''; + } + $flow_list = unserialize($data['flow_list']); + if(!empty($flow_list)){ + foreach ($flow_list as &$v){ + if(!empty($v['flow_uids'])){ + $flow_users = Admin::where('id','in',$v['flow_uids'])->column('name'); + $v['flow_user_names'] = implode(',',$flow_users); + }else{ + $v['flow_user_names'] = ''; + } + } + } + $data['flow_list'] = $flow_list ?? ''; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/bgsp/OaFlowTypeLogic.php b/app/oa/logic/works/bgsp/OaFlowTypeLogic.php new file mode 100644 index 0000000..f157f62 --- /dev/null +++ b/app/oa/logic/works/bgsp/OaFlowTypeLogic.php @@ -0,0 +1,149 @@ + $params['type'], + 'title' => $params['title'], + 'name' => $params['name'], + 'icon' => $params['icon'] ?? '', + 'department_ids' => $params['department_ids'] ?? '', + 'data' => !empty($params['data']) ? json_encode($params['data']) : 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/05/24 13:34 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaFlowType::where('id', $params['id'])->update([ + 'type' => $params['type'], + 'title' => $params['title'], + 'name' => $params['name'], + 'icon' => $params['icon'] ?? '', + 'department_ids' => $params['department_ids'] ?? '', + 'data' => !empty($params['data']) ? json_encode($params['data']) : 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/05/24 13:34 + */ + public static function delete(array $params): bool + { + Db::startTrans(); + try { + OaFlowType::destroy($params['id']); + OaFlow::destroy(function($query)use($params){ + $query->where('flow_cate','=',$params['id']); + }); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + + } + + + /** + * @notes 获取审批类型详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public static function detail($params): array + { + $data = OaFlowType::findOrEmpty($params['id']); + if(!empty($data['department_ids'])){ + $dept = Dept::where('id','in',$data['department_ids'])->column('name'); + $data['department_names'] = implode(',',$dept); + }else{ + $data['department_names'] = '全公司'; + } + $data['type_text'] = $data->type_text; + $data['data'] = !empty($data['data']) ? json_decode($data['data'],true) : []; + return $data->toArray(); + } + + public static function all(): array + { + $data = DictData::field('name,value')->where('type_value', 'oa_approve_cate')->select()->each(function($data){ + $data['children'] = OaFlowType::field('id,title,icon')->where('type',$data['value'])->select()->toArray(); + })->toArray(); + return $data; + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rcbg/OaPlanLogic.php b/app/oa/logic/works/rcbg/OaPlanLogic.php new file mode 100644 index 0000000..3df2aa3 --- /dev/null +++ b/app/oa/logic/works/rcbg/OaPlanLogic.php @@ -0,0 +1,185 @@ + $params['title'], + 'type' => $params['type'], + 'start_time' => $start_time, + 'end_time' => $end_time, + 'remind_type' => $params['remind_type'], + 'remind_time' => $remind_time, + 'remark' => $params['remark'] ?? '', + 'admin_id' => $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/05/23 11:53 + */ + public static function edit(array $params): bool + { + $start_time = strtotime($params['start_time']); + $end_time = strtotime($params['end_time']); + $remind_time = 0; + if (isset($params['remind_type'])) { + if($params['remind_type']==1){ + $remind_time = $start_time-5*60; + } + if($params['remind_type']==2){ + $remind_time = $start_time-15*60; + } + if($params['remind_type']==3){ + $remind_time = $start_time-30*60; + } + if($params['remind_type']==4){ + $remind_time = $start_time-60*60; + } + if($params['remind_type']==5){ + $remind_time = $start_time-120*60; + } + if($params['remind_type']==6){ + $remind_time = $start_time-1440*60; + } + } + Db::startTrans(); + try { + OaPlan::where('id', $params['id'])->update([ + 'title' => $params['title'], + 'type' => $params['type'], + 'start_time' => $start_time, + 'end_time' => $end_time, + 'remind_type' => $params['remind_type'], + 'remind_time' => $remind_time, + 'remark' => $params['remark'] ?? '' + ]); + + 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/05/23 11:53 + */ + public static function delete(array $params): bool + { + return OaPlan::destroy($params['id']); + } + + + /** + * @notes 获取日程安排详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public static function detail($params): array + { + $data = OaPlan::findOrEmpty($params['id']); + $data['type_text'] = $data->type_text; + $data['remind_type_text'] = $data->remind_type_text; + return $data->toArray(); + } + + /** + * @notes 获取日程安排日历 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public static function calendar($params){ + $where[] = [ + ['admin_id','=',$params['admin_id']], + ['start_time','>=',strtotime($params['start_time'])], + ['end_time','<=',strtotime($params['end_time'])] + ]; + $data = OaPlan::where($where)->select()->toArray(); + return $data; + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rcbg/OaScheduleLogic.php b/app/oa/logic/works/rcbg/OaScheduleLogic.php new file mode 100644 index 0000000..a4757eb --- /dev/null +++ b/app/oa/logic/works/rcbg/OaScheduleLogic.php @@ -0,0 +1,139 @@ + $params['title'], + 'start_time' => strtotime($params['start_time']), + 'end_time' => strtotime($params['end_time']), + 'labor_time' => (strtotime($params['end_time']) - strtotime($params['start_time'])) / 3600, + 'labor_type' => $params['labor_type'], + 'cid' => $params['cid'], + 'remark' => $params['remark'] ?? '', + 'admin_id' => $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/05/23 14:27 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaSchedule::where('id', $params['id'])->update([ + 'title' => $params['title'], + 'start_time' => strtotime($params['start_time']), + 'end_time' => strtotime($params['end_time']), + 'labor_time' => (strtotime($params['end_time']) - strtotime($params['start_time'])) / 3600, + 'labor_type' => $params['labor_type'], + 'cid' => $params['cid'], + 'remark' => $params['remark'] ?? '' + ]); + + 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/05/23 14:27 + */ + public static function delete(array $params): bool + { + return OaSchedule::destroy($params['id']); + } + + + /** + * @notes 获取工作记录详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public static function detail($params): array + { + $data = OaSchedule::findOrEmpty($params['id']); + $data['cid_text'] = $data->cid_text; + $data['labor_type_text'] = $data->labor_type_text; + return $data->toArray(); + } + + /** + * @notes 获取工作记录日历 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public static function calendar($params){ + $where[] = [ + ['admin_id','=',$params['admin_id']], + ['start_time','>=',strtotime($params['start_time'])], + ['end_time','<=',strtotime($params['end_time'])] + ]; + $data = OaSchedule::where($where)->select()->toArray(); + return $data; + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rcbg/OaWorkCommentLogic.php b/app/oa/logic/works/rcbg/OaWorkCommentLogic.php new file mode 100644 index 0000000..d8711ca --- /dev/null +++ b/app/oa/logic/works/rcbg/OaWorkCommentLogic.php @@ -0,0 +1,109 @@ + $params['work_id'], + 'admin_id' => $admin_id, + 'content' => $params['content'] + ]); + + 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/05/23 17:39 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaWorkComment::where('id', $params['id'])->update([ + 'work_id' => $params['work_id'], + 'content' => $params['content'] + ]); + + 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/05/23 17:39 + */ + public static function delete(array $params): bool + { + return OaWorkComment::destroy($params['id']); + } + + + /** + * @notes 获取工作汇报点评表详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public static function detail($params): array + { + return OaWorkComment::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rcbg/OaWorkLogic.php b/app/oa/logic/works/rcbg/OaWorkLogic.php new file mode 100644 index 0000000..7e95738 --- /dev/null +++ b/app/oa/logic/works/rcbg/OaWorkLogic.php @@ -0,0 +1,150 @@ + $params['type'], + 'type_user' => $params['type_user'], + 'works' => $params['works'], + 'plans' => $params['plans'] ?? '', + 'remark' => $params['remark'] ?? '', + 'admin_id' => $admin_id, + 'annex' => $params['annex'] ? json_encode($params['annex']) : null, + ]); + $data = []; + $to_users = explode(',',$params['type_user']); + foreach ($to_users as $v){ + $data[] = [ + 'wid' => $res['id'], + 'from_uid' => $admin_id, + 'to_uid' => $v, + 'send_time' => time(), + 'read_time' => 0 + ]; + } + (new OaWorkRecord()) -> saveAll($data); + 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/05/23 15:56 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaWork::where('id', $params['id'])->update([ + 'type' => $params['type'], + 'works' => $params['works'], + 'plans' => $params['plans'] ?? '', + 'remark' => $params['remark'] ?? '', + 'annex' => $params['annex'] ? json_encode($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/05/23 15:56 + */ + public static function delete(array $params): bool + { + Db::startTrans(); + try { + OaWork::destroy($params['id']); + OaWorkRecord::destroy(function($query)use($params){ + $query->where('wid','=',$params['id']); + }); + OaWorkComment::destroy(function($query)use($params){ + $query->where('work_id','=',$params['id']); + }); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + + } + + + /** + * @notes 获取工作汇报详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public static function detail($params): array + { + $data = OaWork::findOrEmpty($params['id']); + $type_user = Admin::where('id','in',$data['type_user'])->column('name'); + $data['type_user_names'] = implode(',',$type_user); + $data['type_text'] = $data->type_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rcbg/OaWorkRecordLogic.php b/app/oa/logic/works/rcbg/OaWorkRecordLogic.php new file mode 100644 index 0000000..d82475c --- /dev/null +++ b/app/oa/logic/works/rcbg/OaWorkRecordLogic.php @@ -0,0 +1,125 @@ + $params['wid'], + 'from_uid' => $params['from_uid'], + 'to_uid' => $params['to_uid'], + 'send_time' => $params['send_time'], + 'read_time' => $params['read_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/05/23 16:48 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaWorkRecord::where('id', $params['id'])->update([ + 'wid' => $params['wid'], + 'from_uid' => $params['from_uid'], + 'to_uid' => $params['to_uid'], + 'send_time' => $params['send_time'], + 'read_time' => $params['read_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/05/23 16:48 + */ + public static function delete(array $params): bool + { + return OaWorkRecord::destroy($params['id']); + } + + + /** + * @notes 获取汇报工作发送记录表详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public static function detail($params): array + { + $data = OaWorkRecord::findOrEmpty($params['id']); + $work = OaWork::field('type,type_user,works,plans,remark,annex')->where('id',$data['wid'])->findOrEmpty(); + $type_user = Admin::where('id','in',$work['type_user'])->column('name'); + $work['type_user_names'] = implode(',',$type_user); + $work['type_text'] = $work->type_text; + $data['work_info'] = $work->toArray(); + $from_user = Admin::field('name')->where('id',$data['from_uid'])->findOrEmpty(); + $data['from_user_name'] = $from_user['name'] ?? ''; + if(!empty($data['read_time'])){ + OaWorkRecord::where('id',$params)->update(['read_time'=>time()]); + } + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rlzy/OaAdminLogic.php b/app/oa/logic/works/rlzy/OaAdminLogic.php new file mode 100644 index 0000000..84085b8 --- /dev/null +++ b/app/oa/logic/works/rlzy/OaAdminLogic.php @@ -0,0 +1,247 @@ + $params['name'], + 'account' => $params['mobile'], + 'avatar' => $params['thumb'] ?? config('project.default_image.admin_avatar'), + 'password' => create_password($params['password'], Config::get('project.unique_identification')), + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'job_id' => $params['job_id'], + 'disable' => $params['status'] == 2 ? 1 : 0, + ]); + self::insertRole($admin['id'], $params['role_id'] ?? []); + OaAdmin::create([ + 'name' => $params['name'], + 'email' => $params['email'] ?? '', + 'mobile' => $params['mobile'] ?? '', + 'sex' => $params['sex'] ?? 0, + 'thumb' => $params['thumb'] ?? config('project.default_image.admin_avatar'), + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'job_id' => $params['job_id'], + 'type' => $params['type'], + 'age' => $params['age'] ?? 0, + 'native_place' => $params['native_place'] ?? '', + 'idcard' => $params['idcard'] ?? '', + 'education' => $params['education'] ?? '', + 'bank_account' => $params['bank_account'] ?? '', + 'bank_info' => $params['bank_info'] ?? '', + 'desc' => $params['desc'] ?? null, + 'entry_time' => !empty($params['entry_time']) ? strtotime($params['entry_time']) : 0, + 'status' => $params['status'], + 'admin_id' => $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/05/22 15:49 + */ + public static function edit(array $params): bool + { + $data = OaAdmin::where('id', $params['id'])->findOrEmpty(); + Db::startTrans(); + try { + OaAdmin::where('id', $params['id'])->update([ + 'name' => $params['name'], + 'email' => $params['email'] ?? '', + 'mobile' => $params['mobile'] ?? '', + 'sex' => $params['sex'] ?? 0, + 'thumb' => $params['thumb'] ?? config('project.default_image.admin_avatar'), + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'job_id' => $params['job_id'], + 'type' => $params['type'], + 'age' => $params['age'] ?? 0, + 'native_place' => $params['native_place'] ?? '', + 'idcard' => $params['idcard'] ?? '', + 'education' => $params['education'] ?? '', + 'bank_account' => $params['bank_account'] ?? '', + 'bank_info' => $params['bank_info'] ?? '', + 'desc' => $params['desc'] ?? null, + 'entry_time' => !empty($params['entry_time']) ? strtotime($params['entry_time']) : 0, + 'status' => $params['status'], + ]); + Admin::where('id',$data['admin_id'])->update([ + 'name' => $params['name'], + 'account' => $params['name'], + 'avatar' => $params['thumb'] ?? config('project.default_image.admin_avatar'), + 'password' => create_password($params['password'], Config::get('project.unique_identification')), + 'org_id' => $params['org_id'], + 'dept_id' => $params['dept_id'], + 'job_id' => $params['job_id'], + 'disable' => $params['status'] == 2 ? 1 : 0, + ]); + // 更换角色后.设置token过期 + $roleId = AdminRole::where('admin_id', $data['admin_id'])->column('role_id'); + if (!empty(array_diff_assoc($roleId, $params['role_id'])) || $params['status'] == 2) { + $tokenArr = AdminSession::where('admin_id', $data['admin_id'])->select()->toArray(); + foreach ($tokenArr as $token) { + self::expireToken($token['token']); + } + } + (new AdminAuthCache($data['admin_id']))->clearAuthCache(); + // 删除旧的关联信息 + AdminRole::delByUserId($data['admin_id']); + // 角色 + self::insertRole($data['admin_id'], $params['role_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/05/22 15:49 + */ + public static function delete(array $params): bool + { + $data = OaAdmin::where('id', $params['id'])->findOrEmpty(); + Db::startTrans(); + try { + OaAdmin::destroy($params['id']); + Admin::destroy($data['admin_id']); + //设置token过期 + $tokenArr = AdminSession::where('admin_id', $data['admin_id'])->select()->toArray(); + foreach ($tokenArr as $token) { + self::expireToken($token['token']); + } + (new AdminAuthCache($data['admin_id']))->clearAuthCache(); + // 删除旧的关联信息 + AdminRole::delByUserId($data['admin_id']); + Db::commit(); + return true; + }catch (\Exception $e){ + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 获取企业员工详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public static function detail($params): array + { + $data = OaAdmin::findOrEmpty($params['id']); + $data['sex_text'] = $data->sex_text; + $data['type_text'] = $data->type_text; + $data['status_text'] = $data->status_text; + $org = Orgs::field('name')->where('id',$data['org_id'])->findOrEmpty(); + $dept = Dept::field('name')->where('id',$data['dept_id'])->findOrEmpty(); + $job = Jobs::field('name')->where('id',$data['job_id'])->findOrEmpty(); + $data['org_name'] = !$org->isEmpty() ? $org['name'] : ''; + $data['dept_name'] = !$dept->isEmpty() ? $dept['name'] : ''; + $data['job_name'] = !$job->isEmpty() ? $job['name'] : ''; + $data['role_id'] = AdminRole::where('admin_id', $data['admin_id'])->column('role_id'); + return $data->toArray(); + } + + public static function insertRole($adminId, $roleIds) + { + if (!empty($roleIds)) { + // 角色 + $roleData = []; + foreach ($roleIds as $roleId) { + $roleData[] = [ + 'admin_id' => $adminId, + 'role_id' => $roleId, + ]; + } + (new AdminRole())->saveAll($roleData); + } + } + + public static function expireToken($token): bool + { + $adminSession = AdminSession::where('token', '=', $token) + ->with('admin') + ->find(); + + if (empty($adminSession)) { + return false; + } + + $time = time(); + $adminSession->expire_time = $time; + $adminSession->update_time = $time; + $adminSession->save(); + + return (new AdminTokenCache())->deleteAdminInfo($token); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rlzy/OaDepartmentChangeLogic.php b/app/oa/logic/works/rlzy/OaDepartmentChangeLogic.php new file mode 100644 index 0000000..ae75dfc --- /dev/null +++ b/app/oa/logic/works/rlzy/OaDepartmentChangeLogic.php @@ -0,0 +1,124 @@ + $params['uid'], + 'from_did' => $params['from_did'], + 'to_did' => $params['to_did'], + 'remark' => $params['remark'] ?? '', + 'admin_id' => $admin_id, + 'status' => $params['status'] ?? 1, + 'move_time' => !empty($params['move_time']) ? strtotime($params['move_time']) : 0 + ]); + Admin::where('id',$params['uid'])->update(['dept_id'=>$params['to_did']]); + 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/05/22 17:55 + */ + public static function edit(array $params,$admin_id): bool + { + Db::startTrans(); + try { + OaDepartmentChange::where('id', $params['id'])->update([ + 'uid' => $params['uid'], + 'from_did' => $params['from_did'], + 'to_did' => $params['to_did'], + 'remark' => $params['remark'] ?? '', + 'admin_id' => $admin_id, + 'status' => $params['status'] ?? 1, + 'move_time' => !empty($params['move_time']) ? strtotime($params['move_time']) : 0 + ]); + Admin::where('id',$params['uid'])->update(['dept_id'=>$params['to_did']]); + 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/05/22 17:55 + */ + public static function delete(array $params): bool + { + return OaDepartmentChange::destroy($params['id']); + } + + + /** + * @notes 获取人事调动详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public static function detail($params): array + { + $data = OaDepartmentChange::findOrEmpty($params['id']); + $data['user_name'] = $data->user_name; + $data['from_dept'] = $data->from_dept; + $data['to_dept'] = $data->to_dept; + $data['status_text'] = $data->status_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/rlzy/OaPersonalQuitLogic.php b/app/oa/logic/works/rlzy/OaPersonalQuitLogic.php new file mode 100644 index 0000000..dc1666b --- /dev/null +++ b/app/oa/logic/works/rlzy/OaPersonalQuitLogic.php @@ -0,0 +1,129 @@ + $params['uid'], + 'remark' => $params['remark'] ?? '', + 'admin_id' => $admin_id, + 'lead_admin_id' => $params['lead_admin_id'], + 'connect_uids' => $params['connect_uids'], + 'connect_id' => $params['connect_id'], + 'connect_time' => !empty($params['connect_time']) ? strtotime($params['connect_time']) : 0, + 'quit_time' => !empty($params['quit_time']) ? strtotime($params['quit_time']) : 0, + ]); + Admin::where('id',$params['uid'])->update(['status'=>2]); + 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/05/23 09:43 + */ + public static function edit(array $params,$admin_id): bool + { + Db::startTrans(); + try { + OaPersonalQuit::where('id', $params['id'])->update([ + 'uid' => $params['uid'], + 'remark' => $params['remark'] ?? '', + 'admin_id' => $admin_id, + 'lead_admin_id' => $params['lead_admin_id'], + 'connect_uids' => $params['connect_uids'], + 'connect_id' => $params['connect_id'], + 'connect_time' => !empty($params['connect_time']) ? strtotime($params['connect_time']) : 0, + 'quit_time' => !empty($params['quit_time']) ? strtotime($params['quit_time']) : 0, + ]); + + 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/05/23 09:43 + */ + public static function delete(array $params): bool + { + return OaPersonalQuit::destroy($params['id']); + } + + + /** + * @notes 获取离职档案详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public static function detail($params): array + { + $data = OaPersonalQuit::findOrEmpty($params['id']); + $user = Admin::where('id',$data['uid'])->findOrEmpty(); + $other_user = Admin::where('id','in',[$data['lead_admin_id'],$data['connect_id']])->column('name','id'); + $connect_users = Admin::where('id','in',$data['connect_uids'])->column('name'); + $data['user_name'] = $user['name']; + $data['lead_admin_name'] = $other_user[$data['lead_admin_id']] ?? ''; + $data['connect_user_name'] = $other_user[$data['connect_id']] ?? ''; + $data['connect_users'] = implode(',',$connect_users); + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/xzgl/OaCarCateLogic.php b/app/oa/logic/works/xzgl/OaCarCateLogic.php new file mode 100644 index 0000000..9dac0f4 --- /dev/null +++ b/app/oa/logic/works/xzgl/OaCarCateLogic.php @@ -0,0 +1,112 @@ + $params['title'], + 'name' => $params['name'], + 'status' => $params['status'] ?? 1 + ]); + + 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/05/22 14:02 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaCarCate::where('id', $params['id'])->update([ + 'title' => $params['title'], + 'name' => $params['name'], + 'status' => $params['status'] ?? 1 + ]); + + 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/05/22 14:02 + */ + public static function delete(array $params): bool + { + return OaCarCate::destroy($params['id']); + } + + + /** + * @notes 获取车辆管理详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public static function detail($params): array + { + $data = OaCarCate::findOrEmpty($params['id']); + $data['status_text'] = $data->status_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/xzgl/OaMeetingCateLogic.php b/app/oa/logic/works/xzgl/OaMeetingCateLogic.php new file mode 100644 index 0000000..ff043c8 --- /dev/null +++ b/app/oa/logic/works/xzgl/OaMeetingCateLogic.php @@ -0,0 +1,110 @@ + $params['title'], + 'status' => $params['status'] ?? 1 + ]); + + 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/05/22 14:24 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaMeetingCate::where('id', $params['id'])->update([ + 'title' => $params['title'], + 'status' => $params['status'] ?? 1 + ]); + + 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/05/22 14:24 + */ + public static function delete(array $params): bool + { + return OaMeetingCate::destroy($params['id']); + } + + + /** + * @notes 获取会议室管理详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public static function detail($params): array + { + $data = OaMeetingCate::findOrEmpty($params['id']); + $data['status_text'] = $data->status_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/logic/works/xzgl/OaSealCateLogic.php b/app/oa/logic/works/xzgl/OaSealCateLogic.php new file mode 100644 index 0000000..9399ec3 --- /dev/null +++ b/app/oa/logic/works/xzgl/OaSealCateLogic.php @@ -0,0 +1,110 @@ + $params['title'], + 'status' => $params['status'] ?? 1 + ]); + + 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/05/22 11:53 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + OaSealCate::where('id', $params['id'])->update([ + 'title' => $params['title'], + 'status' => $params['status'] ?? 1 + ]); + + 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/05/22 11:53 + */ + public static function delete(array $params): bool + { + return OaSealCate::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public static function detail($params): array + { + $data = OaSealCate::findOrEmpty($params['id']); + $data['status_text'] = $data->status_text; + return $data->toArray(); + } +} \ No newline at end of file diff --git a/app/oa/validate/works/OaMessageValidate.php b/app/oa/validate/works/OaMessageValidate.php new file mode 100644 index 0000000..d2d9061 --- /dev/null +++ b/app/oa/validate/works/OaMessageValidate.php @@ -0,0 +1,104 @@ + 'require', + 'title' => 'require', + 'from_uid' => 'require', + 'to_uid' => 'require', + 'read_time' => 'require', + 'create_time' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'title' => '消息主题', + 'from_uid' => '发送人id', + 'to_uid' => '接收人id', + 'read_time' => '阅读时间', + 'create_time' => '创建时间', + ]; + + + /** + * @notes 添加场景 + * @return OaMessageValidate + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function sceneAdd() + { + return $this->only(['title','from_uid','to_uid','read_time','create_time']); + } + + + /** + * @notes 编辑场景 + * @return OaMessageValidate + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function sceneEdit() + { + return $this->only(['id','title','from_uid','to_uid','read_time','create_time']); + } + + + /** + * @notes 删除场景 + * @return OaMessageValidate + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaMessageValidate + * @author likeadmin + * @date 2024/05/29 14:04 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/bgsp/OaFlowTypeValidate.php b/app/oa/validate/works/bgsp/OaFlowTypeValidate.php new file mode 100644 index 0000000..c676336 --- /dev/null +++ b/app/oa/validate/works/bgsp/OaFlowTypeValidate.php @@ -0,0 +1,130 @@ + 'require', + 'type' => 'require|checkType', + 'title' => 'require', + 'name' => 'require', + 'department_ids' => 'checkDept', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'type' => '所属分类', + 'title' => '审批名称', + 'name' => '审批标识', + 'department_ids' => '应用部门', + ]; + + + /** + * @notes 添加场景 + * @return OaFlowTypeValidate + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function sceneAdd() + { + return $this->only(['type','title','name','icon','department_ids','data']); + } + + + /** + * @notes 编辑场景 + * @return OaFlowTypeValidate + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function sceneEdit() + { + return $this->only(['id','type','title','name','icon','department_ids','data']); + } + + + /** + * @notes 删除场景 + * @return OaFlowTypeValidate + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaFlowTypeValidate + * @author likeadmin + * @date 2024/05/24 13:34 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkType($value): bool|string + { + $dict = DictData::where('type_value', 'oa_approve_cate')->column('value'); + if (!in_array($value, $dict)) { + return '所属分类数据值无效'; + } + return true; + } + + public function checkDept($value): bool|string + { + if(!empty($value)){ + $data = explode(',',$value); + if(empty($data)){ + return '应用部门数据错误'; + } + foreach($data as $v){ + $dept = Dept::where('id',$v)->findOrEmpty(); + if($dept->isEmpty()){ + return '应用部门信息不存在'; + } + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/bgsp/OaFlowValidate.php b/app/oa/validate/works/bgsp/OaFlowValidate.php new file mode 100644 index 0000000..f485c63 --- /dev/null +++ b/app/oa/validate/works/bgsp/OaFlowValidate.php @@ -0,0 +1,203 @@ + 'require', + 'name' => 'require', + 'check_type' => 'require|integer|in:1,2,3', + 'type' => 'require|checkType', + 'flow_cate' => 'require|checkFlowCate', + 'department_ids' => 'checkDept', + 'copy_uids' => 'checkCopyUser', + 'flow_list' => 'requireCallback:check_require|checkFlowList' + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'name' => '审批流名称', + 'check_type' => '流程类型', + 'type' => '应用模块', + 'flow_cate' => '应用审批类型', + 'department_ids' => '应用部门', + 'copy_uids' => '抄送人', + 'flow_list' => '审批流程' + ]; + + + /** + * @notes 添加场景 + * @return OaFlowValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneAdd() + { + return $this->only(['name','check_type','type','flow_cate','department_ids','copy_uids','remark','flow_list']); + } + + + /** + * @notes 编辑场景 + * @return OaFlowValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneEdit() + { + return $this->only(['id','name','check_type','type','flow_cate','department_ids','copy_uids','remark','flow_list']); + } + + + /** + * @notes 删除场景 + * @return OaFlowValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaFlowValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkType($value): bool|string + { + $dict = DictData::where('type_value', 'oa_approve_cate')->column('value'); + if (!in_array($value, $dict)) { + return '所属分类数据值无效'; + } + return true; + } + + public function checkDept($value): bool|string + { + if(!empty($value)){ + $data = explode(',',$value); + if(empty($data)){ + return '应用部门数据错误'; + } + foreach($data as $v){ + $dept = Dept::where('id',$v)->findOrEmpty(); + if($dept->isEmpty()){ + return '应用部门信息不存在'; + } + } + } + return true; + } + + public function checkCopyUser($value): bool|string + { + if(!empty($value)){ + $data = explode(',',$value); + if(empty($data)){ + return '抄送人数据错误'; + } + foreach($data as $v){ + $user = Admin::where('id',$v)->findOrEmpty(); + if($user->isEmpty()){ + return '抄送人信息不存在'; + } + } + } + return true; + } + + public function checkFlowCate($value): bool|string + { + $data = OaFlowType::where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '审批类型不存在' : true; + } + + public function check_require($value, $data): bool + { + if($data['check_type'] != 2){ + return true; + } + return false; + } + + public function checkFlowList($value,$rule,$data): bool|string + { + if($data['check_type'] != 2) { + if(empty($value) || !is_array($value)) return '审批流程数据格式错误'; + if($data['check_type'] == 1){ + foreach ($value as $k=>$v) { + if(!isset($v['flow_type']) || !isset($v['flow_uids'])){ + return '固定审批流数据参数缺失'; + } + if(empty($v['flow_type']) || !in_array($v['flow_type'],[1,2,3])){ + return '固定审批流第'.($k+1).'行的类型未选择'; + } + if($v['flow_type'] > 1 && empty($v['flow_uids'])){ + return '固定审批流第'.($k+1).'行的指定人未选择'; + } + } + } + if($data['check_type'] == 3){ + foreach ($value as $k=>$v) { + if(!isset($v['flow_type']) || !isset($v['flow_uids']) || !isset($v['flow_name'])){ + return '可回退的审批流数据参数缺失'; + } + if(empty($v['flow_name'])){ + return '可回退的审批流第'.($k+1).'行的流程名称未填写'; + } + if(empty($v['flow_uids'])){ + return '可回退的审批流第'.($k+1).'行的指定人未选择'; + } + } + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/finance/ExpenseValidate.php b/app/oa/validate/works/finance/ExpenseValidate.php new file mode 100644 index 0000000..82118f4 --- /dev/null +++ b/app/oa/validate/works/finance/ExpenseValidate.php @@ -0,0 +1,122 @@ + 'require', + 'code' => 'require', + 'income_month' => 'require|dateFormat:Y-m', + 'expense_time' => 'require|dateFormat:Y-m-d', + 'flow_id' => 'require|checkFlow', + 'annex' => 'checkAnnex', + 'detail' => 'require|checkDetail', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'code' => '报销编码', + 'income_month' => '入账月份', + 'expense_time' => '原始单据日期', + 'flow_id' => '审批流程', + 'annex' => '附件', + 'detail' => '报销选项', + ]; + + /** + * @notes 添加场景 + * @return ExpenseValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneAdd() + { + return $this->only(['code','income_month','expense_time','flow_id','annex','detail','check_admin_ids','copy_uids']); + } + + + /** + * @notes 编辑场景 + * @return ExpenseValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneEdit() + { + return $this->only(['id','code','income_month','expense_time','flow_id','annex','detail','check_admin_ids','copy_uids']); + } + + + /** + * @notes 删除场景 + * @return ExpenseValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ExpenseValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + /** + * @notes 详情场景 + * @return ExpenseValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function scenePay() + { + return $this->only(['id']); + } + + public function checkFlow($value): bool|string { + $data = OaFlow::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '审批流程信息不存在'; + } + if($data['type'] != 5){ + return '当前审批流信息不属于报销审批类型'; + } + return true; + } + + public function checkDetail($value): bool|string + { + if(!is_array($value)){ + return '报销选项数据格式错误'; + } + foreach($value as $k=>$v){ + if(empty($v['amount'])){ + return '报销选项第'.($k+1).'行报销金额为空'; + } + if(empty($v['cate_id'])){ + return '报销选项第'.($k+1).'行报销项目为空'; + } + if(!in_array($v['cate_id'],[1,2,3,4,5,6])){ + return '报销选项第'.($k+1).'行报销项目数据值错误'; + } + } + return true; + } + } \ No newline at end of file diff --git a/app/oa/validate/works/finance/InvoiceValidate.php b/app/oa/validate/works/finance/InvoiceValidate.php new file mode 100644 index 0000000..bd1f8cd --- /dev/null +++ b/app/oa/validate/works/finance/InvoiceValidate.php @@ -0,0 +1,118 @@ + 'require', + 'code' => 'require', + 'open_time' => 'require|dateFormat:Y-m-d', + 'cash_type' => 'require|in:1,2,3,4,5,6,7', + 'is_cash' => 'require|in:0,1,2', + 'amount' => 'require|float', + 'type' => 'require|in:1,2', + 'invoice_subject' => 'require', + 'invoice_type' => 'require|in:1,2,3', + 'invoice_title' => 'require', + 'invoice_phone' => 'mobile', + 'invoice_account' => 'number', + 'flow_id' => 'require|checkFlow', + 'check_remark' => 'require', + 'annex' => 'checkAnnex', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'require', + 'code' => '发票号码', + 'cash_type' => '付款方式', + 'is_cash' => '是否到账', + 'amount' => '发票金额', + 'type' => '抬头类型', + 'invoice_subject' => '发票主体', + 'invoice_type' => '发票类型', + 'invoice_title' => '开票抬头', + 'invoice_phone' => '电话号码', + 'invoice_account' => '银行账号', + 'flow_id' => '审批流程id', + 'check_remark' => '撤销的理由', + 'annex' => '附件', + ]; + + /** + * @notes 添加场景 + * @return InvoiceValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneAdd() + { + return $this->only(['amount','type','invoice_subject','invoice_type','invoice_title','invoice_phone','invoice_tax','invoice_bank','invoice_account','invoice_banking','invoice_address','remark','annex','flow_id','check_admin_ids','copy_uids']); + } + + + /** + * @notes 编辑场景 + * @return InvoiceValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneEdit() + { + return $this->only(['id','amount','type','invoice_subject','invoice_type','invoice_title','invoice_phone','invoice_tax','invoice_bank','invoice_account','invoice_banking','invoice_address','remark','annex','flow_id','check_admin_ids','copy_uids']); + } + + + /** + * @notes 删除场景 + * @return InvoiceValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return InvoiceValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + /** + * @notes 详情场景 + * @return InvoiceValidate + * @author likeadmin + * @date 2024/05/24 14:16 + */ + public function sceneInvoice() + { + return $this->only(['id','code','open_time','delivery']); + } + + public function checkFlow($value): bool|string { + $data = OaFlow::where('id',$value)->findOrEmpty(); + if($data->isEmpty()){ + return '审批流程信息不存在'; + } + if($data['type'] != 6){ + return '当前审批流信息不属于报销审批类型'; + } + return true; + } + } \ No newline at end of file diff --git a/app/oa/validate/works/rcbg/OaPlanValidate.php b/app/oa/validate/works/rcbg/OaPlanValidate.php new file mode 100644 index 0000000..601809d --- /dev/null +++ b/app/oa/validate/works/rcbg/OaPlanValidate.php @@ -0,0 +1,116 @@ + 'require|checkData', + 'title' => 'require', + 'type' => 'require|integer|in:0,1,2,3,4', + 'start_time' => 'require|dateFormat:Y-m-d H:i', + 'end_time' => 'require|dateFormat:Y-m-d H:i', + 'remind_type' => 'require|integer|in:0,1,2,3,4,5,6', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'title' => '工作安排主题', + 'type' => '日程优先级', + 'start_time' => '开始时间', + 'end_time' => '结束时间', + 'remind_type' => '提醒类型', + ]; + + + /** + * @notes 添加场景 + * @return OaPlanValidate + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function sceneAdd() + { + return $this->only(['title','type','start_time','end_time','remind_type']); + } + + + /** + * @notes 编辑场景 + * @return OaPlanValidate + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function sceneEdit() + { + return $this->only(['id','title','type','start_time','end_time','remind_type']); + } + + + /** + * @notes 删除场景 + * @return OaPlanValidate + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaPlanValidate + * @author likeadmin + * @date 2024/05/23 11:53 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function sceneCalendar() + { + return $this->only(['start_time','end_time']); + } + + public function checkData($value): bool|string + { + $data = OaPlan::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rcbg/OaScheduleValidate.php b/app/oa/validate/works/rcbg/OaScheduleValidate.php new file mode 100644 index 0000000..afd7438 --- /dev/null +++ b/app/oa/validate/works/rcbg/OaScheduleValidate.php @@ -0,0 +1,109 @@ + 'require', + 'title' => 'require', + 'start_time' => 'require|dateFormat:Y-m-d H:i', + 'end_time' => 'require|dateFormat:Y-m-d H:i', + 'labor_type' => 'require|integer|in:1,2', + 'cid' => 'require|integer|in:0,1,2,3,4,5,6,7', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'title' => '工作内容', + 'start_time' => '开始时间', + 'end_time' => '结束时间', + 'labor_type' => '工作类型', + 'cid' => '工作类别', + ]; + + + /** + * @notes 添加场景 + * @return OaScheduleValidate + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function sceneAdd() + { + return $this->only(['title','start_time','end_time','labor_type','cid','remark']); + } + + + /** + * @notes 编辑场景 + * @return OaScheduleValidate + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function sceneEdit() + { + return $this->only(['id','title','start_time','end_time','labor_type','cid','remark']); + } + + + /** + * @notes 删除场景 + * @return OaScheduleValidate + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaScheduleValidate + * @author likeadmin + * @date 2024/05/23 14:27 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function sceneCalendar() + { + return $this->only(['start_time','end_time']); + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rcbg/OaWorkCommentValidate.php b/app/oa/validate/works/rcbg/OaWorkCommentValidate.php new file mode 100644 index 0000000..5295f57 --- /dev/null +++ b/app/oa/validate/works/rcbg/OaWorkCommentValidate.php @@ -0,0 +1,98 @@ + 'require', + 'work_id' => 'require', + 'content' => 'require' + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'work_id' => '工作汇报id', + 'content' => '点评内容', + ]; + + + /** + * @notes 添加场景 + * @return OaWorkCommentValidate + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function sceneAdd() + { + return $this->only(['work_id','content']); + } + + + /** + * @notes 编辑场景 + * @return OaWorkCommentValidate + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function sceneEdit() + { + return $this->only(['id','work_id','content']); + } + + + /** + * @notes 删除场景 + * @return OaWorkCommentValidate + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaWorkCommentValidate + * @author likeadmin + * @date 2024/05/23 17:39 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rcbg/OaWorkRecordValidate.php b/app/oa/validate/works/rcbg/OaWorkRecordValidate.php new file mode 100644 index 0000000..70fee97 --- /dev/null +++ b/app/oa/validate/works/rcbg/OaWorkRecordValidate.php @@ -0,0 +1,104 @@ + 'require', + 'wid' => 'require', + 'from_uid' => 'require', + 'to_uid' => 'require', + 'send_time' => 'require', + 'read_time' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'wid' => '汇报工作id', + 'from_uid' => '发送人id', + 'to_uid' => '接收人id', + 'send_time' => '发送日期', + 'read_time' => '阅读时间', + ]; + + + /** + * @notes 添加场景 + * @return OaWorkRecordValidate + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function sceneAdd() + { + return $this->only(['wid','from_uid','to_uid','send_time','read_time']); + } + + + /** + * @notes 编辑场景 + * @return OaWorkRecordValidate + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function sceneEdit() + { + return $this->only(['id','wid','from_uid','to_uid','send_time','read_time']); + } + + + /** + * @notes 删除场景 + * @return OaWorkRecordValidate + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaWorkRecordValidate + * @author likeadmin + * @date 2024/05/23 16:48 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rcbg/OaWorkValidate.php b/app/oa/validate/works/rcbg/OaWorkValidate.php new file mode 100644 index 0000000..7426fdf --- /dev/null +++ b/app/oa/validate/works/rcbg/OaWorkValidate.php @@ -0,0 +1,110 @@ + 'require', + 'type' => 'require|integer|in:1,2,3', + 'type_user' => 'require|checkTypeUser', + 'works' => 'require', + 'annex' => 'checkAnnex', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'type' => '类型', + 'type_user' => '接受人员ID', + 'works' => '汇报工作内容', + 'annex' => '附件' + ]; + + + /** + * @notes 添加场景 + * @return OaWorkValidate + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function sceneAdd() + { + return $this->only(['type','type_user','works','plans','remark','annex']); + } + + + /** + * @notes 编辑场景 + * @return OaWorkValidate + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function sceneEdit() + { + return $this->only(['id','type','works','plans','remark','annex'])->remove('type_user',true); + } + + + /** + * @notes 删除场景 + * @return OaWorkValidate + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaWorkValidate + * @author likeadmin + * @date 2024/05/23 15:56 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkTypeUser($value): bool|string + { + if(empty($value) || empty(explode(',',$value))){ + return '接受人员数据格式错误'; + } + return true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rlzy/OaAdminValidate.php b/app/oa/validate/works/rlzy/OaAdminValidate.php new file mode 100644 index 0000000..f9fb017 --- /dev/null +++ b/app/oa/validate/works/rlzy/OaAdminValidate.php @@ -0,0 +1,178 @@ + 'require|checkData', + 'name' => 'require', + 'email' => 'email', + 'mobile' => 'require|mobile|unique:oa_admin', + 'sex' => 'integer|in:0,1,2', + 'org_id' => 'require|checkOrg', + 'dept_id' => 'require|checkDept', + 'job_id' => 'require|checkJob', + 'type' => 'require|integer|in:0,1,2', + 'age' => 'integer|gt:0', + 'idcard' => 'idCard', + 'entry_time' => 'require|dateFormat:Y-m-d', + 'status' => 'require|integer|in:0,1,2', + 'password' => 'require|length:6,32', + 'role_id' => 'require|checkRole', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'name' => '员工姓名', + 'email' => '电子邮箱', + 'mobile' => '手机号码', + 'sex' => '性别', + 'org_id' => '组织', + 'dept_id' => '部门', + 'job_id' => '职位', + 'type' => '员工类型', + 'age' => '年龄', + 'idcard' => '身份证', + 'entry_time' => '员工入职日期', + 'status' => '状态', + 'password' => '登录密码', + 'role_id' => '角色权限', + ]; + + + /** + * @notes 添加场景 + * @return OaAdminValidate + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function sceneAdd() + { + return $this->remove('id',true); + } + + + /** + * @notes 编辑场景 + * @return OaAdminValidate + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function sceneEdit() + {} + + + /** + * @notes 删除场景 + * @return OaAdminValidate + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaAdminValidate + * @author likeadmin + * @date 2024/05/22 15:49 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = OaAdmin::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + + 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 checkJob($value, $rule, $data): bool|string + { + $job = Jobs::where('id', $value)->findOrEmpty(); + if ($job->isEmpty()) { + return '岗位不存在'; + } + if ($job['dept_id'] != $data['dept_id']) { + return '该岗位不属于当前选择的部门'; + } + return true; + } + + public function checkRole($value): bool|string + { + if(empty($value) || !is_array($value)){ + return '角色数据格式错误'; + } + foreach ($value as $item) { + $res = SystemRole::where('id',$item)->findOrEmpty(); + if($res->isEmpty()){ + return '角色数据不存在'; + } + } + return true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rlzy/OaDepartmentChangeValidate.php b/app/oa/validate/works/rlzy/OaDepartmentChangeValidate.php new file mode 100644 index 0000000..d38ea11 --- /dev/null +++ b/app/oa/validate/works/rlzy/OaDepartmentChangeValidate.php @@ -0,0 +1,109 @@ + 'require|checkData', + 'uid' => 'require', + 'from_did' => 'require', + 'to_did' => 'require|different:from_did', + 'move_time' => 'require|dateFormat:Y-m-d', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'uid' => '用户', + 'from_did' => '原部门', + 'to_did' => '调到部门', + 'move_time' => '调动时间', + ]; + + + /** + * @notes 添加场景 + * @return OaDepartmentChangeValidate + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function sceneAdd() + { + return $this->only(['uid','from_did','to_did','admin_id','status','move_time']); + } + + + /** + * @notes 编辑场景 + * @return OaDepartmentChangeValidate + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function sceneEdit() + { + return $this->only(['id','uid','from_did','to_did','admin_id','status','move_time']); + } + + + /** + * @notes 删除场景 + * @return OaDepartmentChangeValidate + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaDepartmentChangeValidate + * @author likeadmin + * @date 2024/05/22 17:55 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = OaDepartmentChange::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/rlzy/OaPersonalQuitValidate.php b/app/oa/validate/works/rlzy/OaPersonalQuitValidate.php new file mode 100644 index 0000000..48eb611 --- /dev/null +++ b/app/oa/validate/works/rlzy/OaPersonalQuitValidate.php @@ -0,0 +1,113 @@ + 'require|checkData', + 'uid' => 'require', + 'lead_admin_id' => 'require', + 'connect_uids' => 'require', + 'connect_id' => 'require', + 'connect_time' => 'require|dateFormat:Y-m-d', + 'quit_time' => 'require|dateFormat:Y-m-d', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'uid' => '用户ID', + 'lead_admin_id' => '部门负责人', + 'connect_uids' => '参与交接人,多', + 'connect_id' => '资料交接人', + 'connect_time' => '资料交接时间', + 'quit_time' => '离职时间', + ]; + + + /** + * @notes 添加场景 + * @return OaPersonalQuitValidate + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function sceneAdd() + { + return $this->only(['uid','admin_id','lead_admin_id','connect_uids','connect_id','connect_time','quit_time']); + } + + + /** + * @notes 编辑场景 + * @return OaPersonalQuitValidate + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function sceneEdit() + { + return $this->only(['id','uid','admin_id','lead_admin_id','connect_uids','connect_id','connect_time','quit_time']); + } + + + /** + * @notes 删除场景 + * @return OaPersonalQuitValidate + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaPersonalQuitValidate + * @author likeadmin + * @date 2024/05/23 09:43 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = OaPersonalQuit::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/xzgl/OaCarCateValidate.php b/app/oa/validate/works/xzgl/OaCarCateValidate.php new file mode 100644 index 0000000..a1ff99a --- /dev/null +++ b/app/oa/validate/works/xzgl/OaCarCateValidate.php @@ -0,0 +1,107 @@ + 'require|checkData', + 'title' => 'require', + 'name' => 'require', + 'status' => 'integer|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'title' => '车辆名称', + 'name' => '车辆号码', + 'status' => '状态', + ]; + + + /** + * @notes 添加场景 + * @return OaCarCateValidate + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function sceneAdd() + { + return $this->only(['title','name','status']); + } + + + /** + * @notes 编辑场景 + * @return OaCarCateValidate + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function sceneEdit() + { + return $this->only(['id','title','name','status']); + } + + + /** + * @notes 删除场景 + * @return OaCarCateValidate + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaCarCateValidate + * @author likeadmin + * @date 2024/05/22 14:02 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = OaCarCate::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/xzgl/OaMeetingCateValidate.php b/app/oa/validate/works/xzgl/OaMeetingCateValidate.php new file mode 100644 index 0000000..d07c616 --- /dev/null +++ b/app/oa/validate/works/xzgl/OaMeetingCateValidate.php @@ -0,0 +1,105 @@ + 'require|checkData', + 'title' => 'require', + 'status' => 'integer|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'title' => '会议室名称', + 'status' => '状态', + ]; + + + /** + * @notes 添加场景 + * @return OaMeetingCateValidate + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function sceneAdd() + { + return $this->only(['title','status']); + } + + + /** + * @notes 编辑场景 + * @return OaMeetingCateValidate + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function sceneEdit() + { + return $this->only(['id','title','status']); + } + + + /** + * @notes 删除场景 + * @return OaMeetingCateValidate + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaMeetingCateValidate + * @author likeadmin + * @date 2024/05/22 14:24 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = OaMeetingCate::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + +} \ No newline at end of file diff --git a/app/oa/validate/works/xzgl/OaSealCateValidate.php b/app/oa/validate/works/xzgl/OaSealCateValidate.php new file mode 100644 index 0000000..ba82b79 --- /dev/null +++ b/app/oa/validate/works/xzgl/OaSealCateValidate.php @@ -0,0 +1,105 @@ + 'require|checkData', + 'title' => 'require', + 'status' => 'integer|in:0,1', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'title' => '印章类型名称', + 'status' => '状态', + ]; + + + /** + * @notes 添加场景 + * @return OaSealCateValidate + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function sceneAdd() + { + return $this->only(['title','status']); + } + + + /** + * @notes 编辑场景 + * @return OaSealCateValidate + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function sceneEdit() + { + return $this->only(['id','title','status']); + } + + + /** + * @notes 删除场景 + * @return OaSealCateValidate + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return OaSealCateValidate + * @author likeadmin + * @date 2024/05/22 11:53 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + + public function checkData($value): bool|string + { + $data = OaSealCate::field('id')->where('id',$value)->findOrEmpty(); + return $data->isEmpty() ? '数据不存在' : true; + } + +} \ No newline at end of file