Commit 4923008c authored by 332784038@qq.com's avatar 332784038@qq.com

pda合包装柜列表数据关联单判断错误修复

parent e7567f02
...@@ -610,7 +610,7 @@ public class BoxMergePkgServiceImpl extends AbstractService<BoxMergePkgMapper, B ...@@ -610,7 +610,7 @@ public class BoxMergePkgServiceImpl extends AbstractService<BoxMergePkgMapper, B
item.setUnits(units); item.setUnits(units);
// 是否有关联单 // 是否有关联单
boolean hasRelationOrder = AllOrderItemDOS.stream().anyMatch(t -> t.getGuanLianOrderCount() > 0); boolean hasRelationOrder = orderItemDOS.stream().anyMatch(t -> t.getGuanLianOrderCount() > 0);
item.setHasRelationOrder(hasRelationOrder); item.setHasRelationOrder(hasRelationOrder);
List<BoxOrderCheckInfoDO> installBox = boxMergePkgMapper.getInstallBoxByShipmentId(shipmentId, item.getOrderId()); List<BoxOrderCheckInfoDO> installBox = boxMergePkgMapper.getInstallBoxByShipmentId(shipmentId, item.getOrderId());
......
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