Commit dbc058ed authored by zhengyi's avatar zhengyi

已出货订单修改计价都需要更新应收单

parent 454adc55
......@@ -2739,6 +2739,10 @@ public class OrderBusinessServiceImpl extends AbstractService<OrderMapper, Order
// 处理未报价时,如果是已入仓产品去生成应收
isPayAdvanceException = this.addOrderReceivable(orderDO,
1);
} else if (orderDO.getShipmentState() > 0) {
// 已出货订单修改计价都需要更新应收单
isPayAdvanceException = this.addOrderReceivable(orderDO,
1);
} else {
isPayAdvanceException = this.addOrderReceivable(orderDO,
2);
......
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