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
00924ab5
Commit
00924ab5
authored
Jun 25, 2021
by
周晓航
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/20210609-v2.0.34-购物车支持配送券ID1030707-周晓航' into qa
parents
b8f690f2
3d1804ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/CouponServiceImpl.java
+2
-2
No files found.
shopping-cart-application-service/src/main/java/cn/freemud/service/impl/CouponServiceImpl.java
View file @
00924ab5
...
@@ -580,8 +580,8 @@ public class CouponServiceImpl implements CouponService {
...
@@ -580,8 +580,8 @@ public class CouponServiceImpl implements CouponService {
// TODO 折扣券 百分值10 乘以10 前端统一除以100作为操作依据
// TODO 折扣券 百分值10 乘以10 前端统一除以100作为操作依据
activityCouponBean
.
setDiscountAmount
(
couponStateVo
.
getDiscount
()
!=
null
?
couponStateVo
.
getDiscount
()
*
10
+
""
:
"0"
);
activityCouponBean
.
setDiscountAmount
(
couponStateVo
.
getDiscount
()
!=
null
?
couponStateVo
.
getDiscount
()
*
10
+
""
:
"0"
);
}
else
if
(
Objects
.
equals
(
couponStateVo
.
getType
(),
CouponTypeEnum
.
TYPE_5
.
getCode
()))
{
}
else
if
(
Objects
.
equals
(
couponStateVo
.
getType
(),
CouponTypeEnum
.
TYPE_5
.
getCode
()))
{
// 这里需要加入 配送券逻辑
// 这里需要加入 配送券逻辑
如果为null 表示 配送券金额 全免, 否则就是部分减免
//activityCouponBean.setDiscountAmount(couponStateVo.getOriginalPrice() +
"");
activityCouponBean
.
setDiscountAmount
(
couponStateVo
.
getOriginalPrice
()==
null
?
null
:
couponStateVo
.
getOriginalPrice
()+
""
);
}
}
...
...
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