|
|
@@ -685,7 +685,9 @@ public class CmsOrderDonServiceImpl extends ServiceImpl<OrderDonMapper,OrderDon>
|
|
|
relationClearService.clearTicket(relation, source);
|
|
|
|
|
|
//是否是GPT镜像规格
|
|
|
- delMirrorUser(orderDon.getGoodsId(), orderDon.getRelationId());
|
|
|
+ if (orderDon.getOrderType() == 1) {
|
|
|
+ delMirrorUser(orderDon.getGoodsId(), orderDon.getRelationId());
|
|
|
+ }
|
|
|
|
|
|
if (plusPurchaseSkuRelation != null && plus_relationList != null) {
|
|
|
plus_relationList.remove(relationId);
|
|
|
@@ -1034,7 +1036,9 @@ public class CmsOrderDonServiceImpl extends ServiceImpl<OrderDonMapper,OrderDon>
|
|
|
giftCardOrderUseRecordService.returnGiftCardCash(orderDon.getId());
|
|
|
}
|
|
|
//是否是GPT镜像规格
|
|
|
- delMirrorUser(orderDon.getGoodsId(), orderDon.getRelationId());
|
|
|
+ if (orderDon.getOrderType() == 1) {
|
|
|
+ delMirrorUser(orderDon.getGoodsId(), orderDon.getRelationId());
|
|
|
+ }
|
|
|
//是否是分销订单
|
|
|
//处理下级渠道分销提成
|
|
|
handleSubRewards(orderDon);
|