|
|
@@ -801,6 +801,7 @@ public class OutboundSaleOrderService extends BaseService<Outbound> {
|
|
|
outbound.setOutId(outboundVO.getOutId());
|
|
|
outbound.setOutQty(sumQty);
|
|
|
outbound.setOutAmt(sumAmt);
|
|
|
+ outbound.setAnnexPaths(outboundVO.getAnnexPaths());
|
|
|
//修改
|
|
|
outboundMapper.update(outbound,
|
|
|
new UpdateWrapper<Outbound>().lambda().eq(Outbound::getOutId, UUID.fromString(outbound.getOutId()))
|
|
|
@@ -968,6 +969,7 @@ public class OutboundSaleOrderService extends BaseService<Outbound> {
|
|
|
outbound.setOutId(outboundVO.getOutId());
|
|
|
outbound.setOutingQty(sumQty);
|
|
|
outbound.setOutingAmt(sumAmt);
|
|
|
+ outbound.setAnnexPaths(outboundVO.getAnnexPaths());
|
|
|
//修改
|
|
|
outboundMapper.update(outbound,
|
|
|
new UpdateWrapper<Outbound>().lambda().eq(Outbound::getOutId, UUID.fromString(outbound.getOutId()))
|