Kontoauszug verbuchen: Banktransaktionen mit Fehlern nicht zählen
authorMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Sun, 12 Feb 2017 09:33:20 +0000 (10:33 +0100)
committerMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Sun, 12 Feb 2017 09:33:20 +0000 (10:33 +0100)
Die OK Anzeige der Anzahl gebuchter Transaktionen ohne fehlerhafte Buchungen

SL/Controller/BankTransaction.pm

index 8bc3317..e632631 100644 (file)
@@ -511,6 +511,9 @@ sub save_invoices {
       $count += scalar( @{$invoice_ids} );
     }
   }
+  foreach (@{ $self->problems }) {
+    $count-- if $_->{result} eq 'error';
+  }
   return $count;
 }