Browse Source

2024/06/28

master
zelian_wu 2 years ago
parent
commit
2b32ce3e25
  1. 2
      src/main/java/com/spring/modules/shipment/service/impl/ShipmentRollServiceImpl.java
  2. 1
      src/main/java/com/spring/modules/shipment/vo/ShipmentRollPrint.java

2
src/main/java/com/spring/modules/shipment/service/impl/ShipmentRollServiceImpl.java

@ -251,7 +251,7 @@ public class ShipmentRollServiceImpl extends ServiceImpl<ShipmentRollMapper, Shi
// level // level
String level = ""; String level = "";
String phaseCode = part.getPhaseDescription(); String phaseCode = part.getPhaseDescription();
ShipmentRollPrint shipmentRollPrint = new ShipmentRollPrint(vendorCode, ACCPartNo, partDesc, batchNo, retrospectBatchNo, packQty, productionDate, version, bin, config, MCO, tool, level, phaseCode);
ShipmentRollPrint shipmentRollPrint = new ShipmentRollPrint(vendorCode, ACCPartNo, partDesc, batchNo, retrospectBatchNo, packQty, productionDate, version, bin, config, MCO, tool, level, phaseCode,part.getUmId());
list.add(shipmentRollPrint); list.add(shipmentRollPrint);
} }

1
src/main/java/com/spring/modules/shipment/vo/ShipmentRollPrint.java

@ -50,4 +50,5 @@ public class ShipmentRollPrint {
private String level; private String level;
private String phaseCode; private String phaseCode;
private String uom;
} }
Loading…
Cancel
Save