Finish Hotfix-1

This commit is contained in:
2024-09-30 12:48:58 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -98,7 +98,7 @@ public class ExchangeColliImportService {
LocalDate startDate = LocalDate.of(2024, 7, 1);
Result<Object> firstErrorObjectIfPresent = null;
while (startDate.isBefore(UtilityLocalDate.getNow())) {
while (startDate.minusDays(1).isBefore(UtilityLocalDate.getNow())) {
final LocalDate tempStartDate = startDate;
final LocalDate tempEndDate = startDate;

View File

@@ -58,7 +58,7 @@ public class ExchangeDocumentImportService {
LocalDate startDate = LocalDate.of(2024, 7, 1);
Result<DtbDoct> firstErrorObjectIfPresent = null;
while (startDate.isBefore(UtilityLocalDate.getNow())) {
while (startDate.minusDays(1).isBefore(UtilityLocalDate.getNow())) {
final LocalDate tempStartDate = startDate;
final LocalDate tempEndDate = startDate;

View File

@@ -71,7 +71,7 @@ public class ExchangeOrdiniImportService {
Result<DtbOrdt> firstErrorObjectIfPresent = null;
while (startDate.isBefore(UtilityLocalDate.getNow())) {
while (startDate.minusDays(1).isBefore(UtilityLocalDate.getNow())) {
final LocalDate tempStartDate = startDate;
final LocalDate tempEndDate = startDate;