查询显示科目单价;
This commit is contained in:
+5
-2
@@ -175,11 +175,14 @@ public class ContractManageApplicationService {
|
|||||||
if (fieldsName != null && ("装卸费单价".equals(fieldsName) ||
|
if (fieldsName != null && ("装卸费单价".equals(fieldsName) ||
|
||||||
"纸箱贴标单价".equals(fieldsName)||"木箱贴标单价".equals(fieldsName)
|
"纸箱贴标单价".equals(fieldsName)||"木箱贴标单价".equals(fieldsName)
|
||||||
|| "进出仓操作费单价".equals(fieldsName))) {
|
|| "进出仓操作费单价".equals(fieldsName))) {
|
||||||
Map<String, Object> subjectAndPrice = billingParamsList.get(0);
|
Map<String, Object> subjectAndPrice = new HashMap<>();
|
||||||
String sort = (String) stringObjectMap.get("sort");
|
Integer sort = (Integer) stringObjectMap.get("sort");
|
||||||
|
String chargingId = (String) stringObjectMap.get("chargingId");
|
||||||
String price = (String) stringObjectMap1.get("fields" + sort);
|
String price = (String) stringObjectMap1.get("fields" + sort);
|
||||||
subjectAndPrice.put("name", fieldsName);
|
subjectAndPrice.put("name", fieldsName);
|
||||||
subjectAndPrice.put("price", price);
|
subjectAndPrice.put("price", price);
|
||||||
|
subjectAndPrice.put("chargingId", chargingId);
|
||||||
|
subjectAndPrice.put("billingRulesId", billingRulesId);
|
||||||
result.add(subjectAndPrice);
|
result.add(subjectAndPrice);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user