Revision df41380a
Von Kivitendo Admin vor fast 8 Jahren hinzugefügt
bin/mozilla/vk.pl | ||
---|---|---|
169 | 169 |
my %column_defs = ( |
170 | 170 |
'description' => { 'text' => $locale->text('Description'), }, |
171 | 171 |
'partnumber' => { 'text' => $locale->text('Part Number'), }, |
172 |
'partsgroup' => { 'text' => $locale->text('Group'), },
|
|
172 |
'partsgroup' => { 'text' => $locale->text('Partsgroup'), },
|
|
173 | 173 |
'country' => { 'text' => $locale->text('Country'), }, |
174 | 174 |
'business' => { 'text' => $locale->text('Customer type'), }, |
175 | 175 |
'employee' => { 'text' => $locale->text('Employee'), }, |
... | ... | |
215 | 215 |
push @options, $locale->text('Invoice Number') . " : $form->{invnumber}" if $form->{invnumber}; |
216 | 216 |
push @options, $locale->text('Invoice Date') . " : $form->{invdate}" if $form->{invdate}; |
217 | 217 |
push @options, $locale->text('Part Number') . " : $form->{partnumber}" if $form->{partnumber}; |
218 |
push @options, $locale->text('Group') . " : " . SL::DB::PartsGroup->new(id => $form->{partsgroup_id})->load->partsgroup if $form->{partsgroup_id};
|
|
218 |
push @options, $locale->text('Partsgroup') . " : " . SL::DB::PartsGroup->new(id => $form->{partsgroup_id})->load->partsgroup if $form->{partsgroup_id};
|
|
219 | 219 |
push @options, $locale->text('Country') . " : $form->{country}" if $form->{country}; |
220 | 220 |
push @options, $locale->text('Employee') . ' : ' . SL::DB::Employee->new(id => $form->{employee_id})->load->name if $form->{employee_id}; |
221 | 221 |
push @options, $locale->text('Salesman') . ' : ' . SL::DB::Employee->new(id => $form->{salesman_id})->load->name if $form->{salesman_id}; |
Auch abrufbar als: Unified diff
Group nach Partsgroup (Warengruppe) umbenannt