From: Martin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Date: Fri, 27 Jan 2017 15:54:51 +0000 (+0100)
Subject: part_type wieder Typbeschreibung wie in DB(2)
X-Git-Tag: release-3.5.4~1623
X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=9a9025f648db87efdf2ae8bcd14641f419932248;p=kivitendo-erp.git

part_type wieder Typbeschreibung wie in DB(2)

Original wieder dazu
---

diff --git a/SL/IC.pm b/SL/IC.pm
index bae635451..8782aae8d 100644
--- a/SL/IC.pm
+++ b/SL/IC.pm
@@ -916,8 +916,9 @@ sub prepare_parts_for_printing {
     next unless $id;
     my $prt = $parts_by_id{$id};
     my $type_abbr = $::request->presenter->type_abbreviation($prt->part_type);
+    push @{ $template_arrays{part_type}         }, $prt->part_type;
     push @{ $template_arrays{part_abbreviation} }, $type_abbr;
-    push @{ $template_arrays{type_and_classific}},  $type_abbr.$::request->presenter->classification_abbreviation($prt->classification_id);
+    push @{ $template_arrays{type_and_classific}}, $type_abbr.$::request->presenter->classification_abbreviation($prt->classification_id);
     push @{ $template_arrays{separate}  },  $::request->presenter->separate_abbreviation($prt->classification_id);
   }