<?php // +---------------------------------------------------------------------- // | likeadmin快速开发前后端分离管理后台(PHP版) // +---------------------------------------------------------------------- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力 // | 开源版本可自由商用,可去除界面版权logo // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin // | github下载:https://github.com/likeshop-github/likeadmin // | 访问官网:https://www.likeadmin.cn // | likeadmin团队 版权所有 拥有最终解释权 // +---------------------------------------------------------------------- // | author: likeadminTeam // +---------------------------------------------------------------------- namespace app\adminapi\controller\project; use app\adminapi\controller\BaseAdminController; use app\adminapi\lists\project\ProjectTravelReimbursementLists; use app\adminapi\logic\project\ProjectTravelReimbursementLogic; use app\adminapi\validate\project\ProjectTravelReimbursementValidate; use app\common\model\oa\Flow; use app\common\model\oa\FlowType; /** * 差旅报销控制器 * Class ProjectTravelReimbursementController * @package app\adminapi\controller\project */ class ProjectTravelReimbursementController extends BaseAdminController { /** * @notes 获取差旅报销列表 * @return \think\response\Json * @author likeadmin * @date 2024/01/18 13:57 */ public function lists() { return $this->dataLists(new ProjectTravelReimbursementLists()); } /** * @notes 添加差旅报销 * @return \think\response\Json * @author likeadmin * @date 2024/01/18 13:57 */ public function add() { $params = (new ProjectTravelReimbursementValidate())->post()->goCheck('add'); $result = ProjectTravelReimbursementLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ProjectTravelReimbursementLogic::getError()); } /** * @notes 编辑差旅报销 * @return \think\response\Json * @author likeadmin * @date 2024/01/18 13:57 */ public function edit() { $params = (new ProjectTravelReimbursementValidate())->post()->goCheck('edit'); $result = ProjectTravelReimbursementLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ProjectTravelReimbursementLogic::getError()); } /** * @notes 删除差旅报销 * @return \think\response\Json * @author likeadmin * @date 2024/01/18 13:57 */ public function delete() { $params = (new ProjectTravelReimbursementValidate())->post()->goCheck('delete'); ProjectTravelReimbursementLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取差旅报销详情 * @return \think\response\Json * @author likeadmin * @date 2024/01/18 13:57 */ public function detail() { $params = (new ProjectTravelReimbursementValidate())->goCheck('detail'); $result = ProjectTravelReimbursementLogic::detail($params); return $this->data($result); } public function flows(): \think\response\Json { $flow_type = FlowType::where('type',4)->where('name','clbx')->findOrEmpty(); $data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select(); return $this->success('请求成功',$data->toArray()); } //添加审批 public function approve(): \think\response\Json { $params = (new ProjectTravelReimbursementValidate())->post()->goCheck('approve'); $result = ProjectTravelReimbursementLogic::approve($params,$this->adminId); if (true === $result) { return $this->success('提交审核信息成功', [], 1, 1); } return $this->fail(ProjectTravelReimbursementLogic::getError()); } }