1.储值卡支付同步保存库存消耗记录
This commit is contained in:
parent
fd293f2df0
commit
afb920f360
|
|
@ -405,6 +405,12 @@ public class PayService {
|
||||||
|
|
||||||
producer.printMechine(orderId);
|
producer.printMechine(orderId);
|
||||||
sendOrderToClient(orderInfo);
|
sendOrderToClient(orderInfo);
|
||||||
|
|
||||||
|
// 发送mq消息并保存库存记录
|
||||||
|
JSONObject data = new JSONObject();
|
||||||
|
data.put("orderId", orderInfo.getId());
|
||||||
|
data.put("plat", "miniApp");
|
||||||
|
mQUtils.sendStockSaleMsg(data);
|
||||||
return Result.success(CodeEnum.SUCCESS, "1");
|
return Result.success(CodeEnum.SUCCESS, "1");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue