tangjiang 10 月之前
父节点
当前提交
8ab0dc9432
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Hotline.Application/StatisticalReport/OrderReportApplication.cs

+ 2 - 2
src/Hotline.Application/StatisticalReport/OrderReportApplication.cs

@@ -221,7 +221,7 @@ namespace Hotline.Application.StatisticalReport
              })
               .MergeTable()
               .WhereIF(IsCenter == false, it => it.OrgCode.StartsWith(_sessionContext.RequiredOrgId))
-             .GroupBy(d => new { d.OrgCode, d.Id, d.Status })
+             .GroupBy(d => new { d.OrgCode})
              .Select(d => new DepartmentalProcessingStatisticsDataDto
              {
                  OrgCode = d.OrgCode,
@@ -544,7 +544,7 @@ namespace Hotline.Application.StatisticalReport
                  o.Id
              })
               .MergeTable()
-             .GroupBy(d => new { d.OrgCode, d.Id, d.Status })
+             .GroupBy(d => new { d.OrgCode })
              .Select(d => new DepartmentalProcessingStatisticsDataDto
              {
                  OrgCode = d.OrgCode,