Browse Source

Merge remote-tracking branch 'origin/master'

master
常熟吴彦祖 4 weeks ago
parent
commit
bf76dcf72d
  1. 1
      src/main/java/com/gaotao/modules/handlingunit/controller/PdaLabelController.java

1
src/main/java/com/gaotao/modules/handlingunit/controller/PdaLabelController.java

@ -216,6 +216,7 @@ public class PdaLabelController extends AbstractController {
BeanUtils.copyProperties(originalUnit, newUnit); BeanUtils.copyProperties(originalUnit, newUnit);
newUnit.setUnitId(newUnitId); newUnit.setUnitId(newUnitId);
newUnit.setQty(splitQty); // 新标签数量 newUnit.setQty(splitQty); // 新标签数量
newUnit.setOriginalQty(splitQty); // 新标签原始数量
newUnit.setSourceType("SPLIT"); // 来源类型拆分 newUnit.setSourceType("SPLIT"); // 来源类型拆分
newUnit.setParentUnitId(unitId); // 原标签编码 newUnit.setParentUnitId(unitId); // 原标签编码
newUnit.setCreatedDate(new Date()); newUnit.setCreatedDate(new Date());

Loading…
Cancel
Save