|
@@ -187,11 +187,7 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
list.add(log);
|
|
|
});
|
|
|
|
|
|
- long l = weekReportRecordMapper.queryWeekCount(deptId, timeVo.getBeginTime(), timeVo.getEndTime());
|
|
|
- weekMap.put(timeVo.getEndTime(),"2");
|
|
|
- if (l > 0) {
|
|
|
- weekMap.put(timeVo.getEndTime(),"1");
|
|
|
- }
|
|
|
+ weekMap.put(timeVo.getEndTime(),statisticsService.queryWeekStatus(timeVo.getEndTime()));
|
|
|
});
|
|
|
|
|
|
checkCalender.setDateList(list);
|
|
@@ -248,8 +244,14 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
endTime = localDate.format(formatter);
|
|
|
} else if ("week".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now().minusWeeks(1);
|
|
|
- startTime = localDate.with(DayOfWeek.MONDAY).format(formatter);
|
|
|
- endTime = localDate.with(DayOfWeek.SUNDAY).format(formatter);
|
|
|
+ int value = LocalDate.now().getDayOfWeek().getValue();
|
|
|
+ if (value == 6 || value == 7) {
|
|
|
+ startTime = localDate.with(DayOfWeek.SATURDAY).format(formatter);
|
|
|
+ endTime = LocalDate.now().with(DayOfWeek.FRIDAY).format(formatter);
|
|
|
+ } else {
|
|
|
+ startTime = localDate.minusWeeks(1).with(DayOfWeek.SATURDAY).format(formatter);
|
|
|
+ endTime = localDate.with(DayOfWeek.FRIDAY).format(formatter);
|
|
|
+ }
|
|
|
} else {
|
|
|
LocalDate localDate = LocalDate.now().minusMonths(1);
|
|
|
startTime = localDate.with(TemporalAdjusters.firstDayOfMonth()).format(formatter);
|
|
@@ -308,11 +310,24 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
statistics.setDay(day);
|
|
|
} else if ("2".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now();
|
|
|
- startTime = localDate.with(DayOfWeek.MONDAY).format(formatter);
|
|
|
- endTime = localDate.with(DayOfWeek.SUNDAY).format(formatter);
|
|
|
- AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
+ int value = localDate.getDayOfWeek().getValue();
|
|
|
+ if (value == 6 || value == 7) {
|
|
|
+ startTime = localDate.with(DayOfWeek.SATURDAY).format(formatter);
|
|
|
+ endTime = localDate.plusDays(1).with(DayOfWeek.FRIDAY).format(formatter);
|
|
|
+ } else {
|
|
|
+ startTime = localDate.minusWeeks(1).with(DayOfWeek.SATURDAY).format(formatter);
|
|
|
+ endTime = localDate.with(DayOfWeek.FRIDAY).format(formatter);
|
|
|
+ }
|
|
|
+ // startTime = localDate.with(DayOfWeek.MONDAY).format(formatter);
|
|
|
+ // endTime = localDate.with(DayOfWeek.SUNDAY).format(formatter);
|
|
|
+ // AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
AdminStatisticsWeek week = new AdminStatisticsWeek();
|
|
|
- week.setQq(day.getCq());
|
|
|
+ int endDayOfWeek = localDate.get(WeekFields.ISO.weekOfWeekBasedYear());
|
|
|
+ if (value == 6 || value == 7) {
|
|
|
+ endDayOfWeek += 1;
|
|
|
+ }
|
|
|
+ // week.setQq(day.getCq());
|
|
|
+ week.setQq(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null, "1"));
|
|
|
int weekNum = localDate.get(ChronoField.DAY_OF_WEEK);
|
|
|
if (weekNum == 6) {
|
|
|
weekNum = 1;
|
|
@@ -323,10 +338,9 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
}
|
|
|
|
|
|
week.setTotal(String.valueOf(weekNum));
|
|
|
- week.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/weekNum*100));
|
|
|
+ week.setCqRate(String.format("%.2f", Double.parseDouble(week.getQq())/weekNum*100));
|
|
|
|
|
|
- int endDayOfWeek = localDate.get(WeekFields.ISO.weekOfWeekBasedYear());
|
|
|
- week.setRz(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null));
|
|
|
+ week.setRz(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
|
|
|
week.setDayRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
|
|
@@ -341,15 +355,17 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
LocalDate localDate = LocalDate.now();
|
|
|
startTime = localDate.with(TemporalAdjusters.firstDayOfMonth()).format(formatter);
|
|
|
endTime = localDate.with(TemporalAdjusters.lastDayOfMonth()).format(formatter);
|
|
|
- AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
+ // AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
AdminStatisticsMonth month = new AdminStatisticsMonth();
|
|
|
- month.setQq(day.getCq());
|
|
|
- int monthNum = localDate.get(ChronoField.DAY_OF_MONTH);
|
|
|
- month.setTotal(String.valueOf(monthNum));
|
|
|
- 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.setQq(day.getCq());
|
|
|
+ month.setQq(statisticsService.queryLogCount(null, null, yearMonth, "1"));
|
|
|
+ int monthNum = localDate.get(ChronoField.DAY_OF_MONTH);
|
|
|
+ month.setTotal(String.valueOf(monthNum));
|
|
|
+ month.setCqRate(String.format("%.2f", Double.parseDouble(month.getQq())/monthNum*100));
|
|
|
+
|
|
|
+ month.setRz(statisticsService.queryLogCount(null, null, yearMonth, "2"));
|
|
|
month.setDayRate(statisticsService.queryRate(null, null, yearMonth, "2"));
|
|
|
|
|
|
// month.setWeekRate(statisticsService.queryRate(null, null, yearMonth, "3"));
|
|
@@ -379,15 +395,28 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
statistics.setDay(day);
|
|
|
} else if ("5".equals(type)) {
|
|
|
LocalDate localDate = LocalDate.now().minusWeeks(1);
|
|
|
- startTime = localDate.with(DayOfWeek.MONDAY).format(formatter);
|
|
|
- endTime = localDate.with(DayOfWeek.SUNDAY).format(formatter);
|
|
|
- AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
+ int value = LocalDate.now().getDayOfWeek().getValue();
|
|
|
+ if (value == 6 || value == 7) {
|
|
|
+ startTime = localDate.with(DayOfWeek.SATURDAY).format(formatter);
|
|
|
+ endTime = LocalDate.now().with(DayOfWeek.FRIDAY).format(formatter);
|
|
|
+ } else {
|
|
|
+ startTime = localDate.minusWeeks(1).with(DayOfWeek.SATURDAY).format(formatter);
|
|
|
+ endTime = localDate.with(DayOfWeek.FRIDAY).format(formatter);
|
|
|
+ }
|
|
|
+ // startTime = localDate.with(DayOfWeek.MONDAY).format(formatter);
|
|
|
+ // endTime = localDate.with(DayOfWeek.SUNDAY).format(formatter);
|
|
|
+ // AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
AdminStatisticsWeek week = new AdminStatisticsWeek();
|
|
|
- week.setQq(day.getCq());
|
|
|
- week.setTotal("7");
|
|
|
- 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));
|
|
|
+ if (value == 6 || value == 7) {
|
|
|
+ endDayOfWeek += 1;
|
|
|
+ }
|
|
|
+ // week.setQq(day.getCq());
|
|
|
+ week.setQq(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null, "1"));
|
|
|
+ week.setTotal("7");
|
|
|
+ week.setCqRate(String.format("%.2f", Double.parseDouble(week.getQq())/7*100));
|
|
|
+
|
|
|
+ week.setRz(statisticsService.queryLogCount(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
week.setDayRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "2"));
|
|
|
|
|
|
// week.setWeekRate(statisticsService.queryRate(null, String.valueOf(endDayOfWeek), null, "3"));
|
|
@@ -401,15 +430,16 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
LocalDate localDate = LocalDate.now().minusMonths(1);
|
|
|
startTime = localDate.with(TemporalAdjusters.firstDayOfMonth()).format(formatter);
|
|
|
endTime = localDate.with(TemporalAdjusters.lastDayOfMonth()).format(formatter);
|
|
|
- AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
+ // AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
AdminStatisticsMonth month = new AdminStatisticsMonth();
|
|
|
- month.setQq(day.getCq());
|
|
|
- int monthNum = localDate.lengthOfMonth();
|
|
|
- month.setTotal(String.valueOf(monthNum));
|
|
|
- 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.setQq(day.getCq());
|
|
|
+ month.setQq(statisticsService.queryLogCount(null, null, yearMonth, "1"));
|
|
|
+ int monthNum = localDate.lengthOfMonth();
|
|
|
+ month.setTotal(String.valueOf(monthNum));
|
|
|
+ month.setCqRate(String.format("%.2f", Double.parseDouble(month.getQq())/monthNum*100));
|
|
|
+ month.setRz(statisticsService.queryLogCount(null, null, yearMonth, "2"));
|
|
|
month.setDayRate(statisticsService.queryRate(null, null, yearMonth, "2"));
|
|
|
|
|
|
// month.setWeekRate(statisticsService.queryRate(null, null, yearMonth, "3"));
|