Commit dc75f953 by 纪旭 韦

修复汇总表少一个月数据

parent fc3a95ba
......@@ -2165,6 +2165,11 @@
<param name="query"></param>
<returns></returns>
</member>
<member name="T:Performance.Api.ClearLoggerJob">
<summary>
删除历史日志
</summary>
</member>
<member name="T:Performance.Api.ExpirationLimitMiddleware">
<summary>
过期限制
......
......@@ -2104,6 +2104,7 @@ public QueryComputeByDateGetPage GetPerformanceSummary(HospitalGrantSummary requ
string.IsNullOrEmpty(request.EndTime) || !DateTime.TryParse(request.EndTime, out edate))
throw new PerformanceException("请输入正确的时间");
request.EndTime = Convert.ToDateTime(request.EndTime).AddMonths(1).ToString();
var datas = reportRepository.QueryComputeByDateAndTotal(ViewName, request);
if (null == datas)
throw new PerformanceException("当前绩效记录不存在");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment