Commit 84c407e6 by 杨树贤

Merge branch 'master' into ysx-供应商需求-20220707

parents d75fe64a 3d9b3d91
...@@ -297,6 +297,9 @@ class SupplierApiController extends Controller ...@@ -297,6 +297,9 @@ class SupplierApiController extends Controller
{ {
$supplierName = trim($request->get('supplier_name')); $supplierName = trim($request->get('supplier_name'));
$taxNumber = $request->get('tax_number'); $taxNumber = $request->get('tax_number');
if (empty($supplierName) && empty($taxNumber)) {
$this->response(0, 'ok');
}
$supplierId = $request->get('supplier_id'); $supplierId = $request->get('supplier_id');
$region = $request->get('region'); $region = $request->get('region');
$model = new SupplierChannelModel(); $model = new SupplierChannelModel();
......
...@@ -20,6 +20,7 @@ class SupplierStatisticsApiController extends Controller ...@@ -20,6 +20,7 @@ class SupplierStatisticsApiController extends Controller
public function GetSupplierStatistics($request) public function GetSupplierStatistics($request)
{ {
ini_set('memory_limit', -1);
$service = new SupplierStatisticsService(); $service = new SupplierStatisticsService();
$statistics = $service->getSupplierListStatistics(); $statistics = $service->getSupplierListStatistics();
$data = []; $data = [];
......
...@@ -168,9 +168,12 @@ class SyncSupplierService ...@@ -168,9 +168,12 @@ class SyncSupplierService
$data['status'] = SupplierChannelModel::STATUS_BLOCK; $data['status'] = SupplierChannelModel::STATUS_BLOCK;
$data['block_reason'] = '一体化系统黑名单供应商'; $data['block_reason'] = '一体化系统黑名单供应商';
} else { } else {
//判断原来是拉黑状态,才变成审核中,因为有可能不是修改公司类型,只是修改公司性质
if ($supplier['status'] == SupplierChannelModel::STATUS_BLOCK) {
$data['status'] = SupplierChannelModel::STATUS_IN_REVIEW; $data['status'] = SupplierChannelModel::STATUS_IN_REVIEW;
} }
} }
}
$data['sync_united_status'] = SupplierChannelModel::SYNC_UNITED_STATUS_OK; $data['sync_united_status'] = SupplierChannelModel::SYNC_UNITED_STATUS_OK;
$data['group_code'] = $groupCode; $data['group_code'] = $groupCode;
$data['company_nature'] = $syncResult['company_nature']; $data['company_nature'] = $syncResult['company_nature'];
......
...@@ -25,8 +25,9 @@ class SupplierValidator ...@@ -25,8 +25,9 @@ class SupplierValidator
return null; return null;
} }
$isAdd = empty($supplier['supplier_id']) ? true : false; $isAdd = empty($validateData['supplier_id']) ? true : false;
if ($validateData['supplier_name']) {
//新增的时候要先去检验下一体化的数据,如果是实体黑名单用户,那么就不允许新增 //新增的时候要先去检验下一体化的数据,如果是实体黑名单用户,那么就不允许新增
$regionType = $validateData['region'] == SupplierChannelModel::REGION_CN ? 1 : 2; $regionType = $validateData['region'] == SupplierChannelModel::REGION_CN ? 1 : 2;
//还要校验提交上来的公司是否有合法信息 //还要校验提交上来的公司是否有合法信息
...@@ -45,6 +46,7 @@ class SupplierValidator ...@@ -45,6 +46,7 @@ class SupplierValidator
} }
} }
} }
}
//没有忽略校验的权限并且供应商地区属于内地和港台才会去校验天眼查 //没有忽略校验的权限并且供应商地区属于内地和港台才会去校验天眼查
if (!checkPerm('IgnoreCompanyCheck') && in_array($validateData['region'], if (!checkPerm('IgnoreCompanyCheck') && in_array($validateData['region'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment