查询显示科目单价;

This commit is contained in:
王奎兴
2026-04-02 16:20:22 +08:00
parent 39541c7005
commit ebb3d7c019
@@ -175,11 +175,14 @@ public class ContractManageApplicationService {
if (fieldsName != null && ("装卸费单价".equals(fieldsName) ||
"纸箱贴标单价".equals(fieldsName)||"木箱贴标单价".equals(fieldsName)
|| "进出仓操作费单价".equals(fieldsName))) {
Map<String, Object> subjectAndPrice = billingParamsList.get(0);
String sort = (String) stringObjectMap.get("sort");
Map<String, Object> subjectAndPrice = new HashMap<>();
Integer sort = (Integer) stringObjectMap.get("sort");
String chargingId = (String) stringObjectMap.get("chargingId");
String price = (String) stringObjectMap1.get("fields" + sort);
subjectAndPrice.put("name", fieldsName);
subjectAndPrice.put("price", price);
subjectAndPrice.put("chargingId", chargingId);
subjectAndPrice.put("billingRulesId", billingRulesId);
result.add(subjectAndPrice);
}
}