update 市级供应链商户固定由泸州市海之农科技有限公司审批

This commit is contained in:
chenbo 2023-11-16 11:08:10 +08:00
parent cf05fd0060
commit d6d0625943

View File

@ -390,6 +390,11 @@ class CompanyController extends BaseAdminController
// 根据street码查询所属镇农科公司
$company_select=Db::query("select * from la_company where company_type=:company_type and FIND_IN_SET(:street,responsible_area)", ['company_type' => 41,'street'=>$params['street']], true);
// 市级供应链直接和海之农签约
if (isset($params['type_id']) && $params['type_id'] == 12) {
$company_select = Company::where(['company_name' => '泸州市海之农科技有限公司'])->find();
}
if(empty($company_select)) {
throw new Exception('当前区域无镇农科公司');
}