🐛 MALL:修复 issue 提到的 bug
This commit is contained in:
parent
19d5a0c2aa
commit
df9ff3fc5c
|
@ -262,7 +262,7 @@ public class AfterSaleServiceImpl implements AfterSaleService {
|
||||||
// 记录售后日志
|
// 记录售后日志
|
||||||
AfterSaleLogUtils.setAfterSaleInfo(afterSale.getId(), afterSale.getStatus(),
|
AfterSaleLogUtils.setAfterSaleInfo(afterSale.getId(), afterSale.getStatus(),
|
||||||
AfterSaleStatusEnum.BUYER_DELIVERY.getStatus(),
|
AfterSaleStatusEnum.BUYER_DELIVERY.getStatus(),
|
||||||
MapUtil.<String, Object>builder().put("expressName", express.getName())
|
MapUtil.<String, Object>builder().put("deliveryName", express.getName())
|
||||||
.put("logisticsNo", deliveryReqVO.getLogisticsNo()).build());
|
.put("logisticsNo", deliveryReqVO.getLogisticsNo()).build());
|
||||||
|
|
||||||
// TODO 发送售后消息
|
// TODO 发送售后消息
|
||||||
|
|
|
@ -83,7 +83,7 @@ public class TradeBrokerageOrderHandler implements TradeOrderHandler {
|
||||||
if (order.getBrokerageUserId() == null) {
|
if (order.getBrokerageUserId() == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
cancelBrokerage(order.getId(), orderItem.getOrderId());
|
cancelBrokerage(order.getBrokerageUserId(), orderItem.getOrderId());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue