Commit 612a724b by Yujin Seo

Merge branch 'feature/contract/sato/1.0.300_51898_look7' into 'contract/sato/1.0.300'

ローカル保存している件数の補正を外した。

See merge request !285
parents 9158ab5c 03e9c11f
...@@ -1226,17 +1226,17 @@ public class OperationLogic extends AbstractLogic { ...@@ -1226,17 +1226,17 @@ public class OperationLogic extends AbstractLogic {
WorkingReportDao dao = AbstractDao.getDao(WorkingReportDao.class); WorkingReportDao dao = AbstractDao.getDao(WorkingReportDao.class);
// ローカル保存している分を補正する // ローカル保存している分を補正する
Map<Long, Integer> working = dao.getWorkingTaskReportCounts(); // Map<Long, Integer> working = dao.getWorkingTaskReportCounts();
for (OperationDto dto : list) { // for (OperationDto dto : list) {
Integer workingCount = working.get(dto.operationId); // Integer workingCount = working.get(dto.operationId);
if (workingCount != null) { // if (workingCount != null) {
if (dto.reportType == 1) { // if (dto.reportType == 1) {
// 定期点検の場合は、先にレポートが作られるので、その分を差し引く // // 定期点検の場合は、先にレポートが作られるので、その分を差し引く
dto.statusNotStartedCount -= workingCount; // dto.statusNotStartedCount -= workingCount;
} // }
dto.statusWorkingCount += workingCount; // dto.statusWorkingCount += workingCount;
} // }
} // }
return list; return list;
} }
......
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