Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-portal-fe
·
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
陶雨
9 years ago
Commit
2350ef60746ef649927514c6dbd9477f8d4b8523
1 parent
7487ba80
限购码sku数量现在不能为0了
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
client/js/market/limitcode-edit.js
client/js/market/limitcode-edit.js
View file @
2350ef6
...
...
@@ -170,7 +170,7 @@ $(document).on("click","#save_brand", function() {
if
(
e
.
validate
()
&&
(
type
==
"add"
?
(
!
editBean
.
limitSkn
||
!
Bll
.
__checkSkn
())
:
true
))
{
if
(
editBean
.
limitCodeType
==
"U"
)
{
for
(
var
i
in
editBean
.
skusInfo
)
{
if
(
!
editBean
.
skusInfo
[
i
].
skuTimes
)
{
if
(
!
editBean
.
skusInfo
[
i
].
skuTimes
||
editBean
.
skusInfo
[
i
].
skuTimes
==
"0"
)
{
common
.
util
.
__tip
(
"SKU数量不能为0"
);
return
;
}
...
...
Please
register
or
login
to post a comment