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
24c597fd
authored
Jul 13, 2023
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
兼容本地垃圾数据问题
parent
88f28d8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
app/Http/Services/SkuService.php
app/Http/Services/SkuService.php
View file @
24c597fd
...
...
@@ -46,6 +46,8 @@ class SkuService
}
$sku
=
json_decode
(
$redis
->
hget
(
'sku'
,
$goodsId
),
true
);
if
(
empty
(
$sku
))
{
$sku
=
[
'goods_id'
=>
$goodsId
];
$list
[]
=
$sku
;
continue
;
}
//赋值
...
...
@@ -106,6 +108,9 @@ class SkuService
$encodedList
=
array_column
(
$list
,
'encoded'
);
$encodedUsers
=
$intraCodeModel
->
getEncodedUserByEncoded
(
$encodedList
);
$list
=
array_map
(
function
(
$item
)
use
(
$encodedUsers
,
$redis
)
{
if
(
empty
(
$item
[
'goods_name'
]))
{
return
$item
;
}
$encoded
=
array_get
(
$item
,
'encoded'
,
0
);
$item
[
'encoded_user_name'
]
=
array_get
(
$encodedUsers
,
$encoded
,
''
);
$item
[
'moq'
]
=
$item
[
'moq'
]
?:
0
;
...
...
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