Commit 5d218482 authored by zhengyi's avatar zhengyi

审批状态bug修复

parent 4a9c3b86
......@@ -485,6 +485,8 @@ public class OrderCargoControlServiceImpl extends AbstractService<OrderCargoCont
}
OrderCargoControlApplyVO applyVO = JSONObject.parseObject(orderApprovalDO.getDetails(), OrderCargoControlApplyVO.class);
orderApprovalDO.setStatus(result);
applyVO.setApplyStatus(result);
orderApprovalDO.setDetails(JSONObject.toJSONString(applyVO));
List<ApplyInfoVO> list = new ArrayList<>();
String msg = "";
if (result == 1) {
......@@ -552,8 +554,6 @@ public class OrderCargoControlServiceImpl extends AbstractService<OrderCargoCont
}
} else if (orderApprovalDO.getType() == 62) {
// TODO 海外仓修改申请
msg = "海外仓修改申请审批通过";
ApplyInfoVO applyInfoVO = new ApplyInfoVO();
applyInfoVO.setName("订单修改为海外仓模式");
......
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