|
|
@@ -3934,6 +3934,7 @@ public class LiveOrderServiceImpl implements ILiveOrderService {
|
|
|
liveOrder.setPayType("1");
|
|
|
liveOrder.setTotalPrice(payPrice);
|
|
|
liveOrder.setPayPrice(payPrice.subtract(liveOrder.getDiscountMoney()));
|
|
|
+ liveOrder.setPayMoney(payPrice.subtract(liveOrder.getDiscountMoney()));
|
|
|
try {
|
|
|
if (baseMapper.insertLiveOrder(liveOrder) > 0) {
|
|
|
LiveOrderItemDTO dto = new LiveOrderItemDTO();
|
|
|
@@ -4092,6 +4093,7 @@ public class LiveOrderServiceImpl implements ILiveOrderService {
|
|
|
liveOrder.setPayType("1");
|
|
|
liveOrder.setTotalPrice(payPrice);
|
|
|
liveOrder.setPayPrice(payPrice.subtract(liveOrder.getDiscountMoney()));
|
|
|
+ liveOrder.setPayMoney(liveOrder.getPayPrice());
|
|
|
try {
|
|
|
if (baseMapper.insertLiveOrder(liveOrder) > 0) {
|
|
|
LiveOrderItemDTO dto = new LiveOrderItemDTO();
|