Преглед изворни кода

获取发货单总数量字段修改成 plantotalbox

liuhong пре 2 месеци
родитељ
комит
70c97ee14e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/main/java/com/sy/coinage/workshop/component/ScreenComponent.java

+ 1 - 1
src/main/java/com/sy/coinage/workshop/component/ScreenComponent.java

@@ -239,7 +239,7 @@ public class ScreenComponent {
                 List<Delivery> delivery = this.deliveryList(productPlan.getProductId(), productPlan.getCreateTime());
                 if (delivery != null && delivery.size() > 0 && totalPalnBox > 0) {
                     // 取合计箱数
-                    Integer total = delivery.stream().mapToInt(s -> s.getPlanBoxNum()).sum();
+                    Integer total = delivery.stream().mapToInt(s -> s.getPlanTotalBox()).sum();
                     Integer r = total * 100 / totalPalnBox;
                     inventory.add(r);
                 } else {