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
a90855fa
authored
Aug 29, 2025
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修复
parent
ba38bc7d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
app/Http/Controllers/Filter/SupplierFilter.php
resources/views/script/SupplierListScript.blade.php
storage/framework/views/587faa134dc1f8953abf61cb2995b8264ba36a12.php
app/Http/Controllers/Filter/SupplierFilter.php
View file @
a90855fa
...
...
@@ -223,7 +223,7 @@ class SupplierFilter
//搜索是否有供应商账号
if
(
!
empty
(
$map
[
'has_supplier_account'
]))
{
$supplierIds
=
SupplierAccountModel
::
query
()
->
pluck
(
'supplier_id'
)
->
toArray
();
$supplierIds
=
SupplierAccountModel
::
query
()
->
where
(
'a_status'
,
1
)
->
pluck
(
'supplier_id'
)
->
toArray
();
$query
->
whereIn
(
'supplier_id'
,
$supplierIds
);
}
...
...
resources/views/script/SupplierListScript.blade.php
View file @
a90855fa
...
...
@@ -188,7 +188,7 @@
align
:
'center'
,
width
:
120
,
templet
:
function
(
data
)
{
return
data
.
yunxin_account
?
'是'
:
'否'
;
return
data
.
yunxin_account
?
(
data
.
yunxin_account
.
a_status
==
1
?
'是'
:
'否'
)
:
'否'
;
}
},
//通过芯链上传合同
...
...
storage/framework/views/587faa134dc1f8953abf61cb2995b8264ba36a12.php
View file @
a90855fa
...
...
@@ -232,7 +232,7 @@
<div
class=
"layui-inline"
>
<?php
$multiTransformableSelectPresenter
=
app
(
'App\Presenters\Filter\MultiTransformableSelectPresenter'
);
?>
<?php
echo
$multiTransformableSelectPresenter
->
render
([
'has_cooperation_agreement'
=>
'平台合作协议'
],
[
'has_cooperation_agreement'
=>
[
1
=>
'
是'
,
-
1
=>
'否
'
]]);
?>
[
'has_cooperation_agreement'
=>
[
1
=>
'
有'
,
-
1
=>
'无
'
]]);
?>
</div>
<div
class=
"layui-inline"
>
...
...
@@ -248,7 +248,7 @@
</div>
<div
class=
"layui-inline"
>
<?php
$statusPresenter
=
app
(
'App\Presenters\StatusPresenter'
);
?>
<?php
echo
$statusPresenter
->
render
(
'has_order_contract'
,
'通过芯链上传合同'
,
''
,[
1
=>
'
有'
,
-
1
=>
'无
'
]);
?>
<?php
echo
$statusPresenter
->
render
(
'has_order_contract'
,
'通过芯链上传合同'
,
''
,[
1
=>
'
是'
,
-
1
=>
'否
'
]);
?>
</div>
<div
class=
"layui-inline"
>
...
...
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