Revision d27b7dd6
Von Kivitendo Admin vor etwa 8 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
986 | 986 |
push @options, $locale->text('Vendor') . " : $form->{vendor}" if $form->{vendor}; |
987 | 987 |
push @options, $locale->text('Contact Person') . " : $form->{cp_name}" if $form->{cp_name}; |
988 | 988 |
push @options, $locale->text('Department') . " : $department" if $form->{department}; |
989 |
if ($form->{department_id}) { |
|
990 |
unless ($form->{department}) { |
|
991 |
require SL::DB::Department; |
|
992 |
my $department = SL::DB::Manager::Department->find_by(id => $::form->{department_id}); |
|
993 |
push @options, $locale->text('Department') . " : " . $department->description if $department; |
|
994 |
} |
|
995 |
} |
|
989 | 996 |
push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if $form->{ordnumber}; |
990 | 997 |
push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}" if $form->{cusordnumber}; |
991 | 998 |
push @options, $locale->text('Notes') . " : $form->{notes}" if $form->{notes}; |
Auch abrufbar als: Unified diff
Verkauf->Berichte->Aufträge: Abteilung im Bericht
wenn nach Abteilung gefiltert wird den Namen der Abteilung oben angeben.