X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/5bc87ade7044239fa9e893b9d7cbd476dc627eea..19c89dfd42c7766b14de78718066270ad09e20de:/SL/DB/PaymentTerm.pm diff --git a/SL/DB/PaymentTerm.pm b/SL/DB/PaymentTerm.pm index 5d84d6881..db443e947 100644 --- a/SL/DB/PaymentTerm.pm +++ b/SL/DB/PaymentTerm.pm @@ -57,8 +57,15 @@ SL::DB::PaymentTerm - Rose model for the payment_terms table =head1 SYNOPSIS my $terms = SL::DB::PaymentTerm->new(id => $::form->{payment_id})->load; - my $due_date_net = $erms->calc_date(terms => 'net'); # uses terms_netto - my $due_date_discount = $erms->calc_date(terms => 'discount'); # uses terms_skonto + my $due_date_net = $terms->calc_date(terms => 'net'); # uses terms_netto + my $due_date_discount = $terms->calc_date(terms => 'discount'); # uses terms_skonto + + # Calculate due date taking the existing invoice date and the due + # date entered by the user into account: + my $due_date = $terms->calc_date( + reference_date => $::form->{invdate}, + due_date => $::form->{duedate}, + ); =head1 FUNCTIONS @@ -71,7 +78,7 @@ adding one of C<$self>'s terms fields if automatic calculation is on; otherwise returns the currently-set due date (which must be provided) or the reference date, whichever is later. -Note that for automatich calculation the resulting date will be the +Note that for automatic calculation the resulting date will be the following Monday if the result falls on a weekend. C<%params> can contain the following parameters: