Spalte "Transfertyp" auch bei CSV- und PDF-Export ausgeben.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 10 Nov 2009 16:27:58 +0000 (17:27 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 10 Nov 2009 16:27:58 +0000 (17:27 +0100)
Fix fÃŒr Bug 1258.

bin/mozilla/wh.pl

index 6d39dda..b6165a8 100644 (file)
@@ -733,18 +733,13 @@ sub generate_journal {
     my $row = { };
 
     foreach my $column (@columns) {
-      next if ($column eq 'trans_type');
-
       $row->{$column} = {
         'data'  => $entry->{$column},
         'align' => $column_alignment{$column},
       };
     }
 
-    $row->{trans_type} = {
-      'raw_data' => $entry->{trans_type},
-      'align'    => $column_alignment{trans_type},
-    };
+    $row->{trans_type}->{raw_data} = $entry->{trans_type};
 
     if ($form->{l_oe_id}) {
       $row->{oe_id}->{data} = '';