From 14a6ec5c44b9c11e094de0c9268410695e6b77f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Thu, 22 Jun 2023 09:44:47 +0300 Subject: [PATCH] created_at field has been removed from the date filter. --- app/Abstracts/Import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Abstracts/Import.php b/app/Abstracts/Import.php index eb05b9ab0..54003fc60 100644 --- a/app/Abstracts/Import.php +++ b/app/Abstracts/Import.php @@ -57,7 +57,7 @@ abstract class Import implements HasLocalePreference, ShouldQueue, SkipsEmptyRow $row['reconciled'] = (int) $row['reconciled']; } - $date_fields = ['paid_at', 'invoiced_at', 'billed_at', 'due_at', 'issued_at', 'created_at', 'transferred_at']; + $date_fields = ['paid_at', 'invoiced_at', 'billed_at', 'due_at', 'issued_at', 'transferred_at']; foreach ($date_fields as $date_field) { if (!isset($row[$date_field])) { continue;