Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
b0d67ba2
Commit
b0d67ba2
authored
Jan 25, 2021
by
yu.sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sunyu::update::fix bug about modify virtual-product qty
parent
400daa73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/mcoffee/ShoppingCartMCoffeeServiceImpl.java
+10
-8
No files found.
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/mcoffee/ShoppingCartMCoffeeServiceImpl.java
View file @
b0d67ba2
...
@@ -344,6 +344,16 @@ public class ShoppingCartMCoffeeServiceImpl {
...
@@ -344,6 +344,16 @@ public class ShoppingCartMCoffeeServiceImpl {
String
skuId
=
""
;
String
skuId
=
""
;
Integer
finalQty
=
qty
;
Integer
finalQty
=
qty
;
for
(
CartGoods
cartGoods_
:
cartGoodsList
)
{
for
(
CartGoods
cartGoods_
:
cartGoodsList
)
{
if
(
Objects
.
equals
(
1
,
cartGoods_
.
getIsMonthCard
())
&&
cartGoods_
.
getCartGoodsUid
().
equals
(
updateShoppingCartGoodsQtyRequestVo
.
getCartGoodsUid
())
&&
updateShoppingCartGoodsQtyRequestVo
.
getQty
()>
10
)
{
shoppingCartGoodsResponseVo
.
setChanged
(
true
);
shoppingCartGoodsResponseVo
.
setToastMsg
(
ResponseResult
.
SHOPPING_CART_QTY_LIMIT_ERR
.
getMessage
());
setAddAndUpdateResponse
(
shoppingCartGoodsResponseVo
,
cartGoodsList
,
ResponseResult
.
SHOPPING_CART_QTY_LIMIT_ERR
.
getMessage
(),
ShoppingCartConstant
.
ADD_AND_UPDATE
,
null
);
return
ResponseUtil
.
success
(
shoppingCartGoodsResponseVo
);
}
if
(
cartGoodsUid
.
equals
(
cartGoods_
.
getCartGoodsUid
()))
{
if
(
cartGoodsUid
.
equals
(
cartGoods_
.
getCartGoodsUid
()))
{
cartGoods
=
cartGoods_
;
cartGoods
=
cartGoods_
;
cartGoods_
.
setQty
(
qty
);
cartGoods_
.
setQty
(
qty
);
...
@@ -380,14 +390,6 @@ public class ShoppingCartMCoffeeServiceImpl {
...
@@ -380,14 +390,6 @@ public class ShoppingCartMCoffeeServiceImpl {
cartGoodsList
=
new
ArrayList
<>();
cartGoodsList
=
new
ArrayList
<>();
}
}
}
}
if
(
updateShoppingCartGoodsQtyRequestVo
.
getQty
()>
10
)
{
shoppingCartGoodsResponseVo
.
setChanged
(
true
);
shoppingCartGoodsResponseVo
.
setToastMsg
(
ResponseResult
.
SHOPPING_CART_QTY_LIMIT_ERR
.
getMessage
());
setAddAndUpdateResponse
(
shoppingCartGoodsResponseVo
,
cartGoodsList
,
ResponseResult
.
SHOPPING_CART_QTY_LIMIT_ERR
.
getMessage
(),
ShoppingCartConstant
.
ADD_AND_UPDATE
,
null
);
return
ResponseUtil
.
success
(
shoppingCartGoodsResponseVo
);
}
}
}
}
}
...
...
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