Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision dac0c31d

Von Kivitendo Admin vor mehr als 9 Jahren hinzugefügt

  • ID dac0c31d4a35ce06fba77bfa64d5b314ce92dcd0
  • Vorgänger b0614efa
  • Nachfolger 0966a832

Revert "Banktransactions - beim Speichern der Rechnung Zahlungsart prüfen"

This reverts commit 8809a4d1a4b4d3e5b3de31af94c0679dabfacc28.

Das funktioniert so nicht.

Unterschiede anzeigen:

SL/Controller/BankTransaction.pm
24 24
use SL::DB::Draft;
25 25
use SL::DB::BankAccount;
26 26
use SL::Presenter;
27
use SL::DB::Helper::Payment qw(validate_payment_type);
28 27
use List::Util qw(max);
29 28

  
30 29
use Rose::Object::MakeMethods::Generic
......
374 373

  
375 374
    foreach my $invoice (@invoices) {
376 375
      my $payment_type;
377
      if ( defined $skonto_hash->{"$bt_id"} ) {
376
      if (@{ $skonto_hash->{"$bt_id"} }) {
378 377
        $payment_type = shift(@{ $skonto_hash->{"$bt_id"} });
379
        SL::DB::Helper::Payment->validate_payment_type($payment_type);
380 378
      } else {
381 379
        $payment_type = 'without_skonto';
382 380
      };

Auch abrufbar als: Unified diff