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
3d1804ed
Commit
3d1804ed
authored
Jun 25, 2021
by
周晓航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化 配送券的可用券 前端展示金额
Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent
d87ed64b
Hide 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 @
3d1804ed
...
@@ -582,8 +582,8 @@ public class CouponServiceImpl implements CouponService {
...
@@ -582,8 +582,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