From: G. Richardson Date: Wed, 1 Jul 2015 16:14:56 +0000 (+0200) Subject: Skonto - korrekte Variablenprüfung payment_term X-Git-Tag: release-3.3.0beta~34^2~1 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0966a8326e5c0d6b46cb4ea836386ef5fca318ec;p=kivitendo-erp.git Skonto - korrekte Variablenprüfung payment_term für den Fall, daß kein payment_term bei den ausgewählten Rechnungen gesetzt ist. --- diff --git a/SL/Controller/BankTransaction.pm b/SL/Controller/BankTransaction.pm index 30875038c..a8d424c2d 100644 --- a/SL/Controller/BankTransaction.pm +++ b/SL/Controller/BankTransaction.pm @@ -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';