查询显示科目单价;
This commit is contained in:
+5
-2
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user