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