114 lines
3.5 KiB
PHP
114 lines
3.5 KiB
PHP
<?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\contract;
|
||
|
||
|
||
use app\adminapi\controller\BaseAdminController;
|
||
use app\adminapi\lists\contract\SubcontractingContractLists;
|
||
use app\adminapi\logic\contract\SubcontractingContractLogic;
|
||
use app\adminapi\validate\contract\SubcontractingContractValidate;
|
||
use app\common\model\oa\Flow;
|
||
use app\common\model\oa\FlowType;
|
||
|
||
|
||
/**
|
||
* SubcontractingContract控制器
|
||
* Class SubcontractingContractController
|
||
* @package app\adminapi\controller\contract
|
||
*/
|
||
class SubcontractingContractController extends BaseAdminController
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 获取列表
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/12 17:15
|
||
*/
|
||
public function lists()
|
||
{
|
||
return $this->dataLists(new SubcontractingContractLists());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 添加
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/12 17:15
|
||
*/
|
||
public function add()
|
||
{
|
||
$params = (new SubcontractingContractValidate())->post()->goCheck('add');
|
||
$result = SubcontractingContractLogic::add($params);
|
||
if (true === $result) {
|
||
return $this->success('添加成功', [], 1, 1);
|
||
}
|
||
return $this->fail(SubcontractingContractLogic::getError());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/12 17:15
|
||
*/
|
||
public function edit()
|
||
{
|
||
$params = (new SubcontractingContractValidate())->post()->goCheck('edit');
|
||
$result = SubcontractingContractLogic::edit($params);
|
||
if (true === $result) {
|
||
return $this->success('编辑成功', [], 1, 1);
|
||
}
|
||
return $this->fail(SubcontractingContractLogic::getError());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取详情
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/12 17:15
|
||
*/
|
||
public function detail()
|
||
{
|
||
$params = (new SubcontractingContractValidate())->goCheck('detail');
|
||
$result = SubcontractingContractLogic::detail($params);
|
||
return $this->data($result);
|
||
}
|
||
|
||
public function flows(): \think\response\Json
|
||
{
|
||
$flow_type = FlowType::where('type',2)->where('name','fbht')->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 SubcontractingContractValidate())->post()->goCheck('approve');
|
||
$result = SubcontractingContractLogic::approve($params,$this->adminId);
|
||
if (true === $result) {
|
||
return $this->success('提交审核信息成功', [], 1, 1);
|
||
}
|
||
return $this->fail(SubcontractingContractLogic::getError());
|
||
}
|
||
|
||
|
||
} |