|
@@ -69,8 +69,7 @@ public class WmScorePackageControllerV2 {
|
|
endDate = today;
|
|
endDate = today;
|
|
}
|
|
}
|
|
if(startDate == null) {
|
|
if(startDate == null) {
|
|
- // startDate = LocalDate.of(today.getYear(), (today.getMonthValue() - 1) / 3 * 3 + 1, 1); // first day of Quarter
|
|
|
|
- startDate = today.minusMonths(12); // temporary solution
|
|
|
|
|
|
+ startDate = LocalDate.of(today.getYear(), 1, 1); // first day of Year
|
|
}
|
|
}
|
|
|
|
|
|
return packageManager.exportPkgInfo(startDate, endDate);
|
|
return packageManager.exportPkgInfo(startDate, endDate);
|