Merge branch 'master' of ssh://lx-office/~/lx-office-erp
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 30 Dec 2010 15:59:24 +0000 (16:59 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 30 Dec 2010 15:59:24 +0000 (16:59 +0100)
bin/mozilla/rp.pl

index e3c64b0..25e6259 100644 (file)
@@ -1066,7 +1066,7 @@ sub generate_income_statement {
     }
     hotfix_reformat_date();
   } # Ende Bericht für vorgewählten Zeitraum (warum auch immer die Prüfung (custom eq true) ist ...
-   
+
   RP->income_statement(\%myconfig, \%$form);
 
   ($form->{department}) = split /--/, $form->{department};
@@ -1385,7 +1385,7 @@ sub generate_trial_balance {
   my $edit_url = build_std_url('action=edit', 'type', 'vc');
 
   my $idx;
-  foreach my $accno (@{ $form->{TB} }) {
+  foreach my $accno (@{ $form->{TB} || [] }) {
 
     $accno->{soll} = $accno->{debit};
     $accno->{haben} = $accno->{credit};
@@ -1533,7 +1533,7 @@ sub list_accounts {
   my %subtotals      = map { $_ => 0 } @totals_columns;
   my %totals         = map { $_ => 0 } @totals_columns;
   my $found_heading  = 0;
-  my @tb             = sort { $a->{accno} cmp $b->{accno} } @{ $form->{TB} };
+  my @tb             = sort { $a->{accno} cmp $b->{accno} } @{ $form->{TB} || [] };
 
   # sort the whole thing by account numbers and display
   foreach my $idx (0 .. scalar(@tb) - 1) {
@@ -2794,13 +2794,13 @@ sub generate_bwa {
 # Hotfix, um das Datumsformat, die unten hart auf deutsches Datumsformat eingestellt
 # sind, entsprechend mit anderem Formaten (z.B. iso-kodiert) zum Laufen zu bringen (S.a.: Bug 1388)
 sub hotfix_reformat_date {
-  
+
   $main::lxdebug->enter_sub();
-  
+
   my $form     = $main::form;
   my %myconfig = %main::myconfig;
   my $locale   = $main::locale;
-  
+
   if ($myconfig{dateformat} ne 'dd.mm.yyyy'){
     my $current_dateformat = $myconfig{dateformat};
     $myconfig{dateformat} = 'dd.mm.yyyy';