Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
ba10b394b7450599990905a79e802bea5473b9dd
1 parent
6183b3fb
fixes bug to product list show tags
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
library/Plugin/Helpers.php
library/Plugin/Helpers.php
View file @
ba10b39
...
...
@@ -223,6 +223,21 @@ class Helpers
$result
[
'tags'
][
'midYear'
]
=
isset
(
$productData
[
'mid-year'
])
&&
$productData
[
'mid-year'
]
===
'Y'
;
// 年中
$result
[
'tags'
][
'yearEnd'
]
=
isset
(
$productData
[
'year-end'
])
&&
$productData
[
'year-end'
]
===
'Y'
;
// 年末
$result
[
'tags'
][
'is_advance'
]
=
isset
(
$productData
[
'is_advance'
])
&&
$productData
[
'is_advance'
]
===
'Y'
;
// 再到着
// 打折与即将售完组合显示打折
if
(
$result
[
'is_soon_sold_out'
]
&&
$result
[
'tags'
][
'is_discount'
])
{
$result
[
'tags'
][
'is_new'
]
=
false
;
}
// 打折与其它组合则隐藏打折
elseif
(
$result
[
'tags'
][
'is_discount'
]
&&
(
$result
[
'tags'
][
'is_new'
]
||
$result
[
'tags'
][
'is_limited'
]
||
$result
[
'tags'
][
'is_yohood'
]
||
$result
[
'tags'
][
'is_advance'
])
)
{
$result
[
'tags'
][
'is_discount'
]
=
false
;
}
// YOHOOD和新品组合显示YOHOOD
elseif
(
$result
[
'tags'
][
'is_yohood'
]
&&
$result
[
'tags'
][
'is_new'
])
{
$result
[
'tags'
][
'is_new'
]
=
false
;
}
}
return
$result
;
...
...
Please
register
or
login
to post a comment