TANG JIANG 1 년 전
부모
커밋
fde4eb5a8e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Hotline.Share/Dtos/Order/DepartmentAcceptanceTypeStatisticsDto.cs

+ 1 - 1
src/Hotline.Share/Dtos/Order/DepartmentAcceptanceTypeStatisticsDto.cs

@@ -88,7 +88,7 @@
         {
             if (count != 0 && Times != null && Times != 0)
             {
-                return Math.Round((Times.Value / (double)count) * 100, 2);
+                return Math.Round((Times.Value / (double)count), 2);
             }
             return 0;
         }