|
@@ -165,12 +165,8 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
|
|
|
List<TimeVo> times = vo.getTimes();
|
|
|
times.forEach(timeVo -> {
|
|
|
- List<DutyStatistics> statisticsList;
|
|
|
- if (StringUtils.isNull(deptId)) {
|
|
|
- statisticsList = statisticsService.queryByTimes(null, timeVo.getBeginTime(), timeVo.getEndTime());
|
|
|
- } else {
|
|
|
- statisticsList = statisticsService.queryByTimes(deptId, timeVo.getBeginTime(), timeVo.getEndTime());
|
|
|
- }
|
|
|
+ List<DutyStatistics> statisticsList = statisticsService.queryByTimes(deptId, timeVo.getBeginTime(), timeVo.getEndTime());
|
|
|
+
|
|
|
LocalDate sTime = LocalDate.parse(timeVo.getBeginTime());
|
|
|
LocalDate eTime = LocalDate.parse(timeVo.getEndTime());
|
|
|
List<String> strings = collectLocalDates(sTime, eTime);
|
|
@@ -260,7 +256,7 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
endTime = localDate.with(TemporalAdjusters.lastDayOfMonth()).format(formatter);
|
|
|
}
|
|
|
// AdminCheck check = signInRecordMapper.queryAdminCheck(startTime, endTime);
|
|
|
- return signInRecordMapper.queryAdminCheck(startTime, endTime);
|
|
|
+ return signInRecordMapper.queryAdminCheck(startTime, endTime,type);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -300,11 +296,15 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
int count = unitMapper.queryCount();
|
|
|
day.setTotal(String.valueOf(count));
|
|
|
- day.setCqRate(String.valueOf(Integer.parseInt(day.getCq())/count*100));
|
|
|
+ day.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/count*100));
|
|
|
day.setDayRate(statisticsService.queryRate(startTime, null, null, "2"));
|
|
|
|
|
|
int endDayOfWeek = localDate.get(WeekFields.ISO.weekOfWeekBasedYear());
|
|
|
- day.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
|
+ String rate = statisticsService.queryRate(startTime, null, null, "3");
|
|
|
+ if (StringUtils.isEmpty(rate)) {
|
|
|
+ rate = "0.00";
|
|
|
+ }
|
|
|
+ day.setWeekRate(rate);
|
|
|
statistics.setDay(day);
|
|
|
} else if ("2".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now();
|
|
@@ -314,15 +314,28 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
AdminStatisticsWeek week = new AdminStatisticsWeek();
|
|
|
week.setQq(day.getCq());
|
|
|
int weekNum = localDate.get(ChronoField.DAY_OF_WEEK);
|
|
|
+ if (weekNum == 6) {
|
|
|
+ weekNum = 1;
|
|
|
+ } else if (weekNum == 7) {
|
|
|
+ weekNum = 2;
|
|
|
+ } else {
|
|
|
+ weekNum += 2;
|
|
|
+ }
|
|
|
|
|
|
week.setTotal(String.valueOf(weekNum));
|
|
|
- week.setCqRate(String.valueOf(Integer.parseInt(day.getCq())/weekNum*100));
|
|
|
+ week.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/weekNum*100));
|
|
|
|
|
|
int endDayOfWeek = localDate.get(WeekFields.ISO.weekOfWeekBasedYear());
|
|
|
- week.setDayRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
+ week.setRz(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null));
|
|
|
|
|
|
- week.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
|
+ week.setDayRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
|
|
|
+ // week.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
|
+ String rate = statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3");
|
|
|
+ if (StringUtils.isEmpty(rate)) {
|
|
|
+ rate = "0.00";
|
|
|
+ }
|
|
|
+ week.setWeekRate(rate);
|
|
|
statistics.setWeek(week);
|
|
|
} else if ("3".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now();
|
|
@@ -333,12 +346,18 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
month.setQq(day.getCq());
|
|
|
int monthNum = localDate.get(ChronoField.DAY_OF_MONTH);
|
|
|
month.setTotal(String.valueOf(monthNum));
|
|
|
- month.setCqRate(String.valueOf(Integer.parseInt(day.getCq())/monthNum*100));
|
|
|
+ month.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/monthNum*100));
|
|
|
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
String yearMonth = localDate.format(df);
|
|
|
+ month.setRz(statisticsService.queryLogCount(null, null, yearMonth));
|
|
|
month.setDayRate(statisticsService.queryRate(null, null, yearMonth, "2"));
|
|
|
|
|
|
- month.setWeekRate(statisticsService.queryRate(null, null, yearMonth, "3"));
|
|
|
+ // month.setWeekRate(statisticsService.queryRate(null, null, yearMonth, "3"));
|
|
|
+ String rate = statisticsService.queryRate(null, null, yearMonth, "3");
|
|
|
+ if (StringUtils.isEmpty(rate)) {
|
|
|
+ rate = "0.00";
|
|
|
+ }
|
|
|
+ month.setWeekRate(rate);
|
|
|
statistics.setMonth(month);
|
|
|
} else if ("4".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now().minusDays(1);
|
|
@@ -347,11 +366,16 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
int count = unitMapper.queryCount();
|
|
|
day.setTotal(String.valueOf(count));
|
|
|
- day.setCqRate(String.valueOf(Integer.parseInt(day.getCq())/count*100));
|
|
|
+ day.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/count*100));
|
|
|
day.setDayRate(statisticsService.queryRate(startTime, null, null, "2"));
|
|
|
|
|
|
int endDayOfWeek = localDate.get(WeekFields.ISO.weekOfWeekBasedYear());
|
|
|
- day.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
|
+ // day.setWeekRate(statisticsService.queryRate(startTime, null, null, "3"));
|
|
|
+ String rate = statisticsService.queryRate(startTime, null, null, "3");
|
|
|
+ if (StringUtils.isEmpty(rate)) {
|
|
|
+ rate = "0.00";
|
|
|
+ }
|
|
|
+ day.setWeekRate(rate);
|
|
|
statistics.setDay(day);
|
|
|
} else if ("5".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now().minusWeeks(1);
|
|
@@ -361,11 +385,17 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
AdminStatisticsWeek week = new AdminStatisticsWeek();
|
|
|
week.setQq(day.getCq());
|
|
|
week.setTotal("7");
|
|
|
- week.setCqRate(String.valueOf(Integer.parseInt(day.getCq())/7*100));
|
|
|
+ week.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/7*100));
|
|
|
int endDayOfWeek = localDate.get(WeekFields.ISO.weekOfWeekBasedYear());
|
|
|
+ week.setRz(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null));
|
|
|
week.setDayRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
|
|
|
- week.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
|
+ // week.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
|
+ String rate = statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3");
|
|
|
+ if (StringUtils.isEmpty(rate)) {
|
|
|
+ rate = "0.00";
|
|
|
+ }
|
|
|
+ week.setWeekRate(rate);
|
|
|
statistics.setWeek(week);
|
|
|
} else {
|
|
|
LocalDate localDate = LocalDate.now().minusMonths(1);
|
|
@@ -374,14 +404,20 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
AdminStatisticsMonth month = new AdminStatisticsMonth();
|
|
|
month.setQq(day.getCq());
|
|
|
- int monthNum = LocalDate.now().lengthOfMonth();
|
|
|
+ int monthNum = localDate.lengthOfMonth();
|
|
|
month.setTotal(String.valueOf(monthNum));
|
|
|
- month.setCqRate(String.valueOf(Integer.parseInt(day.getCq())/monthNum*100));
|
|
|
+ month.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/monthNum*100));
|
|
|
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
String yearMonth = localDate.format(df);
|
|
|
+ month.setRz(statisticsService.queryLogCount(null, null, yearMonth));
|
|
|
month.setDayRate(statisticsService.queryRate(null, null, yearMonth, "2"));
|
|
|
|
|
|
- month.setWeekRate(statisticsService.queryRate(null, null, yearMonth, "3"));
|
|
|
+ // month.setWeekRate(statisticsService.queryRate(null, null, yearMonth, "3"));
|
|
|
+ String rate = statisticsService.queryRate(null, null, yearMonth, "3");
|
|
|
+ if (StringUtils.isEmpty(rate)) {
|
|
|
+ rate = "0.00";
|
|
|
+ }
|
|
|
+ month.setWeekRate(rate);
|
|
|
statistics.setMonth(month);
|
|
|
}
|
|
|
return statistics;
|