|
@@ -376,11 +376,19 @@ public class DutyWorkbenchServiceImpl implements IDutyWorkbenchService {
|
|
|
month.setWeekRate(rate);
|
|
|
statistics.setMonth(month);
|
|
|
} else if ("4".equals(type)) {
|
|
|
- LocalDate localDate = LocalDate.now().minusDays(1);
|
|
|
+
|
|
|
+ LocalDate now = LocalDate.now();
|
|
|
+ String startDate = now.format(formatter);
|
|
|
+ String endDate = now.format(formatter);
|
|
|
+ AdminStatisticsDay statisticsNow = signInRecordMapper.queryAdminStatisticsNow(startDate, endDate);
|
|
|
+
|
|
|
+ LocalDate localDate = now.minusDays(1);
|
|
|
startTime = localDate.format(formatter);
|
|
|
endTime = localDate.format(formatter);
|
|
|
AdminStatisticsDay day = signInRecordMapper.queryAdminStatisticsDay(startTime, endTime);
|
|
|
int count = unitMapper.queryCount();
|
|
|
+ day.setQd(statisticsNow.getQd());
|
|
|
+ day.setQt(statisticsNow.getQt());
|
|
|
day.setTotal(String.valueOf(count));
|
|
|
day.setCqRate(String.format("%.2f", Double.parseDouble(day.getCq())/count*100));
|
|
|
day.setDayRate(statisticsService.queryRateDay(startTime, null, null, "2"));
|