Skonto - korrekte Variablenprüfung payment_term
authorG. Richardson <information@kivitendo-premium.de>
Wed, 1 Jul 2015 16:14:56 +0000 (18:14 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Wed, 1 Jul 2015 16:14:56 +0000 (18:14 +0200)
für den Fall, daß kein payment_term bei den ausgewählten Rechnungen gesetzt ist.

SL/Controller/BankTransaction.pm

index 3087503..a8d424c 100644 (file)
@@ -373,7 +373,7 @@ sub action_save_invoices {
 
     foreach my $invoice (@invoices) {
       my $payment_type;
-      if (@{ $skonto_hash->{"$bt_id"} }) {
+      if ( defined $skonto_hash->{"$bt_id"} ) {
         $payment_type = shift(@{ $skonto_hash->{"$bt_id"} });
       } else {
         $payment_type = 'without_skonto';