Commit 9bf6f6ac authored by zhengyi's avatar zhengyi

订单审批动态更新bug修复

parent e5502acb
...@@ -4376,7 +4376,7 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl ...@@ -4376,7 +4376,7 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
this.checkOrderProcessingApprovalType(currentOrderDO, auditType, auditResult); this.checkOrderProcessingApprovalType(currentOrderDO, auditType, auditResult);
} }
} }
if (currentOrderDO.getAuditType() == 0 && StringUtils.isBlank(currentOrderDO.getAuditResult())) { if (currentOrderDO.getAuditType() == 0 && StringUtils.isNotBlank(currentOrderDO.getAuditResult())) {
currentOrderDO.setAuditResult(""); currentOrderDO.setAuditResult("");
} }
orderMapper.updateById(currentOrderDO); orderMapper.updateById(currentOrderDO);
......
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