Suche nach Bemerkung in EK-Rechnung, findet jetzt auch Großbuchstaben
authorJan Büren <jan@kivitendo.de>
Fri, 13 Aug 2021 06:33:46 +0000 (08:33 +0200)
committerJan Büren <jan@kivitendo.de>
Fri, 13 Aug 2021 06:33:46 +0000 (08:33 +0200)
SL/AP.pm

index 601083b..a77906c 100644 (file)
--- a/SL/AP.pm
+++ b/SL/AP.pm
@@ -546,7 +546,7 @@ sub ap_transactions {
     push(@values, like($form->{transaction_description}));
   }
   if ($form->{notes}) {
-    $where .= " AND lower(a.notes) LIKE ?";
+    $where .= " AND a.notes ILIKE ?";
     push(@values, like($form->{notes}));
   }
   if ($form->{project_id}) {