|
|
@@ -1035,7 +1035,7 @@ public class FundIncomeInfoController {
|
|
|
private List<Map> getChildTemplateOption(String id, String serialNum, String curMonth, String startDate, String endDate, String startYearDate) {
|
|
|
|
|
|
List<Map> mapList = new ArrayList<>();
|
|
|
-
|
|
|
+ //1.3.1.1.1 高职食堂管理费(汇总)
|
|
|
List<TemplateOption> templateOptionList = templateOptionService.findByTemplateIdAndNum(id, serialNum + "%", serialNum.length() + 2);
|
|
|
|
|
|
for (TemplateOption item : templateOptionList) {
|
|
|
@@ -1053,7 +1053,7 @@ public class FundIncomeInfoController {
|
|
|
|
|
|
if (item.getIsSum()) {
|
|
|
//为合计行数据
|
|
|
- Map<String, BigDecimal> sumMap = fundIncomeInfoService.sumBudgetRevenue(item.getSerialNum() + "%", startDate, endDate, item.getTemplateId());
|
|
|
+ Map<String, BigDecimal> sumMap = fundIncomeInfoService.sumBudgetRevenue2(item.getSerialNum() + "%", startDate, endDate, item.getTemplateId(),item.getSerialNum());
|
|
|
|
|
|
BigDecimal sumCurBudgetRevenue = BigDecimal.ZERO;
|
|
|
if (sumMap.get("sumCurBudgetRevenue") != null) {
|
|
|
@@ -1070,7 +1070,7 @@ public class FundIncomeInfoController {
|
|
|
|
|
|
map.put("curBudgetRevenue", sumCurBudgetRevenue);
|
|
|
|
|
|
- Map<String, BigDecimal> accSumMap = fundIncomeInfoService.sumBudgetRevenue(item.getSerialNum() + "%", startYearDate, endDate, item.getTemplateId());
|
|
|
+ Map<String, BigDecimal> accSumMap = fundIncomeInfoService.sumBudgetRevenue2(item.getSerialNum() + "%", startYearDate, endDate, item.getTemplateId(),item.getSerialNum());
|
|
|
|
|
|
BigDecimal actualTotalRevenue = BigDecimal.ZERO;
|
|
|
if (accSumMap.get("sumCurMonthReceived") != null) {
|