Banktransactions - beim Speichern der Rechnung Zahlungsart prüfen
authorG. Richardson <information@kivitendo-premium.de>
Wed, 17 Jun 2015 20:04:36 +0000 (22:04 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Fri, 19 Jun 2015 08:41:08 +0000 (10:41 +0200)
ob es einem gültigen payment type entspricht.

Außerdem korrekte Variablenprüfung, für den Fall, daß kein payment_term
gesetzt ist.

SL/Controller/BankTransaction.pm

index 3087503..a41957d 100644 (file)
@@ -24,6 +24,7 @@ use SL::DB::Tax;
 use SL::DB::Draft;
 use SL::DB::BankAccount;
 use SL::Presenter;
+use SL::DB::Helper::Payment qw(validate_payment_type);
 use List::Util qw(max);
 
 use Rose::Object::MakeMethods::Generic
@@ -373,8 +374,9 @@ 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"} });
+        SL::DB::Helper::Payment->validate_payment_type($payment_type);
       } else {
         $payment_type = 'without_skonto';
       };