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
9d16dd1b
Commit
9d16dd1b
authored
Aug 14, 2020
by
xiaoer.li@freemud.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代金券增加小料金额
parent
216bdeae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/ShoppingCartNewServiceImpl.java
+14
-2
No files found.
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/ShoppingCartNewServiceImpl.java
View file @
9d16dd1b
...
@@ -257,7 +257,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
...
@@ -257,7 +257,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
//查询多个商品库存信息
//查询多个商品库存信息
queryManyGoodsStocks
(
addShoppingCartGoodsRequestVo
,
productIds
,
productBeanListSpuClass
,
skuId
,
checkQty
);
queryManyGoodsStocks
(
addShoppingCartGoodsRequestVo
,
productIds
,
productBeanListSpuClass
,
skuId
,
checkQty
);
//
this.checkMaterial(productBeanListSpuClass, cartGoods);
this
.
checkMaterial
(
productBeanListSpuClass
,
cartGoods
);
//ShoppingCartConvertAdapter.setClassification(cartGoods, productBeanListSpuClass);
//ShoppingCartConvertAdapter.setClassification(cartGoods, productBeanListSpuClass);
String
productName
=
null
;
String
productName
=
null
;
// 当添加的商品不是商品券时
// 当添加的商品不是商品券时
...
@@ -1650,7 +1650,19 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
...
@@ -1650,7 +1650,19 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
public
void
checkMaterial
(
List
<
ProductBeanDTO
>
productBeanListSpuClass
,
CartGoods
cartGoods
)
{
public
void
checkMaterial
(
List
<
ProductBeanDTO
>
productBeanListSpuClass
,
CartGoods
cartGoods
)
{
if
(
CollectionUtils
.
isEmpty
(
cartGoods
.
getProductMaterialList
()))
return
;
if
(
CollectionUtils
.
isEmpty
(
cartGoods
.
getProductMaterialList
()))
return
;
if
(
CollectionUtils
.
isEmpty
(
productBeanListSpuClass
.
get
(
0
).
getAdditionalGroupList
()))
{
if
(
CollectionUtils
.
isEmpty
(
productBeanListSpuClass
.
get
(
0
).
getAdditionalGroupList
()))
{
throw
new
ServiceException
(
ResponseResult
.
SHOPPING_CART_VERSION_ERROR
);
throw
new
ServiceException
(
ResponseResult
.
SHOPPING_CART_MATERIAL_ERROR
);
}
Boolean
tips
=
false
;
for
(
CartGoods
.
MaterialGoods
materialGoods
:
cartGoods
.
getProductMaterialList
())
{
for
(
ProductBeanDTO
.
ProductGroupType
productGroupType
:
productBeanListSpuClass
.
get
(
0
).
getAdditionalGroupList
())
{
long
l
=
productGroupType
.
getGroupDetail
().
stream
().
filter
(
e
->
e
.
getProductId
().
equals
(
materialGoods
.
getSpuId
())).
count
();
if
(
l
==
0
)
{
tips
=
true
;
break
;
}
}
if
(
tips
)
break
;
}
}
if
(
tips
)
throw
new
ServiceException
(
ResponseResult
.
SHOPPING_CART_MATERIAL_ERROR
);
}
}
}
}
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