Finish Hotfix-1
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user