1.随机资料及配件工具包,机型台数根据发运更新
This commit is contained in:
ljw 2024-11-27 18:58:53 +08:00
parent bec7401ad1
commit 62a6418f88

View File

@ -433,6 +433,7 @@ public class ShippingDetailsFormPlugin extends AbstractBillPlugIn implements Bef
} }
} }
} }
extracted1();
} }
} }
@ -694,6 +695,18 @@ public class ShippingDetailsFormPlugin extends AbstractBillPlugIn implements Bef
this.getView().showMessage("数量不允许低于关联调拨数量;,请重新填写"); this.getView().showMessage("数量不允许低于关联调拨数量;,请重新填写");
this.getModel().setValue("yem_qty", e.getChangeSet()[0].getOldValue()); this.getModel().setValue("yem_qty", e.getChangeSet()[0].getOldValue());
} }
extracted1();
case "yem_isdismantlecar":
extracted();
break;
case "yem_productmodel":
carryReportCategoryAndHsCode(this.getModel(), this.getView(), rowIndex, "yem_customclass");
extracted();
break;
}
}
private void extracted1() {
Map<Long, BigDecimal> map = new HashMap<>(); Map<Long, BigDecimal> map = new HashMap<>();
DynamicObjectCollection yemEsMaterialinfo = this.getModel().getEntryEntity("yem_es_materialinfo"); DynamicObjectCollection yemEsMaterialinfo = this.getModel().getEntryEntity("yem_es_materialinfo");
if (!yemEsMaterialinfo.isEmpty()) { if (!yemEsMaterialinfo.isEmpty()) {
@ -718,14 +731,6 @@ public class ShippingDetailsFormPlugin extends AbstractBillPlugIn implements Bef
} }
} }
} }
case "yem_isdismantlecar":
extracted();
break;
case "yem_productmodel":
carryReportCategoryAndHsCode(this.getModel(), this.getView(), rowIndex, "yem_customclass");
extracted();
break;
}
} }
@Override @Override