From a69959aa61a8b81cd1eaee2bf8515bfb8a825478 Mon Sep 17 00:00:00 2001 From: liuxy Date: Wed, 10 Jul 2024 13:37:52 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E5=90=88=E5=90=8C=E5=8F=B0?= =?UTF-8?q?=E8=B4=A6=E9=A1=B5=E9=9D=A2=E9=87=8D=E9=87=8F=E4=B8=8D=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pcs/service/impl/PcsIfPurchaseorderprocServiceImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }