From 108d331a544690d9e2540a5d6ad2fd25096ae5d5 Mon Sep 17 00:00:00 2001 From: Fabian Wunsch Date: Thu, 13 Nov 2025 14:23:04 +0100 Subject: [PATCH] Revert "Fix order_delivery" This reverts commit 571c58675ff51ce782f318bc59c5333bc94ead65. --- src/DataTables/Filters/PartFilter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataTables/Filters/PartFilter.php b/src/DataTables/Filters/PartFilter.php index d1c99720..7e6db49c 100644 --- a/src/DataTables/Filters/PartFilter.php +++ b/src/DataTables/Filters/PartFilter.php @@ -138,7 +138,7 @@ class PartFilter implements FilterInterface $this->minAmount = new NumberConstraint('part.minamount'); $this->orderAmount = new NumberConstraint('part.orderamount'); - $this->orderDelivery = new DateTimeConstraint('part.order_delivery'); + $this->orderDelivery = new DateTimeConstraint('part.orderDelivery'); /* We have to use an IntConstraint here because otherwise we get just an empty result list when applying the filter This seems to be related to the fact, that PDO does not have an float parameter type and using string type does not work in this situation (at least in SQLite) TODO: Find a better solution here