Commit 6336d91a by 徐康

麦咖啡推送数据

parent 32dd084b
......@@ -2537,7 +2537,7 @@ public class MCCafeOrderServiceImpl implements MCCafeOrderService {
for(OrderInfoReqs orderInfoReqs : response.getResult()) {
try {
if(StringUtils.isBlank(orderInfoReqs.getReceiveTime())) {
orderInfoReqs.setReceiveTime(new Date().getTime()+"");
orderInfoReqs.setReceiveTime(DateUtil.addHours(new Date(Long.valueOf(orderInfoReqs.getCreateTime())), 1).getTime()+"");
}
McCafePushOrderDto mcCafePushOrderDto = convert2McCafePushOrderInfo(orderInfoReqs);
AppLogUtil.infoLog("订单推送入参: "+JSON.toJSONString(mcCafePushOrderDto),null,null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment