fix:合同台账页面重量不显示
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user