Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision f9a91155

Von Jan Büren vor mehr als 1 Jahr hinzugefügt

  • ID f9a91155d536c6b47372eb5c64cd843915b0511e
  • Vorgänger 64ea25b8
  • Nachfolger 56043646

Kontoauszug verbuchen: Rechnungen suchen die mit genau 1 Cent offen sind

Unterschiede anzeigen:

SL/Controller/BankTransaction.pm
my @all_open_invoices = @{ $all_open_ar_invoices };
# add ap invoices, filtering out subcent open amounts
push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.01 } @{ $all_open_ap_invoices };
push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.005 } @{ $all_open_ap_invoices };
@all_open_invoices = sort { $a->id <=> $b->id } @all_open_invoices;

Auch abrufbar als: Unified diff