加全年总数

This commit is contained in:
陈向学 2024-06-27 09:44:21 +08:00
parent 9779619812
commit d0c29666ad
1 changed files with 15 additions and 1 deletions

View File

@ -171,6 +171,13 @@ namespace CompetitionAPI.Controllers.api
dic[a.First().INSTRG_DATE.Value.Month]++;
});
//总数
decimal yearNum = 0;
foreach (var item in dic)
{
yearNum += item.Value;
}
dic.Add(13, yearNum);
return Json(Tool.GetJsonWithCode(APICode.Success, dic));
}
@ -203,7 +210,14 @@ namespace CompetitionAPI.Controllers.api
dic[a.INSTRG_DATE.Value.Month] += a.BILL_GROSS_WT.Value;
});
var data = new { dic };
//总数
decimal yearNum = 0;
foreach (var item in dic)
{
yearNum += item.Value;
}
dic.Add(13, yearNum);
return Json(Tool.GetJsonWithCode(APICode.Success, dic));
}