X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/24007946755885adbed25cb4203ce3e79bc19839..aff48c9512cb1cf6568654f7819c16638af0eac8:/SL/VK.pm diff --git a/SL/VK.pm b/SL/VK.pm index cc49cb412..6d7df707a 100644 --- a/SL/VK.pm +++ b/SL/VK.pm @@ -110,7 +110,10 @@ sub invoice_transactions { if ($form->{customer_id}) { $where .= " AND ar.customer_id = ?"; push(@values, $form->{customer_id}); - }; + } elsif ($form->{customer}) { + $where .= " AND ct.name ILIKE ?"; + push(@values, $form->like($form->{customer})); + } if ($form->{customernumber}) { $where .= qq| AND ct.customernumber = ? |; push(@values, $form->{customernumber});