Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ffb7db46

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

  • ID ffb7db46841460f0130c2a47bea5134a5a426386
  • Vorgänger 9731b084
  • Nachfolger 47d9a9c7

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

Unterschiede anzeigen:

SL/Controller/BankTransaction.pm
430 430

  
431 431
  my @all_open_invoices = @{ $all_open_ar_invoices };
432 432
  # add ap invoices, filtering out subcent open amounts
433
  push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.01 } @{ $all_open_ap_invoices };
433
  push @all_open_invoices, grep { abs($_->amount - $_->paid) >= 0.005 } @{ $all_open_ap_invoices };
434 434

  
435 435
  @all_open_invoices = sort { $a->id <=> $b->id } @all_open_invoices;
436 436

  

Auch abrufbar als: Unified diff