| Line 315... |
Line 315... |
| 315 |
LOGGER.info("lwDays" + lwDays);
|
315 |
LOGGER.info("lwDays" + lwDays);
|
| 316 |
|
316 |
|
| 317 |
LOGGER.info("leads" + leads);
|
317 |
LOGGER.info("leads" + leads);
|
| 318 |
List<String> stateNames = stateRepository.selectAll().stream().map(x -> x.getName()).collect(Collectors.toList());
|
318 |
List<String> stateNames = stateRepository.selectAll().stream().map(x -> x.getName()).collect(Collectors.toList());
|
| 319 |
// List<AuthUser> authUsers = authRepository.selectAllActiveUser();
|
319 |
// List<AuthUser> authUsers = authRepository.selectAllActiveUser();
|
| - |
|
320 |
List<AuthUser> authUsers = new ArrayList<>();
|
| 320 |
List<AuthUser> authUsers = csService.getAuthUserIds(ProfitMandiConstants.TICKET_CATEGORY_SALES, Arrays.asList(EscalationType.L1, EscalationType.L2, EscalationType.L3));
|
321 |
List<AuthUser> salesUsers = csService.getAuthUserIds(ProfitMandiConstants.TICKET_CATEGORY_SALES, Arrays.asList(EscalationType.L1, EscalationType.L2, EscalationType.L3));
|
| - |
|
322 |
List<AuthUser> abmUsers = csService.getAuthUserIds(ProfitMandiConstants.TICKET_CATEGORY_ABM, Arrays.asList(EscalationType.L1, EscalationType.L2, EscalationType.L3));
|
| - |
|
323 |
authUsers.addAll(salesUsers);
|
| - |
|
324 |
authUsers.addAll(abmUsers);
|
| 321 |
LocalDate lastDate = curDate.minusDays(1).toLocalDate();
|
325 |
LocalDate lastDate = curDate.minusDays(1).toLocalDate();
|
| 322 |
|
326 |
|
| 323 |
List<LocalDate> weekDates = new ArrayList<>();
|
327 |
List<LocalDate> weekDates = new ArrayList<>();
|
| 324 |
|
328 |
|
| 325 |
weekDates.add(curDate.minusDays(28).toLocalDate());
|
329 |
weekDates.add(curDate.minusDays(28).toLocalDate());
|