Commit 4cd3bf3b authored by zhengyi's avatar zhengyi

当前文案"控货订单发货人控货无收货人"修改为"控货订单是否有无收货人"

parent 4970ec4a
...@@ -2041,7 +2041,7 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl ...@@ -2041,7 +2041,7 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
// TODO 非控货订单是否必须有收货人 // TODO 非控货订单是否必须有收货人
if (vo.getIsCargoControl() && vo.getHasConsignee() != hasConsignee) { if (vo.getIsCargoControl() && vo.getHasConsignee() != hasConsignee) {
ApplyInfoVO infoVO = new ApplyInfoVO(); ApplyInfoVO infoVO = new ApplyInfoVO();
infoVO.setName("控货订单发货人控货无收货人"); infoVO.setName("控货订单是否有无收货人");
infoVO.setOrgValue(vo.getHasConsignee() ? "有" : "无"); infoVO.setOrgValue(vo.getHasConsignee() ? "有" : "无");
infoVO.setNewValue(hasConsignee ? "有" : "无"); infoVO.setNewValue(hasConsignee ? "有" : "无");
vo.setHasConsignee(hasConsignee); vo.setHasConsignee(hasConsignee);
......
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