|
|
@@ -177,7 +177,7 @@ public class OrderExpirationServiceImpl implements OrderExpirationService, Comma
|
|
|
//退款到账通知
|
|
|
LifeNotice lifeNotice2 = buildUserLifeNotice(order, "退款到账通知", "您的编号为" + orderNo + "的订单,订单金额已原路返还至您的支付渠道,请查收。");
|
|
|
WebSocketVo webSocketVo2 = buildWebSocketVo(lifeNotice2);
|
|
|
- lifeNotice2.setCreatedTime(DateUtils.calcMinute(lifeNotice2.getCreatedTime(), 2));
|
|
|
+ lifeNotice2.setCreatedTime(DateUtils.calcMinute(new Date(), 2));
|
|
|
|
|
|
lifeNoticeMapper.insert(lifeNotice2);
|
|
|
webSocketProcess.sendMessage(lifeNotice2.getReceiverId(), JSONObject.from(webSocketVo2).toJSONString());
|
|
|
@@ -187,6 +187,7 @@ public class OrderExpirationServiceImpl implements OrderExpirationService, Comma
|
|
|
LawyerConsultationOrder update = new LawyerConsultationOrder();
|
|
|
update.setId(order.getId());
|
|
|
update.setOrderStatus(5);
|
|
|
+ update.setApplyRefundTime(new Date());
|
|
|
orderMapper.updateById( update);
|
|
|
}
|
|
|
}
|