This commit is contained in:
weiz 2024-02-19 16:01:17 +08:00
parent 23bd2137a7
commit 83b7352031
5 changed files with 10 additions and 10 deletions

View File

@ -108,8 +108,8 @@ class ContractController extends BaseAdminController
public function flows(): \think\response\Json
{
$flow_type = FlowType::where('type',1)->where('name','xmht')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',3)->select();
$flow_type = FlowType::where('type',2)->where('name','xmht')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select();
return $this->success('请求成功',$data->toArray());
}

View File

@ -108,8 +108,8 @@ class ContractNegotiationController extends BaseAdminController
public function flows(): \think\response\Json
{
$flow_type = FlowType::where('type',1)->where('name','htqs')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',3)->select();
$flow_type = FlowType::where('type',2)->where('name','htqs')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select();
return $this->success('请求成功',$data->toArray());
}

View File

@ -92,8 +92,8 @@ class ProcurementContractController extends BaseAdminController
public function flows(): \think\response\Json
{
$flow_type = FlowType::where('type',1)->where('name','cght')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',3)->select();
$flow_type = FlowType::where('type',2)->where('name','cght')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select();
return $this->success('请求成功',$data->toArray());
}

View File

@ -94,8 +94,8 @@ class SubcontractingContractController extends BaseAdminController
public function flows(): \think\response\Json
{
$flow_type = FlowType::where('type',1)->where('name','fbht')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',3)->select();
$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());
}

View File

@ -108,8 +108,8 @@ class SubcontractingContractNegotiationController extends BaseAdminController
public function flows(): \think\response\Json
{
$flow_type = FlowType::where('type',1)->where('name','fbhtqs')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',3)->select();
$flow_type = FlowType::where('type',2)->where('name','fbhtqs')->findOrEmpty();
$data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select();
return $this->success('请求成功',$data->toArray());
}