X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FPaymentTerm.pm;h=c087b7ffae4decb17da214c4352a95f708fe7d3c;hb=37be5dfe10abacf6349f94c93d0f0abe1f0ca86e;hp=3630a709431a60bc3ebe6a5a97af005b8d88fe3f;hpb=de0f9532013c861dae78aa01b9633284d1ceee7c;p=kivitendo-erp.git diff --git a/SL/DB/PaymentTerm.pm b/SL/DB/PaymentTerm.pm index 3630a7094..c087b7ffa 100644 --- a/SL/DB/PaymentTerm.pm +++ b/SL/DB/PaymentTerm.pm @@ -7,6 +7,8 @@ use SL::DB::Manager::PaymentTerm; use SL::DB::Helper::ActsAsList; use SL::DB::Helper::TranslatedAttributes; +__PACKAGE__->meta->initialize; + sub validate { my ($self) = @_; @@ -17,4 +19,83 @@ sub validate { return @errors; } +sub calc_date { + my ($self, %params) = @_; + + my $reference_date = $params{reference_date} || DateTime->today_local; + $reference_date = DateTime->from_kivitendo($reference_date) unless ref($reference_date) eq 'DateTime'; + + my $terms = ($params{terms} // 'net') eq 'discount' ? 'terms_skonto' : 'terms_netto'; + my $date = $reference_date->add(days => $self->$terms); + + my $dow = $date->day_of_week; + $date = $date->add(days => 8 - $dow) if $dow > 5; + + return $date; +} + 1; +__END__ + +=pod + +=encoding utf8 + +=head1 NAME + +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 + +=head1 FUNCTIONS + +=over 4 + +=item C + +Calculates and returns a due date as an instance of L by +adding one of C<$self>'s terms fields. Note that the resulting date +will be the following Monday if the result falls on a weekend. + +C<%params> can contain the following parameters: + +=over 4 + +=item C + +The reference date from which the due date will be calculated. Can be +either an instance of L or a scalar in which case the scalar +is parsed via L. + +Defaults to the current date if unset. + +=item C + +Can be either C or C. For C the number of days to +add to the reference date are C<$self-Eterms_netto>. For +C C<$self-Eterms_skonto> is used. + +Defaults to C if unset. + +=back + +=item C + +Validates before saving and returns an array of human-readable error +messages in case of an error. + +=back + +=head1 BUGS + +Nothing here yet. + +=head1 AUTHOR + +Moritz Bunkus Em.bunkus@linet-services.deE + +=cut