Revision bed19453
Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt
SL/AR.pm | ||
---|---|---|
507 | 507 |
push(@values, $form->{customer_id}); |
508 | 508 |
} elsif ($form->{customer}) { |
509 | 509 |
$where .= " AND c.name ILIKE ?"; |
510 |
push(@values, $form->like($form->{customer}));
|
|
510 |
push(@values, like($form->{customer})); |
|
511 | 511 |
} |
512 | 512 |
if ($form->{"cp_name"}) { |
513 | 513 |
$where .= " AND (cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)"; |
... | ... | |
531 | 531 |
foreach my $column (qw(invnumber ordnumber cusordnumber notes transaction_description)) { |
532 | 532 |
if ($form->{$column}) { |
533 | 533 |
$where .= " AND a.$column ILIKE ?"; |
534 |
push(@values, $form->like($form->{$column}));
|
|
534 |
push(@values, like($form->{$column})); |
|
535 | 535 |
} |
536 | 536 |
} |
537 | 537 |
if ($form->{"project_id"}) { |
Auch abrufbar als: Unified diff
Funktion »like« von Form nach DBUtils verschoben
Das ist eine Datenbank-Quoting-Funktion und hat daher nichts mehr in
Form zu suchen.