fix:合同台账页面重量不显示

This commit is contained in:
2024-07-10 13:37:52 +08:00
parent 3ba5270bf6
commit a69959aa61

View File

@@ -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);
}