|
|
@@ -1051,8 +1051,6 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
}
|
|
|
corpInteractiveUserOrderRelationMapper.insert(corpInteractiveUserOrderRelation);
|
|
|
}
|
|
|
- //记录订单ip关联
|
|
|
- recordOrderDonLocationRelate(orderDon.getId(), payRequest.getIp());
|
|
|
//GPT续费升级 目前升级套餐续费
|
|
|
if ((payRequest.getPackageId() != null || payRequest.getOriginalOrderId() != null) && orderDon.getGoodsId() == 18 && sku.getIsMirror()) {
|
|
|
try {
|
|
|
@@ -1088,6 +1086,8 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
log.error("记录续费升级错误:{}", StringUtil.getErrorText(e));
|
|
|
}
|
|
|
}
|
|
|
+ //记录订单ip关联
|
|
|
+ recordOrderDonLocationRelate(orderDon.getId(), payRequest.getIp());
|
|
|
//订单金额为0 且订单为已完成 更新虚物车票
|
|
|
if (orderDon.getMoney().compareTo(BigDecimal.ZERO) == 0) {
|
|
|
OrderDon updateOrder = orderDonMapper.selectById(orderDon.getId());
|