Revision 7d2ab55b
Von Jan Büren vor fast 3 Jahren hinzugefügt
bin/mozilla/ar.pl | ||
---|---|---|
1036 | 1036 |
|
1037 | 1037 |
my @hidden_variables = map { "l_${_}" } @columns; |
1038 | 1038 |
push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto duedatefrom duedateto |
1039 |
employee_id salesman_id business_id parts_partnumber parts_description department_id show_marked_as_closed show_not_mailed); |
|
1039 |
employee_id salesman_id business_id parts_partnumber parts_description department_id show_marked_as_closed show_not_mailed |
|
1040 |
shippingpoint shipvia); |
|
1040 | 1041 |
push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables; |
1041 | 1042 |
|
1042 | 1043 |
$href = $params{want_binary_pdf} ? '' : build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables); |
... | ... | |
1159 | 1160 |
if ($form->{closed}) { |
1160 | 1161 |
push @options, $locale->text('Closed'); |
1161 | 1162 |
} |
1163 |
if ($form->{shipvia}) { |
|
1164 |
push @options, $locale->text('Ship via') . " : $form->{shipvia}"; |
|
1165 |
} |
|
1166 |
if ($form->{shippingpoint}) { |
|
1167 |
push @options, $locale->text('Shipping Point') . " : $form->{shippingpoint}"; |
|
1168 |
} |
|
1169 |
|
|
1162 | 1170 |
|
1163 | 1171 |
$form->{ALL_PRINTERS} = SL::DB::Manager::Printer->get_all_sorted; |
1164 | 1172 |
|
Auch abrufbar als: Unified diff
Rechnungssuche: Filter für Ship via und Shipping Point