去掉了
This commit is contained in:
parent
d0c29666ad
commit
d73f83e340
|
@ -171,13 +171,6 @@ namespace CompetitionAPI.Controllers.api
|
||||||
dic[a.First().INSTRG_DATE.Value.Month]++;
|
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));
|
return Json(Tool.GetJsonWithCode(APICode.Success, dic));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,14 +203,6 @@ namespace CompetitionAPI.Controllers.api
|
||||||
dic[a.INSTRG_DATE.Value.Month] += a.BILL_GROSS_WT.Value;
|
dic[a.INSTRG_DATE.Value.Month] += a.BILL_GROSS_WT.Value;
|
||||||
});
|
});
|
||||||
|
|
||||||
//总数
|
|
||||||
decimal yearNum = 0;
|
|
||||||
foreach (var item in dic)
|
|
||||||
{
|
|
||||||
yearNum += item.Value;
|
|
||||||
}
|
|
||||||
dic.Add(13, yearNum);
|
|
||||||
|
|
||||||
return Json(Tool.GetJsonWithCode(APICode.Success, dic));
|
return Json(Tool.GetJsonWithCode(APICode.Success, dic));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue