作業一覧で、ローカル保存している報告数の補正を行うようにした。
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
1276 // Integer workingCount = working.get(dto.operationId); 1277 // if (workingCount != null) { 1278 // if (dto.reportType == 1) { 1279 // // 定期点検の場合は、先にレポートが作られるので、その分を差し引く 1280 // dto.statusNotStartedCount -= workingCount; 1281 // } 1282 // dto.statusWorkingCount += workingCount; 1283 // } 1284 // } 1274 Map<Long, Integer> working = dao.getWorkingTaskReportCounts(); 1275 for (OperationDto dto : list) { 1276 Integer workingCount = working.get(dto.operationId); 1277 if (workingCount != null) { 1278 dto.statusNotStartedCount += workingCount; 1279 } 1280 } -
Developer
ローカル保存しているレコード数を報告の件数に加算
-
-
merged
Toggle commit list