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
674b5d46
Commit
674b5d46
authored
Mar 15, 2021
by
chongfu.liang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
a05eb89c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/calculate/promotion/GiftSharingService.java
+9
-7
No files found.
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/calculate/promotion/GiftSharingService.java
View file @
674b5d46
...
...
@@ -143,17 +143,15 @@ public class GiftSharingService {
CalculationSharingDiscountResponseDto
.
CalculationDiscountResult
.
Goods
oldSendGoods
=
goodsList
.
stream
().
filter
(
p
->
p
.
getGoodsId
().
equals
(
discount
.
getGoodsId
())
&&
ObjectUtils
.
equals
(
p
.
getCartGoodType
(),
1
)).
findFirst
().
orElse
(
null
);
if
(
oldSendGoods
!=
null
){
// 表明赠品原来有
Integer
goodsQuantity
=
oldSendGoods
.
getGoodsQuantity
();
sendQty
=
goodsQuantity
+
discount
.
getActualGoodsNumber
();
oldSendGoods
.
setGoodsQuantity
(
sendQty
);
Integer
send
=
goodsQuantity
+
discount
.
getActualGoodsNumber
();
oldSendGoods
.
setGoodsQuantity
(
send
);
Long
discountAmount
=
oldSendGoods
.
getDiscountAmount
();
discountAmount
=
discountAmount
+
discount
.
getDiscount
();
oldSendGoods
.
setDiscountAmount
(
discountAmount
);
CalculationSharingDiscountResponseDto
.
CalculationDiscountResult
.
Goods
.
GoodsDiscount
oldDiscount
=
oldSendGoods
.
getDiscounts
().
stream
().
filter
(
p
->
p
.
getActivityCode
().
equals
(
discount
.
getActivityCode
())
&&
ObjectUtils
.
equals
(
p
.
getType
(),
ActivityTypeEnum
.
TYPE_1040
.
getCode
())).
findFirst
().
orElse
(
null
);
if
(
oldDiscount
!=
null
){
oldDiscount
.
setActualGoodsNumber
(
send
Qty
);
oldDiscount
.
setActualGoodsNumber
(
send
);
oldDiscount
.
setDiscount
(
discountAmount
);
}
...
...
@@ -181,15 +179,19 @@ public class GiftSharingService {
goodsDiscounts
.
add
(
goodsDiscount
);
sendGoods
.
setDiscounts
(
goodsDiscounts
);
goodsList
.
add
(
sendGoods
);
sendQty
+=
discount
.
getActualGoodsNumber
();
}
sendQty
+=
discount
.
getActualGoodsNumber
();
if
(
goods
.
getDiscountAmount
()
!=
null
&&
discount
.
getDiscount
()
!=
null
){
goods
.
setDiscountAmount
(
goods
.
getDiscountAmount
()
-
discount
.
getDiscount
());
}
}
if
(
qtyMap
.
get
(
goods
.
getCartGoodsUid
())
!=
null
){
qtyMap
.
put
(
goods
.
getCartGoodsUid
(),
qtyMap
.
get
(
goods
.
getCartGoodsUid
())
-
sendQty
);
}
else
{
qtyMap
.
put
(
goods
.
getCartGoodsUid
(),
goods
.
getGoodsQuantity
()
-
sendQty
);
}
}
result
.
setGoods
(
goodsList
);
return
qtyMap
;
...
...
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