Commit 4c480d01 by huluobin

order pay

parent 4dcc3740
......@@ -316,8 +316,13 @@ public class MarketServiceImpl implements MarketService {
orderServe.setPayPrice(orderServe.getPrice().add(orderServe.getServeChangePrice()));
//服务折金额=0
orderServe.setDiscountPrice(BigDecimal.ZERO);
//业绩的实际支付金额
//如果是贵族会员免费手部基础护理 或者 特级会员免费修手 业绩为10元 其他的是实际支付金额
if (orderServe.getServeName().equals("贵族会员免费手部基础护理")
|| orderServe.getServeName().equals("特级会员免费修手")) {
orderServe.setAchievement(new BigDecimal(10).add(orderServe.getServeChangePrice()));
} else {
orderServe.setAchievement(orderServe.getPrice().add(orderServe.getServeChangePrice()));
}
});
//3.次卡
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment