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
78c748aa
authored
Jul 24, 2025
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix
parent
c9a2b116
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
app/Http/Services/SupplierTagService.php
resources/views/script/BatchAddSkuTagScript.blade.php
app/Http/Services/SupplierTagService.php
View file @
78c748aa
...
...
@@ -203,7 +203,7 @@ class SupplierTagService
//批量更新供应商的SKU显示类型
public
function
batchSaveGoodsLabelTags
(
$goodsLabel
,
$goodsLabelSystemTags
)
{
$goodsLabelSystemTags
=
explode
(
','
,
$goodsLabelSystemTags
)
;
$goodsLabelSystemTags
=
$goodsLabelSystemTags
?
explode
(
','
,
$goodsLabelSystemTags
)
:
[]
;
$data
=
[
'system_tags'
=>
$goodsLabelSystemTags
,
];
...
...
@@ -215,7 +215,7 @@ class SupplierTagService
//批量更新供应商的SKU接入方式
public
function
batchSaveGoodsSourceTags
(
$goodsSource
,
$goodsSourceSystemTags
)
{
$goodsSourceSystemTags
=
explode
(
','
,
$goodsSourceSystemTags
)
;
$goodsSourceSystemTags
=
$goodsSourceSystemTags
?
explode
(
','
,
$goodsSourceSystemTags
)
:
[]
;
$data
=
[
'system_tags'
=>
$goodsSourceSystemTags
,
];
...
...
resources/views/script/BatchAddSkuTagScript.blade.php
View file @
78c748aa
...
...
@@ -85,10 +85,7 @@
// 检查是否选择了系统标签
if
(
!
data
.
field
.
goods_label_system_tags
||
data
.
field
.
goods_label_system_tags
===
''
)
{
layer
.
msg
(
'请选择系统标签'
,
{
icon
:
5
});
return
false
;
}
return
true
;
...
...
@@ -107,10 +104,7 @@
// 检查是否选择了系统标签
if
(
!
data
.
field
.
goods_source_system_tags
||
data
.
field
.
goods_source_system_tags
===
''
)
{
layer
.
msg
(
'请选择系统标签'
,
{
icon
:
5
});
return
false
;
}
return
true
;
...
...
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