ad776ca9c80d1f96efc42ae0435c678d380560fb
[kivitendo-erp.git] / SL / DB / Helper / Payment.pm
1 package SL::DB::Helper::Payment;
2
3 use strict;
4
5 use parent qw(Exporter);
6 our @EXPORT = qw(pay_invoice);
7 our @EXPORT_OK = qw(skonto_date skonto_charts amount_less_skonto within_skonto_period percent_skonto reference_account reference_amount transactions open_amount open_percent remaining_skonto_days skonto_amount check_skonto_configuration valid_skonto_amount get_payment_suggestions validate_payment_type open_sepa_transfer_amount get_payment_select_options_for_bank_transaction);
8 our %EXPORT_TAGS = (
9   "ALL" => [@EXPORT, @EXPORT_OK],
10 );
11
12 require SL::DB::Chart;
13 use Data::Dumper;
14 use DateTime;
15 use SL::DATEV qw(:CONSTANTS);
16 use SL::Locale::String qw(t8);
17 use List::Util qw(sum);
18 use Carp;
19
20 #
21 # Public functions not exported by default
22 #
23
24 sub pay_invoice {
25   my ($self, %params) = @_;
26
27   require SL::DB::Tax;
28
29   my $is_sales = ref($self) eq 'SL::DB::Invoice';
30   my $mult = $is_sales ? 1 : -1;  # multiplier for getting the right sign depending on ar/ap
31
32   my $paid_amount = 0; # the amount that will be later added to $self->paid
33
34   # default values if not set
35   $params{payment_type} = 'without_skonto' unless $params{payment_type};
36   validate_payment_type($params{payment_type});
37
38   # check for required parameters
39   Common::check_params(\%params, qw(chart_id transdate));
40
41   my $transdate_obj = $::locale->parse_date_to_object($params{transdate});
42   croak t8('Illegal date') unless ref $transdate_obj;
43
44   # check for closed period
45   my $closedto = $::locale->parse_date_to_object($::instance_conf->get_closedto);
46   if ( ref $closedto && $transdate_obj < $closedto ) {
47     croak t8('Cannot post payment for a closed period!');
48   };
49
50   # check for maximum number of future days
51   if ( $::instance_conf->get_max_future_booking_interval > 0 ) {
52     croak t8('Cannot post transaction above the maximum future booking date!') if $transdate_obj > DateTime->now->add( days => $::instance_conf->get_max_future_booking_interval );
53   };
54
55   # input checks:
56   if ( $params{'payment_type'} eq 'without_skonto' ) {
57     croak "invalid amount for payment_type 'without_skonto': $params{'amount'}\n" unless abs($params{'amount'}) > 0;
58   };
59
60   # options with_skonto_pt and difference_as_skonto don't require the parameter
61   # amount, but if amount is passed, make sure it matches the expected value
62   if ( $params{'payment_type'} eq 'difference_as_skonto' ) {
63     croak "amount $params{amount} doesn't match open amount " . $self->open_amount . ", diff = " . ($params{amount}-$self->open_amount) if $params{amount} && abs($self->open_amount - $params{amount} ) > 0.0000001;
64   } elsif ( $params{'payment_type'} eq 'with_skonto_pt' ) {
65     croak "amount $params{amount} doesn't match amount less skonto: " . $self->open_amount . "\n" if $params{amount} && abs($self->amount_less_skonto - $params{amount} ) > 0.0000001;
66     croak "payment type with_skonto_pt can't be used if payments have already been made" if $self->paid != 0;
67   };
68
69   # absolute skonto amount for invoice, use as reference sum to see if the
70   # calculated skontos add up
71   # only needed for payment_term "with_skonto_pt"
72
73   my $skonto_amount_check = $self->skonto_amount; # variable should be zero after calculating all skonto
74   my $total_open_amount   = $self->open_amount;
75
76   # account where money is paid to/from: bank account or cash
77   my $account_bank = SL::DB::Manager::Chart->find_by(id => $params{chart_id});
78   croak "can't find bank account" unless ref $account_bank;
79
80   my $reference_account = $self->reference_account;
81   croak "can't find reference account (link = AR/AP) for invoice" unless ref $reference_account;
82
83   my $memo   = $params{'memo'}   || '';
84   my $source = $params{'source'} || '';
85
86   my $rounded_params_amount = _round( $params{amount} );
87
88   my $db = $self->db;
89   $db->do_transaction(sub {
90     my $new_acc_trans;
91
92     # all three payment type create 1 AR/AP booking (the paid part)
93     # difference_as_skonto creates n skonto bookings (1 for each tax type)
94     # with_skonto_pt creates 1 bank booking and n skonto bookings (1 for each tax type)
95     # without_skonto creates 1 bank booking
96
97     # as long as there is no automatic tax, payments are always booked with
98     # taxkey 0
99
100     unless ( $params{payment_type} eq 'difference_as_skonto' ) {
101       # cases with_skonto_pt and without_skonto
102
103       # for case with_skonto_pt we need to know the corrected amount at this
104       # stage if we are going to use $params{amount}
105
106       my $pay_amount = $rounded_params_amount;
107       $pay_amount = $self->amount_less_skonto if $params{payment_type} eq 'with_skonto_pt';
108
109       # bank account and AR/AP
110       $paid_amount += $pay_amount;
111
112       # total amount against bank, do we already know this by now?
113       $new_acc_trans = SL::DB::AccTransaction->new(trans_id   => $self->id,
114                                                    chart_id   => $account_bank->id,
115                                                    chart_link => $account_bank->link,
116                                                    amount     => (-1 * $pay_amount) * $mult,
117                                                    transdate  => $transdate_obj,
118                                                    source     => $source,
119                                                    memo       => $memo,
120                                                    taxkey     => 0,
121                                                    tax_id     => SL::DB::Manager::Tax->find_by(taxkey => 0)->id);
122       $new_acc_trans->save;
123     };
124
125     if ( $params{payment_type} eq 'difference_as_skonto' or $params{payment_type} eq 'with_skonto_pt' ) {
126
127       my $total_skonto_amount;
128       if ( $params{payment_type} eq 'with_skonto_pt' ) {
129         $total_skonto_amount = $self->skonto_amount;
130       } elsif ( $params{payment_type} eq 'difference_as_skonto' ) {
131         $total_skonto_amount = $self->open_amount;
132       };
133
134       my @skonto_bookings = $self->skonto_charts($total_skonto_amount);
135
136       # error checking:
137       if ( $params{payment_type} eq 'difference_as_skonto' ) {
138         my $calculated_skonto_sum  = sum map { $_->{skonto_amount} } @skonto_bookings;
139         croak "calculated skonto for difference_as_skonto = $calculated_skonto_sum doesn't add up open amount: " . $self->open_amount unless _round($calculated_skonto_sum) == _round($self->open_amount);
140       };
141
142       my $reference_amount = $total_skonto_amount;
143
144       # create an acc_trans entry for each result of $self->skonto_charts
145       foreach my $skonto_booking ( @skonto_bookings ) {
146         next unless $skonto_booking->{'chart_id'};
147         next unless $skonto_booking->{'skonto_amount'} != 0;
148         my $amount = -1 * $skonto_booking->{skonto_amount};
149         $new_acc_trans = SL::DB::AccTransaction->new(trans_id   => $self->id,
150                                                      chart_id   => $skonto_booking->{'chart_id'},
151                                                      chart_link => SL::DB::Manager::Chart->find_by(id => $skonto_booking->{'chart_id'})->{'link'},
152                                                      amount     => $amount * $mult,
153                                                      transdate  => $transdate_obj,
154                                                      source     => $params{source},
155                                                      taxkey     => 0,
156                                                      tax_id     => SL::DB::Manager::Tax->find_by(taxkey => 0)->id);
157         $new_acc_trans->save;
158
159         $reference_amount -= abs($amount);
160         $paid_amount      += -1 * $amount;
161         $skonto_amount_check -= $skonto_booking->{'skonto_amount'};
162       };
163       die "difference_as_skonto calculated incorrectly, sum of calculated payments doesn't add up to open amount $total_open_amount, reference_amount = $reference_amount\n" unless _round($reference_amount) == 0;
164
165     };
166
167     my $arap_amount = 0;
168
169     if ( $params{payment_type} eq 'difference_as_skonto' ) {
170       $arap_amount = $total_open_amount;
171     } elsif ( $params{payment_type} eq 'without_skonto' ) {
172       $arap_amount = $rounded_params_amount;
173     } elsif ( $params{payment_type} eq 'with_skonto_pt' ) {
174       # this should be amount + sum(amount+skonto), but while we only allow
175       # with_skonto_pt for completely unpaid invoices we just use the value
176       # from the invoice
177       $arap_amount = $total_open_amount;
178     };
179
180     # regardless of payment_type there is always only exactly one arap booking
181     # TODO: compare $arap_amount to running total
182     my $arap_booking= SL::DB::AccTransaction->new(trans_id   => $self->id,
183                                                   chart_id   => $reference_account->id,
184                                                   chart_link => $reference_account->link,
185                                                   amount     => $arap_amount * $mult,
186                                                   transdate  => $transdate_obj,
187                                                   source     => '', #$params{source},
188                                                   taxkey     => 0,
189                                                   tax_id     => SL::DB::Manager::Tax->find_by(taxkey => 0)->id);
190     $arap_booking->save;
191
192     $self->paid($self->paid+$paid_amount) if $paid_amount;
193     $self->datepaid($transdate_obj);
194     $self->save;
195
196   my $datev_check = 0;
197   if ( $is_sales )  {
198     if ( (  $self->invoice && $::instance_conf->get_datev_check_on_sales_invoice  ) ||
199          ( !$self->invoice && $::instance_conf->get_datev_check_on_ar_transaction )) {
200       $datev_check = 1;
201     };
202   } else {
203     if ( (  $self->invoice && $::instance_conf->get_datev_check_on_purchase_invoice ) ||
204          ( !$self->invoice && $::instance_conf->get_datev_check_on_ap_transaction   )) {
205       $datev_check = 1;
206     };
207   };
208
209   if ( $datev_check ) {
210
211     my $datev = SL::DATEV->new(
212       exporttype => DATEV_ET_BUCHUNGEN,
213       format     => DATEV_FORMAT_KNE,
214       dbh        => $db->dbh,
215       trans_id   => $self->{id},
216     );
217
218     $datev->clean_temporary_directories;
219     $datev->export;
220
221     if ($datev->errors) {
222       # this exception should be caught by do_transaction, which handles the rollback
223       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
224     }
225   };
226
227   }) || die t8('error while paying invoice #1 : ', $self->invnumber) . $db->error . "\n";
228
229   return 1;
230 };
231
232 sub skonto_date {
233
234   my $self = shift;
235
236   my $is_sales = ref($self) eq 'SL::DB::Invoice';
237
238   my $skonto_date;
239
240   if ( $is_sales ) {
241     return undef unless ref $self->payment_terms;
242     return undef unless $self->payment_terms->terms_skonto > 0;
243     $skonto_date = DateTime->from_object(object => $self->transdate)->add(days => $self->payment_terms->terms_skonto);
244   } else {
245     return undef unless ref $self->vendor->payment_terms;
246     return undef unless $self->vendor->payment_terms->terms_skonto > 0;
247     $skonto_date = DateTime->from_object(object => $self->transdate)->add(days => $self->vendor->payment_terms->terms_skonto);
248   };
249
250   return $skonto_date;
251 };
252
253 sub reference_account {
254   my $self = shift;
255
256   my $is_sales = ref($self) eq 'SL::DB::Invoice';
257
258   require SL::DB::Manager::AccTransaction;
259
260   my $link_filter = $is_sales ? 'AR' : 'AP';
261
262   my $acc_trans = SL::DB::Manager::AccTransaction->find_by(
263      trans_id   => $self->id,
264      SL::DB::Manager::AccTransaction->chart_link_filter("$link_filter")
265   );
266
267   return undef unless ref $acc_trans;
268
269   my $reference_account = SL::DB::Manager::Chart->find_by(id => $acc_trans->chart_id);
270
271   return $reference_account;
272 };
273
274 sub reference_amount {
275   my $self = shift;
276
277   my $is_sales = ref($self) eq 'SL::DB::Invoice';
278
279   require SL::DB::Manager::AccTransaction;
280
281   my $link_filter = $is_sales ? 'AR' : 'AP';
282
283   my $acc_trans = SL::DB::Manager::AccTransaction->find_by(
284      trans_id   => $self->id,
285      SL::DB::Manager::AccTransaction->chart_link_filter("$link_filter")
286   );
287
288   return undef unless ref $acc_trans;
289
290   # this should be the same as $self->amount
291   return $acc_trans->amount;
292 };
293
294
295 sub open_amount {
296   my $self = shift;
297
298   # in the future maybe calculate this from acc_trans
299
300   # if the difference is 0.01 Cent this may end up as 0.009999999999998
301   # numerically, so round this value when checking for cent threshold >= 0.01
302
303   return $self->amount - $self->paid;
304 };
305
306 sub open_percent {
307   my $self = shift;
308
309   return 0 if $self->amount == 0;
310   my $open_percent;
311   if ( $self->open_amount < 0 ) {
312     # overpaid, currently treated identically
313     $open_percent = $self->open_amount * 100 / $self->amount;
314   } else {
315     $open_percent = $self->open_amount * 100 / $self->amount;
316   };
317
318   return _round($open_percent) || 0;
319 };
320
321 sub skonto_amount {
322   my $self = shift;
323
324   return $self->amount - $self->amount_less_skonto;
325 };
326
327 sub remaining_skonto_days {
328   my $self = shift;
329
330   return undef unless ref $self->skonto_date;
331
332   my $dur = DateTime::Duration->new($self->skonto_date - DateTime->today);
333   return $dur->delta_days();
334
335 };
336
337 sub percent_skonto {
338   my $self = shift;
339
340   my $is_sales = ref($self) eq 'SL::DB::Invoice';
341
342   my $percent_skonto = 0;
343
344   if ( $is_sales ) {
345     return undef unless ref $self->payment_terms;
346     return undef unless $self->payment_terms->percent_skonto > 0;
347     $percent_skonto = $self->payment_terms->percent_skonto;
348   } else {
349     return undef unless ref $self->vendor->payment_terms;
350     return undef unless $self->vendor->payment_terms->terms_skonto > 0;
351     $percent_skonto = $self->vendor->payment_terms->percent_skonto;
352   };
353
354   return $percent_skonto;
355 };
356
357 sub amount_less_skonto {
358   # amount that has to be paid if skonto applies, always return positive rounded values
359   # the result is rounded so we can directly compare it with the user input
360   my $self = shift;
361
362   my $is_sales = ref($self) eq 'SL::DB::Invoice';
363
364   my $percent_skonto = $self->percent_skonto;
365
366   return _round($self->amount - ( $self->amount * $percent_skonto) );
367
368 };
369
370 sub check_skonto_configuration {
371   my $self = shift;
372
373   my $is_sales = ref($self) eq 'SL::DB::Invoice';
374
375   my $skonto_configured = 1; # default is assume skonto works
376
377   my $transactions = $self->transactions;
378   foreach my $transaction (@{ $transactions }) {
379     # find all transactions with an AR_amount or AP_amount link
380     my $tax = SL::DB::Manager::Tax->get_first( where => [taxkey => $transaction->{taxkey}]);
381     croak "no tax for taxkey " . $transaction->{taxkey} unless ref $tax;
382
383     $transaction->{chartlinks} = { map { $_ => 1 } split(m/:/, $transaction->{chart_link}) };
384     if ( $is_sales && $transaction->{chartlinks}->{AR_amount} ) {
385       $skonto_configured = 0 unless $tax->skonto_sales_chart_id;
386     } elsif ( !$is_sales && $transaction->{chartlinks}->{AP_amount}) {
387       $skonto_configured = 0 unless $tax->skonto_purchase_chart_id;
388     };
389   };
390
391   return $skonto_configured;
392 };
393
394 sub open_sepa_transfer_amount {
395   my $self = shift;
396
397   my ($vc, $key, $type);
398   if ( ref($self) eq 'SL::DB::Invoice' ) {
399     $vc   = 'customer';
400     $key  = 'ap_id';
401     $type = 'ar';
402   } else {
403     $vc   = 'vendor';
404     $key  = 'ap_id';
405     $type = 'ap';
406   };
407
408   my $sql = qq|SELECT SUM(sei.amount) AS amount FROM sepa_export_items sei | .
409             qq| LEFT JOIN sepa_export se ON (sei.sepa_export_id = se.id)   | .
410             qq| WHERE $key = ? AND NOT se.closed AND (se.vc = '$vc')       |;
411
412   my ($open_sepa_amount) = $self->db->dbh->selectrow_array($sql, undef, $self->id);
413
414   return $open_sepa_amount || 0;
415
416 };
417
418
419 sub skonto_charts {
420   my $self = shift;
421
422   # TODO: use param for amount, may also want to calculate skonto_amounts by
423   # passing percentage in the future
424
425   my $amount = shift || $self->skonto_amount;
426
427   croak "no amount passed to skonto_charts" unless abs(_round($amount)) >= 0.01;
428
429   # TODO: check whether there are negative values in invoice / acc_trans ... credited items
430
431   # don't check whether skonto applies, because user may want to override this
432   # return undef unless $self->percent_skonto;  # for is_sales
433   # return undef unless $self->vendor->payment_terms->percent_skonto;  # for purchase
434
435   my $is_sales = ref($self) eq 'SL::DB::Invoice';
436
437   my $mult = $is_sales ? 1 : -1;  # multiplier for getting the right sign
438
439   my @skonto_charts;  # resulting array with all income/expense accounts that have to be corrected
440
441   # calculate effective skonto (percentage) in difference_as_skonto mode
442   # only works if there are no negative acc_trans values
443   my $effective_skonto_rate = $amount ? $amount / $self->amount : 0;
444
445   # checks:
446   my $total_skonto_amount  = 0;
447   my $total_rounding_error = 0;
448
449   my $reference_ARAP_amount = 0;
450
451   my $transactions = $self->transactions;
452   foreach my $transaction (@{ $transactions }) {
453     # find all transactions with an AR_amount or AP_amount link
454     $transaction->{chartlinks} = { map { $_ => 1 } split(m/:/, $transaction->{chart_link}) };
455     # second condition is that we can determine an automatic Skonto account for each AR_amount entry
456
457     if ( ( $is_sales && $transaction->{chartlinks}->{AR_amount} ) or ( !$is_sales && $transaction->{chartlinks}->{AP_amount}) ) {
458         # $reference_ARAP_amount += $transaction->{amount} * $mult;
459
460         # quick hack that works around problem of non-unique tax keys in SKR04
461         my $tax = SL::DB::Manager::Tax->get_first( where => [taxkey => $transaction->{taxkey}]);
462         croak "no tax for taxkey " . $transaction->{taxkey} unless ref $tax;
463
464         if ( $is_sales ) {
465           die t8('no skonto_chart configured for taxkey #1 : #2 : #3', $transaction->{taxkey} , $tax->taxdescription , $tax->rate*100) unless ref $tax->skonto_sales_chart;
466         } else {
467           die t8('no skonto_chart configured for taxkey #1 : #2 : #3', $transaction->{taxkey} , $tax->taxdescription , $tax->rate*100) unless ref $tax->skonto_purchase_chart;
468         };
469
470         my $skonto_amount_unrounded;
471
472         my $skonto_percent_abs = $self->amount ? abs($transaction->amount * (1 + $tax->rate) * 100 / $self->amount) : 0;
473
474         my $transaction_amount = abs($transaction->{amount} * (1 + $tax->rate));
475         my $transaction_skonto_percent = abs($transaction_amount/$self->amount); # abs($transaction->{amount} * (1 + $tax->rate));
476
477
478         $skonto_amount_unrounded   = abs($amount * $transaction_skonto_percent);
479         my $skonto_amount_rounded  = _round($skonto_amount_unrounded);
480         my $rounding_error         = $skonto_amount_unrounded - $skonto_amount_rounded;
481         my $rounded_rounding_error = _round($rounding_error);
482
483         $total_rounding_error += $rounding_error;
484         $total_skonto_amount  += $skonto_amount_rounded;
485
486         my $rec = {
487           # skonto_percent_abs: relative part of amount + tax to the total invoice amount
488           'skonto_percent_abs'     => $skonto_percent_abs,
489           'chart_id'               => $is_sales ? $tax->skonto_sales_chart->id : $tax->skonto_purchase_chart->id,
490           'skonto_amount'          => $skonto_amount_rounded,
491           # 'rounding_error'         => $rounding_error,
492           # 'rounded_rounding_error' => $rounded_rounding_error,
493         };
494
495         push @skonto_charts, $rec;
496       };
497   };
498
499   # if the rounded sum of all rounding_errors reaches 0.01 this sum is
500   # subtracted from the largest skonto_amount
501   my $rounded_total_rounding_error = abs(_round($total_rounding_error));
502
503   if ( $rounded_total_rounding_error > 0 ) {
504     my $highest_amount_pos = 0;
505     my $highest_amount = 0;
506     my $i = -1;
507     foreach my $ref ( @skonto_charts ) {
508       $i++;
509       if ( $ref->{skonto_amount} > $highest_amount ) {
510         $highest_amount     = $ref->{skonto_amount};
511         $highest_amount_pos = $i;
512       };
513     };
514     $skonto_charts[$i]->{skonto_amount} -= $rounded_total_rounding_error;
515   };
516
517   return @skonto_charts;
518 };
519
520
521 sub within_skonto_period {
522   my $self = shift;
523   my $dateref = shift || DateTime->now->truncate( to => 'day' );
524
525   return undef unless ref $dateref eq 'DateTime';
526   return 0 unless $self->skonto_date;
527
528   # return 1 if requested date (or today) is inside skonto period
529   # this will also return 1 if date is before the invoice date
530   return $dateref <= $self->skonto_date;
531 };
532
533 sub valid_skonto_amount {
534   my $self = shift;
535   my $amount = shift || 0;
536   my $max_skonto_percent = 0.10;
537
538   return 0 unless $amount > 0;
539
540   # does this work for other currencies?
541   return ($self->amount*$max_skonto_percent) > $amount;
542 };
543
544 sub get_payment_select_options_for_bank_transaction {
545   my ($self, $bt_id, %params) = @_;
546
547   my $bt = SL::DB::Manager::BankTransaction->find_by( id => $bt_id );
548   die unless $bt;
549
550   my $open_amount = $self->open_amount;
551
552   my @options;
553   if ( $open_amount &&                   # invoice amount not 0
554        $self->skonto_date &&             # check whether skonto applies
555        abs(abs($self->amount_less_skonto) - abs($bt->amount)) < 0.01 &&
556        $self->check_skonto_configuration) {
557          if ( $self->within_skonto_period($bt->transdate) ) {
558            push(@options, { payment_type => 'without_skonto', display => t8('without skonto') });
559            push(@options, { payment_type => 'with_skonto_pt', display => t8('with skonto acc. to pt'), selected => 1 });
560          } else {
561            push(@options, { payment_type => 'without_skonto', display => t8('without skonto') , selected => 1 });
562            push(@options, { payment_type => 'with_skonto_pt', display => t8('with skonto acc. to pt')});
563          };
564   };
565
566   return @options;
567
568 };
569
570
571 sub get_payment_suggestions {
572
573   my ($self, %params) = @_;
574
575   my $open_amount = $self->open_amount;
576   $open_amount   -= $self->open_sepa_transfer_amount if $params{sepa};
577
578   $self->{invoice_amount_suggestion} = $open_amount;
579   undef $self->{payment_select_options};
580   push(@{$self->{payment_select_options}} , { payment_type => 'without_skonto',  display => t8('without skonto') });
581   if ( $self->within_skonto_period ) {
582     # If there have been no payments yet suggest amount_less_skonto, otherwise the open amount
583     if ( $open_amount &&                   # invoice amount not 0
584          $open_amount == $self->amount &&  # no payments yet, or sum of payments and sepa export amounts is zero
585          $self->check_skonto_configuration) {
586       $self->{invoice_amount_suggestion} = $self->amount_less_skonto;
587       push(@{$self->{payment_select_options}} , { payment_type => 'with_skonto_pt',  display => t8('with skonto acc. to pt') , selected => 1 });
588     } else {
589       if ( ( $self->valid_skonto_amount($self->open_amount) || $self->valid_skonto_amount($open_amount) ) and not $params{sepa} ) {
590         $self->{invoice_amount_suggestion} = $open_amount;
591         # only suggest difference_as_skonto if open_amount exactly matches skonto_amount
592         # AND we aren't in SEPA mode
593         my $selected = 0;
594         $selected = 1 if _round($open_amount) == _round($self->skonto_amount);
595         push(@{$self->{payment_select_options}} , { payment_type => 'difference_as_skonto',  display => t8('difference as skonto') , selected => $selected });
596       };
597     };
598   } else {
599     # invoice was configured with skonto, but skonto date has passed, or no skonto available
600     $self->{invoice_amount_suggestion} = $open_amount;
601     # difference_as_skonto doesn't make any sense for SEPA transfer, as this doesn't cause any actual payment
602     if ( $self->valid_skonto_amount($self->open_amount) && not $params{sepa} ) {
603       push(@{$self->{payment_select_options}} , { payment_type => 'difference_as_skonto',  display => t8('difference as skonto') , selected => 0 });
604     };
605   };
606   return 1;
607 };
608
609 sub transactions {
610   my ($self) = @_;
611
612   return unless $self->id;
613
614   require SL::DB::AccTransaction;
615   SL::DB::Manager::AccTransaction->get_all(query => [ trans_id => $self->id ]);
616 }
617
618 sub validate_payment_type {
619   my $payment_type = shift;
620
621   my %allowed_payment_types = map { $_ => 1 } qw(without_skonto with_skonto_pt difference_as_skonto);
622   croak "illegal payment type: $payment_type, must be one of: " . join(' ', keys %allowed_payment_types) unless $allowed_payment_types{ $payment_type };
623
624   return 1;
625 }
626
627 sub _round {
628   my $value = shift;
629   my $num_dec = 2;
630   return $::form->round_amount($value, 2);
631 }
632
633 1;
634
635 __END__
636
637 =pod
638
639 =head1 NAME
640
641 SL::DB::Helper::Payment  Mixin providing helper methods for paying C<Invoice>
642                          and C<PurchaseInvoice> objects and using skonto
643
644 =head1 SYNOPSIS
645
646 In addition to actually causing a payment via pay_invoice this helper contains
647 many methods that help in determining information about the status of the
648 invoice, such as the remaining open amount, whether skonto applies, until which
649 date skonto applies, the skonto amount and relative percentages, what to do
650 with skonto, ...
651
652 To prevent duplicate code this was all added in this mixin rather than directly
653 in SL::DB::Invoice and SL::DB::PurchaseInvoice.
654
655 =over 4
656
657 =item C<pay_invoice %params>
658
659 Create a payment booking for an existing invoice object (type ar/ap/is/ir) via
660 a configured bank account.
661
662 This function deals with all the acc_trans entries and also updates paid and datepaid.
663
664 Example:
665
666   my $ap   = SL::DB::Manager::PurchaseInvoice->find_by( invnumber => '1');
667   my $bank = SL::DB::Manager::BankAccount->find_by( name => 'Bank');
668   $ap->pay_invoice(chart_id      => $bank->chart_id,
669                    amount        => $ap->open_amount,
670                    transdate     => DateTime->now->to_kivitendo,
671                    memo          => 'foobar;
672                    source        => 'barfoo;
673                    payment_type  => 'without_skonto',  # default if not specified
674                   );
675
676 or with skonto:
677   $ap->pay_invoice(chart_id      => $bank->chart_id,
678                    amount        => $ap->amount,       # doesn't need to be specified
679                    transdate     => DateTime->now->to_kivitendo,
680                    memo          => 'foobar;
681                    source        => 'barfoo;
682                    payment_type  => 'with_skonto',
683                   );
684
685 Allowed payment types are:
686   without_skonto with_skonto_pt difference_as_skonto
687
688 The option C<payment_type> allows for a basic skonto mechanism.
689
690 C<without_skonto> is the default mode, "amount" is paid to the account in
691 chart_id. This can also be used for partial payments and corrections via
692 negative amounts.
693
694 C<with_skonto_pt> can't be used for partial payments. When used on unpaid
695 invoices the whole amount is paid, with the skonto part automatically being
696 booked according to the skonto chart configured in the tax settings for each
697 tax key. If an amount is passed it is ignored and the actual configured skonto
698 amount is used.
699
700 C<difference_as_skonto> can only be used after partial payments have been made,
701 the whole specified amount is booked according to the skonto charts configured
702 in the tax settings for each tax key.
703
704 So passing amount doesn't have any effect for the cases C<with_skonto_pt> and
705 C<difference_as_skonto>, as all necessary values are taken from the stored
706 invoice.
707
708 The skonto modes automatically calculate the relative amounts for a mix of
709 taxes, e.g. items with 7% and 19% in one invoice. There is a helper method
710 skonto_charts, which calculates the relative percentages according to the
711 amounts in acc_trans (which are grouped by tax).
712
713 There is currently no way of excluding certain items in an invoice from having
714 skonto applied to them.  If this feature was added to parts the calculation
715 method of relative skonto would have to be completely rewritten using the
716 invoice items rather than acc_trans.
717
718 The skonto modes also still don't automatically correct the tax, this still has
719 to be done manually. Therefore all payments generated by pay_invoice have
720 taxkey 0.
721
722 There is currently no way to directly pay an invoice via this method if the
723 effective skonto differs from the skonto according to the payment terms
724 configured for the invoice/vendor.
725
726 In this case one has to pay in two steps: first the actual paid amount via
727 "without skonto", and then the remainder via "difference_as_skonto". The user
728 has to there actively decide whether to accept the differing skonto.
729
730 Because of the way skonto_charts works the calculation doesn't work if there
731 are negative values in acc_trans. E.g. one invoice with a positive value for
732 19% tax and a negative value for the acc_trans line with 7%
733
734 Skonto doesn't/shouldn't apply if the invoice contains credited items.
735
736 =item C<reference_account>
737
738 Returns a chart object which is the chart of the invoice with link AR or AP.
739
740 Example (1200 is the AR account for SKR04):
741   my $invoice = invoice(invnumber => '144');
742   $invoice->reference_account->accno
743   # 1200
744
745 =item C<percent_skonto>
746
747 Returns the configured skonto percentage of the payment terms of an invoice,
748 e.g. 0.02 for 2%. Payment terms come from invoice settings for ar, from vendor
749 settings for ap.
750
751 =item C<amount_less_skonto>
752
753 If the invoice has a payment term (via ar for sales, via vendor for purchase),
754 calculate the amount to be paid in the case of skonto.  This doesn't check,
755 whether skonto applies (i.e. skonto doesn't wasn't exceeded), it just subtracts
756 the configured percentage (e.g. 2%) from the total amount.
757
758 The returned value is rounded to two decimals.
759
760 =item C<skonto_date>
761
762 The date up to which skonto may be taken. This is calculated from the invoice
763 date + the number of days configured in the payment terms.
764
765 This method can also be used to determine whether skonto applies for the
766 invoice, as it returns undef if there is no payment term or skonto days is set
767 to 0.
768
769 =item C<within_skonto_period [DATE]>
770
771 Returns 0 or 1.
772
773 Checks whether the invoice has payment terms configured, and whether the date
774 is within the skonto max date. If no date is passed the current date is used.
775
776 You can also pass a dateref object as a parameter to check whether skonto
777 applies for that date rather than the current date.
778
779 =item C<valid_skonto_amount>
780
781 Takes an amount as an argument and checks whether the amount is less than 10%
782 of the total amount of the invoice. The value of 10% is currently hardcoded in
783 the method. This method is currently used to check whether to offer the payment
784 option "difference as skonto".
785
786 Example:
787  if ( $invoice->valid_skonto_amount($invoice->open_amount) ) {
788    # ... do something
789  }
790
791 =item C<skonto_charts [$amount]>
792
793 Returns a list of chart_ids and some calculated numbers that can be used for
794 paying the invoice with skonto. This function will automatically calculate the
795 relative skonto amounts even if the invoice contains several types of taxes
796 (e.g. 7% and 19%).
797
798 Example usage:
799   my $invoice = SL::DB::Manager::Invoice->find_by(invnumber => '211');
800   my @skonto_charts = $invoice->skonto_charts;
801
802 or with the total skonto amount as an argument:
803   my @skonto_charts = $invoice->skonto_charts($invoice->open_amount);
804
805 The following values are generated for each chart:
806
807 =over 2
808
809 =item C<chart_id>
810
811 The chart id of the skonto amount to be booked.
812
813 =item C<skonto_amount>
814
815 The total amount to be paid to the account
816
817 =item C<skonto_percent>
818
819 The relative percentage of that skonto chart. This can be useful if the actual
820 ekonto that is paid deviates from the granted skonto, e.g. customer effectively
821 pays 2.6% skonto instead of 2%, and we accept this. Then we can still calculate
822 the relative skonto amounts for different taxes based on the absolute
823 percentages. Used for case C<difference_as_skonto>.
824
825 =item C<skonto_percent_abs>
826
827 The absolute percentage of that skonto chart in relation to the total amount.
828 Used to calculate skonto_amount for case C<with_skonto_pt>.
829
830 =back
831
832 If the invoice contains several types of taxes then skonto_charts can be used
833 to calculate the relative amounts.
834
835 Example in console of an invoice with 100 Euro at 7% and 100 Euro at 19% with
836 tax not included:
837
838   my $invoice = invoice(invnumber => '144');
839   $invoice->amount
840   226.00000
841   $invoice->payment_terms->percent_skonto
842   0.02
843   $invoice->skonto_charts
844   pp $invoice->skonto_charts
845   #             $VAR1 = {
846   #               'chart_id'       => 128,
847   #               'skonto_amount'  => '2.14',
848   #               'skonto_percent' => '47.3451327433627'
849   #             };
850   #             $VAR2 = {
851   #               'chart_id'       => 130,
852   #               'skonto_amount'  => '2.38',
853   #               'skonto_percent' => '52.654867256637'
854   #             };
855
856 C<skonto_charts> always returns positive values (abs) for C<skonto_amount> and
857 C<skonto_percent>.
858
859 C<skonto_charts> generates one entry for each acc_trans entry. ar and ap
860 bookings only have one acc_trans entry for each taxkey (e.g. 7% and 19%).  This
861 is because all the items are grouped according to the Buchungsgruppen mechanism
862 and the totals are written to acc_trans.  For is and ir it is possible to have
863 several acc_trans entries with the same tax. In this case skonto_charts
864 generates a skonto booking for each acc_trans income/expense entry.
865
866 In the future this function may also be used to calculate the corrections for
867 the income tax.
868
869 =item C<open_amount>
870
871 Unrounded total open amount of invoice (amount - paid).
872 Doesn't take into account pending SEPA transfers.
873
874 =item C<open_percent>
875
876 Percentage of the invoice that is still unpaid, e.g. 100,00 if no payments have
877 been made yet, 0,00 if fully paid.
878
879 =item C<remaining_skonto_days>
880
881 How many days skonto can still be taken, calculated from current day. Returns 0
882 if current day is the max skonto date, and negative number if skonto date has
883 already passed.
884
885 Returns undef if skonto is not configured for that invoice.
886
887 =item C<get_payment_suggestions %params>
888
889 Creates data intended for an L.select_tag dropdown that can be used in a
890 template. Depending on the rules it will choose from the options
891 without_skonto, with_skonto_pt and difference_as_skonto, and select the most
892 likely one.
893
894 If the parameter "sepa" is passed, the SEPA export payments that haven't been
895 executed yet are considered when determining the open amount of the invoice.
896
897 The current rules are:
898
899 =over 2
900
901 =item * without_skonto is always an option
902
903 =item * with_skonto_pt is only offered if there haven't been any payments yet and the current date is within the skonto period.
904
905 =item * difference_as_skonto is only offered if there have already been payments made and the open amount is smaller than 10% of the total amount.
906
907 with_skonto_pt will only be offered, if all the AR_amount/AP_amount have a
908 taxkey with a configured skonto chart
909
910 =back
911
912 It will also fill $self->{invoice_amount_suggestion} with either the open
913 amount, or if with_skonto_pt is selected, with amount_less_skonto, so the
914 template can fill the input with the likely amount.
915
916 Example in console:
917   my $ar = invoice( invnumber => '257');
918   $ar->get_payment_suggestions;
919   print $ar->{invoice_amount_suggestion} . "\n";
920   # 97.23
921   pp $ar->{payment_select_options}
922   # $VAR1 = [
923   #         {
924   #           'display' => 'ohne Skonto',
925   #           'payment_type' => 'without_skonto'
926   #         },
927   #         {
928   #           'display' => 'mit Skonto nach ZB',
929   #           'payment_type' => 'with_skonto_pt',
930   #           'selected' => 1
931   #         }
932   #       ];
933
934 The resulting array $ar->{payment_select_options} can be used in a template
935 select_tag using value_key and title_key:
936
937 [% L.select_tag('payment_type_' _ loop.count, invoice.payment_select_options, value_key => 'payment_type', title_key => 'display', id => 'payment_type_' _ loop.count) %]
938
939 It would probably make sense to have different rules for the pre-selected items
940 for sales and purchase, and to also make these rules configurable in the
941 defaults. E.g. when creating a SEPA bank transfer for vendor invoices a company
942 might always want to pay quickly making use of skonto, while another company
943 might always want to pay as late as possible.
944
945 =item C<transactions>
946
947 Returns all acc_trans Objects of an ar/ap object.
948
949 Example in console to print account numbers and booked amounts of an invoice:
950   my $invoice = invoice(invnumber => '144');
951   foreach my $acc_trans ( @{ $invoice->transactions } ) {
952     print $acc_trans->chart->accno . " : " . $acc_trans->amount_as_number . "\n"
953   };
954   # 1200 : 226,00000
955   # 1800 : -226,00000
956   # 4300 : 100,00000
957   # 3801 : 7,00000
958   # 3806 : 19,00000
959   # 4400 : 100,00000
960   # 1200 : -226,00000
961
962 =item C<get_payment_select_options_for_bank_transaction $banktransaction_id %params>
963
964 Make suggestion for a skonto payment type by returning an HTML blob of the options
965 of a HTML drop-down select with the most likely option preselected.
966
967 This is a helper function for BankTransaction/ajax_payment_suggestion.
968
969 We are working with an existing payment, so difference_as_skonto never makes sense.
970
971 If skonto is possible (skonto_date exists), add two possibilities:
972 without_skonto and with_skonto_pt if payment date is within skonto_date,
973 preselect with_skonto_pt, otherwise preselect without skonto.
974
975 =back
976
977 =head1 TODO AND CAVEATS
978
979 =over 4
980
981 =item *
982
983 when looking at open amount, maybe consider that there may already be queued
984 amounts in SEPA Export
985
986 =item *
987
988 Can only handle default currency.
989
990 =back
991
992 =head1 AUTHOR
993
994 G. Richardson E<lt>grichardson@kivitendo-premium.de<gt>
995
996 =cut