Authored by chenchao

set time in stock order

... ... @@ -299,7 +299,11 @@ public class BuyerOrderPaymentService extends AbstractOrderPaymentService {
//离发货截止12小时提醒
DeliverNoticeEvent deliverNoticeEvent = DeliverNoticeEvent.builder().skup(sellerOrderGoods.getId())
.sellerOrderGoods(sellerOrderGoods)
.sellerUid(sellerUid).buyerUid(uid).prdName(sellerOrderGoods.getProductName()).orderCode(orderCode).build();
.sellerUid(sellerUid).buyerUid(uid)
.prdName(sellerOrderGoods.getProductName())
.orderCode(orderCode)
.times(OrderConstant.SellerDeliverNotice.SECOND_TIME)
.build();
EventBusPublisher.publishEvent(deliverNoticeEvent);
//现货->卖家36小时不发货取消;
... ... @@ -334,7 +338,6 @@ public class BuyerOrderPaymentService extends AbstractOrderPaymentService {
.orderAttributes(orderInfo.getAttributes())
.sellerUid(sellerUid).buyerUid(uid)
.prdName(sellerOrderGoods.getProductName())
.times(OrderConstant.SellerDeliverNotice.SECOND_TIME)
.orderCode(orderCode).build();
EventBusPublisher.publishEvent(deliverNoticeEvent);
... ...