Commit 4dc110b3 authored by unset's avatar unset

添加通知信息

parent a6f07ea7
...@@ -1078,10 +1078,12 @@ public class OrderInfoBiz extends BaseBiz<OrderInfoMapper, OrderInfo> { ...@@ -1078,10 +1078,12 @@ public class OrderInfoBiz extends BaseBiz<OrderInfoMapper, OrderInfo> {
old.setPayType(3); old.setPayType(3);
old.setPayTime(new Date()); old.setPayTime(new Date());
old.setAuditStatus(1); old.setAuditStatus(1);
old.setPayStatus(2);
old.setStatus(OrderStatusEnum.ORDER_SEND.getType()); old.setStatus(OrderStatusEnum.ORDER_SEND.getType());
updateSelectiveByIdRe(old); updateSelectiveByIdRe(old);
} else { } else {
old.setAuditStatus(2); old.setAuditStatus(2);
old.setPayStatus(1);
old.setAuditReason(orderInfo.getAuditReason()); old.setAuditReason(orderInfo.getAuditReason());
updateSelectiveByIdRe(old); updateSelectiveByIdRe(old);
} }
......
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