Revision df005c49
Von Sven Schöling vor mehr als 15 Jahren hinzugefügt
SL/OE.pm | ||
---|---|---|
83 | 83 |
qq|WHERE (o.quotation = ?) |; |
84 | 84 |
push(@values, $quotation); |
85 | 85 |
|
86 |
my ($null, $department_id) = split /--/, $form->{department}; |
|
86 |
my ($null, $split_department_id) = split /--/, $form->{department}; |
|
87 |
my $department_id = $form->{department_id} || $split_department_id; |
|
87 | 88 |
if ($department_id) { |
88 | 89 |
$query .= qq| AND o.department_id = ?|; |
89 | 90 |
push(@values, $department_id); |
Auch abrufbar als: Unified diff
Templatebasierte OE Suche übernommen.