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