Commit a0286051 authored by knight's avatar knight

bug210 【订单列表-修改货值】预装反审中的订单,应该能进行<修改货值>操作

parent 8e887d71
......@@ -1831,7 +1831,7 @@ public class OrderServiceImpl extends AbstractService<OrderMapper, OrderDO> impl
throw exception(ORDER_IS_APPROVAL_IN_PROCESS);
}
// 2025年1月15日 增加订单修改货值功能,预装后可单独修改货值
if (vo.getShipmentState() > 0 && vo.getShipmentState() != 304 ) {
if (vo.getShipmentState() > 0 && !(vo.getShipmentState() == 304 || vo.getShipmentState() == 305) ) {
throw exception(ORDER_SHIPMENT_NOT_UPDATE);
}
// 获取功能开关
......
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