Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision e10fb8ac

Von Jan Büren vor 11 Monaten hinzugefügt

  • ID e10fb8ac38aa7fc58e041b2d8a4f2a7607399d5f
  • Vorgänger 6e4892b3
  • Nachfolger 9f93f10d

PH->within_skonto_period refactored. Liefert jetzt undef oder 1 zurück

Unterschiede anzeigen:

t/db_helper/payment.t
is($invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 1)), 1, "one day after invdate is skontoable");
is($invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 4)), 1, "four days after invdate is skontoable");
throws_ok{
$invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 6));
} qr /The 'transdate' parameter .* to SL::DB::Helper::Payment::within_skonto_period did not pass the 'is within skonto period' callback/, "One day after skonto date throws correct error message";
is($invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 6)), ''); # not within skonto period
}

Auch abrufbar als: Unified diff