Revert "Banktransactions - beim Speichern der Rechnung Zahlungsart prüfen"
authorG. Richardson <information@kivitendo-premium.de>
Wed, 1 Jul 2015 16:11:42 +0000 (18:11 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Wed, 1 Jul 2015 16:11:42 +0000 (18:11 +0200)
This reverts commit 8809a4d1a4b4d3e5b3de31af94c0679dabfacc28.

Das funktioniert so nicht.

SL/Controller/BankTransaction.pm

index a41957d..3087503 100644 (file)
@@ -24,7 +24,6 @@ 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
@@ -374,9 +373,8 @@ sub action_save_invoices {
 
     foreach my $invoice (@invoices) {
       my $payment_type;
-      if ( defined $skonto_hash->{"$bt_id"} ) {
+      if (@{ $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';
       };