|
|
@@ -660,6 +660,13 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
informationClickUserRecord.setOrderId(orderDon.getId());
|
|
|
informationClickUserRecordMapper.insert(informationClickUserRecord);
|
|
|
}
|
|
|
+ if (goodsDon != null) {
|
|
|
+ orderDon.setGoodsDonType(goodsDon.getType());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (sku != null) {
|
|
|
+ orderDon.setIsMirror(sku.getIsMirror());
|
|
|
+ }
|
|
|
|
|
|
//统一处理订单记录操作
|
|
|
unifiedHandlerOrderRecordFunc(orderDon.getId(), payRequest);
|