Commit 63c5d205 by 杨树贤

供应商申请共用判断

parent 67f3e5ce
...@@ -32,8 +32,11 @@ class SupplierShareApplyApiController extends Controller ...@@ -32,8 +32,11 @@ class SupplierShareApplyApiController extends Controller
$this->response(-1, '供应商名称不能为空'); $this->response(-1, '供应商名称不能为空');
} }
$supplierModel = new SupplierChannelModel(); $supplierModel = new SupplierChannelModel();
$supplier = $supplierModel->where('supplier_name', $supplierName)->where('status', //下面的处理是为了兼容有问题的数据
SupplierChannelModel::STATUS_PASSED)->first(); if (!empty($supplier = $supplierModel->where('supplier_name', $supplierName)->first())) {
$supplier = $supplierModel->where('supplier_name', 'like', "%$supplierName%")->where('status',
SupplierChannelModel::STATUS_PASSED)->first();
}
if (empty($supplier)) { if (empty($supplier)) {
$this->response(-1, '该供应商名称不存在,请输入正确供应商名称'); $this->response(-1, '该供应商名称不存在,请输入正确供应商名称');
} }
......
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