Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
liexin_supplier
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fece026d
authored
Apr 28, 2022
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
共用审核兼容去掉
parent
d1b1a68d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/Http/Controllers/Api/SupplierShareApplyApiController.php
app/Http/Controllers/Api/SupplierShareApplyApiController.php
View file @
fece026d
...
@@ -34,8 +34,8 @@ class SupplierShareApplyApiController extends Controller
...
@@ -34,8 +34,8 @@ class SupplierShareApplyApiController extends Controller
$supplierModel
=
new
SupplierChannelModel
();
$supplierModel
=
new
SupplierChannelModel
();
//下面的处理是为了兼容有问题的数据
//下面的处理是为了兼容有问题的数据
if
(
!
empty
(
$supplier
=
$supplierModel
->
where
(
'supplier_name'
,
$supplierName
)
->
first
()))
{
if
(
!
empty
(
$supplier
=
$supplierModel
->
where
(
'supplier_name'
,
$supplierName
)
->
first
()))
{
$supplier
=
$supplierModel
->
where
(
'supplier_name'
,
'like'
,
"%
$supplierName
%"
)
->
whereNotIn
(
'status'
,
//
$supplier = $supplierModel->where('supplier_name', 'like', "%$supplierName%")->whereNotIn('status',
[
SupplierChannelModel
::
STATUS_DISABLE
,
SupplierChannelModel
::
STATUS_REJECT
])
->
first
();
//
[SupplierChannelModel::STATUS_DISABLE, SupplierChannelModel::STATUS_REJECT])->first();
}
}
if
(
empty
(
$supplier
))
{
if
(
empty
(
$supplier
))
{
$this
->
response
(
-
1
,
'该供应商名称不存在,请输入正确供应商名称'
);
$this
->
response
(
-
1
,
'该供应商名称不存在,请输入正确供应商名称'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment