|
|
@@ -374,25 +374,4 @@ public class KafkaConsumer {
|
|
|
}
|
|
|
|
|
|
|
|
|
- //--------补全退货退款订单的物流信息---------------
|
|
|
- /**
|
|
|
- * 退货退款订单的物流信息补全
|
|
|
- *
|
|
|
- * @param afterSalesId
|
|
|
- */
|
|
|
- @KafkaListener(
|
|
|
- topics = "aftersales.express",
|
|
|
- groupId = "pay2-group"
|
|
|
- )
|
|
|
- public void aftersalesExpress(String data) {
|
|
|
- //通过售后id获取默认商家售后退货地址
|
|
|
-
|
|
|
- JSONObject jsonObject = JSONObject.parseObject(data);
|
|
|
- String afterSalesId = jsonObject.getString("afterSalesId");
|
|
|
- String orderSn = jsonObject.getString("orderSn");
|
|
|
- paySupplyService.executeAfterSalesExpress(afterSalesId,orderSn);
|
|
|
- log.info("=======退货退款订单的物流信息补全:{} =======", orderSn);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
}
|