Fixed the displayed date of week (plus 6).
This commit is contained in:
parent
a2f50008a5
commit
292b33d126
1 changed files with 4 additions and 1 deletions
|
@ -113,7 +113,10 @@ public class AgirStatoolUtils
|
|||
LocalDate date = AgirStatoolUtils.normaliseWeekDate(start);
|
||||
while (date.isBefore(normalizedEnd) || date.isEqual(normalizedEnd))
|
||||
{
|
||||
String label = date.format(DateTimeFormatter.ISO_DATE);
|
||||
// The normalized date is set to the first day of the week.
|
||||
// The displayed date is set to the last day of the week. So
|
||||
// plus 6.
|
||||
String label = date.plusDays(6).format(DateTimeFormatter.ISO_DATE);
|
||||
result.add(label);
|
||||
date = date.plusWeeks(1);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue