|
|
@@ -644,6 +644,10 @@ public class LiveOrderServiceImpl implements ILiveOrderService {
|
|
|
storePayment.setUserId(user.getUserId());
|
|
|
storePayment.setBusinessId(order.getOrderId().toString());
|
|
|
if (liveOrderPaymentMapper.insertLiveOrderPayment(storePayment) > 0) {
|
|
|
+ LiveOrder newOrder = new LiveOrder();
|
|
|
+ newOrder.setOrderId(order.getOrderId());
|
|
|
+ newOrder.setPayPrice(order.getPayMoney());
|
|
|
+ baseMapper.updateLiveOrder(newOrder);
|
|
|
if (order.getPayType().equals("1")) {
|
|
|
//创建微信订单
|
|
|
PayProcessContext processContext = new PayProcessContext();
|