diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/pcs/service/impl/PcsIfPurchaseorderprocServiceImpl.java b/mes/hd/nladmin-system/src/main/java/org/nl/wms/pcs/service/impl/PcsIfPurchaseorderprocServiceImpl.java index 2db9ae0b..50e3a536 100644 --- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/pcs/service/impl/PcsIfPurchaseorderprocServiceImpl.java +++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/pcs/service/impl/PcsIfPurchaseorderprocServiceImpl.java @@ -244,11 +244,11 @@ public class PcsIfPurchaseorderprocServiceImpl implements PcsIfPurchaseorderproc && row.getString("item_code").equals(jsonObject.getString("material_code"))).findAny(); jsonObject.put("subscribedate",first.isPresent() ? first.get().get("subscribedate"): ""); // 合同重量 - jsonObject.put("qty_ht",first.isPresent() ? first.get().get("QTY_HT"): 0); + jsonObject.put("qty_ht",first.isPresent() ? first.get().get("qty_ht"): 0); // 合同未到货重量 - jsonObject.put("qty_zt",first.isPresent() ? first.get().get("QTY_ZT"): 0); + jsonObject.put("qty_zt",first.isPresent() ? first.get().get("qty_zt"): 0); // 合同金额 - jsonObject.put("norigtaxmny",first.isPresent() ? first.get().get("NORIGTAXMNY"): 0); + jsonObject.put("norigtaxmny",first.isPresent() ? first.get().get("norigtaxmny"): 0); }