Rechnungen nach Fälligkeitsdatum sortieren
[kivitendo-erp.git] / bin / mozilla / ar.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # Accounts Receivables
31 #
32 #======================================================================
33
34 use POSIX qw(strftime);
35 use List::Util qw(sum first max);
36
37 use SL::AR;
38 use SL::FU;
39 use SL::IS;
40 use SL::PE;
41 use SL::DB::Default;
42 use SL::ReportGenerator;
43
44 require "bin/mozilla/arap.pl";
45 require "bin/mozilla/common.pl";
46 require "bin/mozilla/drafts.pl";
47 require "bin/mozilla/reportgenerator.pl";
48
49 use strict;
50 #use warnings;
51
52 # this is for our long dates
53 # $locale->text('January')
54 # $locale->text('February')
55 # $locale->text('March')
56 # $locale->text('April')
57 # $locale->text('May ')
58 # $locale->text('June')
59 # $locale->text('July')
60 # $locale->text('August')
61 # $locale->text('September')
62 # $locale->text('October')
63 # $locale->text('November')
64 # $locale->text('December')
65
66 # this is for our short month
67 # $locale->text('Jan')
68 # $locale->text('Feb')
69 # $locale->text('Mar')
70 # $locale->text('Apr')
71 # $locale->text('May')
72 # $locale->text('Jun')
73 # $locale->text('Jul')
74 # $locale->text('Aug')
75 # $locale->text('Sep')
76 # $locale->text('Oct')
77 # $locale->text('Nov')
78 # $locale->text('Dec')
79
80 sub add {
81   $main::lxdebug->enter_sub();
82
83   $main::auth->assert('general_ledger');
84
85   my $form     = $main::form;
86   my %myconfig = %main::myconfig;
87
88   return $main::lxdebug->leave_sub() if (load_draft_maybe());
89
90   # saving the history
91   if(!exists $form->{addition} && ($form->{id} ne "")) {
92     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
93     $form->{addition} = "ADDED";
94     $form->save_history;
95   }
96   # /saving the history
97
98   $form->{title}    = "Add";
99   $form->{callback} = "ar.pl?action=add&DONT_LOAD_DRAFT=1" unless $form->{callback};
100
101   AR->get_transdate(\%myconfig, $form);
102   $form->{initial_transdate} = $form->{transdate};
103   create_links(dont_save => 1);
104   $form->{transdate} = $form->{initial_transdate};
105   &display_form;
106   $main::lxdebug->leave_sub();
107 }
108
109 sub edit {
110   $main::lxdebug->enter_sub();
111
112   $main::auth->assert('general_ledger');
113
114   my $form     = $main::form;
115
116   # show history button
117   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
118   #/show hhistory button
119   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
120   $form->{title} = "Edit";
121
122   create_links();
123   &display_form;
124
125   $main::lxdebug->leave_sub();
126 }
127
128 sub display_form {
129   $main::lxdebug->enter_sub();
130
131   $main::auth->assert('general_ledger');
132
133   my $form     = $main::form;
134
135   &form_header;
136   &form_footer;
137
138   $main::lxdebug->leave_sub();
139 }
140
141 sub create_links {
142   $main::lxdebug->enter_sub();
143
144   $main::auth->assert('general_ledger');
145
146   my %params   = @_;
147   my $form     = $main::form;
148   my %myconfig = %main::myconfig;
149
150   $form->create_links("AR", \%myconfig, "customer");
151
152   my %saved;
153   if (!$params{dont_save}) {
154     %saved = map { ($_ => $form->{$_}) } qw(direct_debit id taxincluded);
155     $saved{duedate} = $form->{duedate} if $form->{duedate};
156   }
157
158   IS->get_customer(\%myconfig, \%$form);
159
160   $form->{$_}          = $saved{$_} for keys %saved;
161   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
162   $form->{rowcount}    = 1;
163
164   # currencies
165   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
166
167   map { $form->{selectcurrency} .= "<option>$_\n" } $form->get_all_currencies(\%myconfig);
168
169   # customers
170   if (@{ $form->{all_customer} || [] }) {
171     $form->{customer} = "$form->{customer}--$form->{customer_id}";
172     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
173       (@{ $form->{all_customer} });
174   }
175
176   # departments
177   if (@{ $form->{all_departments} || [] }) {
178     $form->{selectdepartment} = "<option>\n";
179     $form->{department}       = "$form->{department}--$form->{department_id}";
180
181     map {
182       $form->{selectdepartment} .=
183         "<option>$_->{description}--$_->{id}\n"
184     } (@{ $form->{all_departments} || [] });
185   }
186
187   $form->{employee} = "$form->{employee}--$form->{employee_id}";
188
189   # sales staff
190   if (@{ $form->{all_employees} || [] }) {
191     $form->{selectemployee} = "";
192     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
193       (@{ $form->{all_employees} || [] });
194   }
195
196   # build the popup menus
197   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
198
199   AR->setup_form($form);
200
201   $form->{locked} =
202     ($form->datetonum($form->{transdate}, \%myconfig) <=
203      $form->datetonum($form->{closedto}, \%myconfig));
204
205   $main::lxdebug->leave_sub();
206 }
207
208 sub form_header {
209   $main::lxdebug->enter_sub();
210
211   $main::auth->assert('general_ledger');
212
213   my $form     = $main::form;
214   my %myconfig = %main::myconfig;
215   my $locale   = $main::locale;
216   my $cgi      = $::request->{cgi};
217
218   my ($title, $readonly, $exchangerate, $rows);
219   my ($notes, $department, $customer, $employee, $amount, $project);
220   my ($ARselected);
221
222
223   $title = $form->{title};
224   # $locale->text('Add Accounts Receivables Transaction')
225   # $locale->text('Edit Accounts Receivables Transaction')
226   $form->{title} = $locale->text("$title Accounts Receivables Transaction");
227
228   $form->{javascript} = qq|<script type="text/javascript">
229   <!--
230   function setTaxkey(accno, row) {
231     var taxkey = accno.options[accno.selectedIndex].value;
232     var reg = /--([0-9]*)/;
233     var found = reg.exec(taxkey);
234     var index = found[1];
235     index = parseInt(index);
236     var tax = 'taxchart_' + row;
237     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
238       var reg2 = new RegExp("^"+ index, "");
239       if (reg2.exec(document.getElementById(tax).options[i].value)) {
240         document.getElementById(tax).options[i].selected = true;
241         break;
242       }
243     }
244   };
245   //-->
246   </script>|;
247   # show history button js
248   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
249   #/show history button js
250   $readonly = ($form->{id}) ? "readonly" : "";
251
252   $form->{radier} = ($::instance_conf->get_ar_changeable == 2)
253                       ? ($form->current_date(\%myconfig) eq $form->{gldate})
254                       : ($::instance_conf->get_ar_changeable == 1);
255   $readonly = ($form->{radier}) ? "" : $readonly;
256
257   # set option selected
258   foreach my $item (qw(customer currency department employee)) {
259     $form->{"select$item"} =~ s/ selected//;
260     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
261   }
262
263   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
264   $form->{exchangerate} = $form->{forex} if $form->{forex};
265
266   $rows = max 2, $form->numtextrows($form->{notes}, 50);
267
268   my @old_project_ids = grep { $_ } map { $form->{"project_id_$_"} } 1..$form->{rowcount};
269
270   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
271                                     "all"       => 0,
272                                     "old_id"    => \@old_project_ids },
273                    "charts"    => { "key"       => "ALL_CHARTS",
274                                     "transdate" => $form->{transdate} },
275                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
276                                     "module"    => "AR" },);
277
278   $_->{link_split} = { map { $_ => 1 } split/:/, $_->{link} } for @{ $form->{ALL_CHARTS} };
279
280   my %project_labels = map { $_->{id} => $_->{projectnumber} } @{ $form->{"ALL_PROJECTS"} };
281
282   my (@AR_amount_values);
283   my (@AR_values);
284   my (@AR_paid_values);
285   my %chart_labels;
286   my %charts;
287   my $taxchart_init;
288
289   foreach my $item (@{ $form->{ALL_CHARTS} }) {
290     if ($item->{link_split}{AR_amount}) {
291       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
292       my $key = "$item->{accno}--$item->{tax_id}";
293       push(@AR_amount_values, $key);
294     } elsif ($item->{link_split}{AR}) {
295       push(@AR_values, $item->{accno});
296     } elsif ($item->{link_split}{AR_paid}) {
297       push(@AR_paid_values, $item->{accno});
298     }
299
300     # weirdness for AR_amount
301     $chart_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
302     $chart_labels{"$item->{accno}--$item->{tax_id}"} = "$item->{accno}--$item->{description}";
303
304     $charts{$item->{accno}} = $item;
305   }
306
307   my %taxchart_labels = ();
308   my @taxchart_values = ();
309   my %taxcharts = ();
310   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
311     my $key = "$item->{id}--$item->{rate}";
312     $taxchart_init = $key if ($taxchart_init eq $item->{id});
313     push(@taxchart_values, $key);
314     $taxchart_labels{$key} = "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
315     $taxcharts{$item->{id}} = $item;
316   }
317
318   my $follow_up_vc         =  $form->{customer};
319   $follow_up_vc            =~ s/--.*?//;
320   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
321
322   $form->{javascript} .=
323     qq|<script type="text/javascript" src="js/show_vc_details.js"></script>| .
324     qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
325
326 #  $amount  = $locale->text('Amount');
327 #  $project = $locale->text('Project');
328
329   my @transactions;
330   for my $i (1 .. $form->{rowcount}) {
331     my $transaction = {
332       amount     => $form->{"amount_$i"},
333       tax        => $form->{"tax_$i"},
334       project_id => ($i==$form->{rowcount}) ? $form->{globalproject_id} : $form->{"project_id_$i"},
335     };
336
337     my $selected_accno_full;
338     my ($accno_row) = split(/--/, $form->{"AR_amount_$i"});
339     my $item = $charts{$accno_row};
340     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
341
342     my $selected_taxchart = $form->{"taxchart_$i"};
343     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
344     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AR_amount_$i"});
345
346     if ($previous_accno &&
347         ($previous_accno eq $selected_accno) &&
348         ($previous_tax_id ne $selected_tax_id)) {
349       my $item = $taxcharts{$selected_tax_id};
350       $selected_taxchart = "$item->{id}--$item->{rate}";
351     }
352
353     if (!$form->{"taxchart_$i"}) {
354       if ($form->{"AR_amount_$i"} =~ m/.--./) {
355         $selected_taxchart = join '--', map { ($_->{id}, $_->{rate}) } first { $_->{id} == $item->{tax_id} } @{ $form->{ALL_TAXCHARTS} };
356       } else {
357         $selected_taxchart = $taxchart_init;
358       }
359     }
360
361     $transaction->{selectAR_amount} =
362       NTI($cgi->popup_menu('-name' => "AR_amount_$i",
363                            '-id' => "AR_amount_$i",
364                            '-style' => 'width:400px',
365                            '-onChange' => "setTaxkey(this, $i)",
366                            '-values' => \@AR_amount_values,
367                            '-labels' => \%chart_labels,
368                            '-default' => $selected_accno_full))
369       . $cgi->hidden('-name' => "previous_AR_amount_$i",
370                      '-default' => $selected_accno_full);
371
372     $transaction->{taxchart} =
373       NTI($cgi->popup_menu('-name' => "taxchart_$i",
374                            '-id' => "taxchart_$i",
375                            '-style' => 'width:200px',
376                            '-values' => \@taxchart_values,
377                            '-labels' => \%taxchart_labels,
378                            '-default' => $selected_taxchart));
379
380     push @transactions, $transaction;
381   }
382
383   $form->{invtotal_unformatted} = $form->{invtotal};
384
385   $ARselected =
386     NTI($cgi->popup_menu('-name' => "ARselected", '-id' => "ARselected",
387                          '-style' => 'width:400px',
388                          '-values' => \@AR_values, '-labels' => \%chart_labels,
389                          '-default' => $form->{ARselected}));
390
391
392   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
393
394   my $now = $form->current_date(\%myconfig);
395
396   my @payments;
397   for my $i (1 .. $form->{paidaccounts}) {
398     my $payment = {
399       paid             => $form->{"paid_$i"},
400       exchangerate     => $form->{"exchangerate_$i"} || '',
401       gldate           => $form->{"gldate_$i"},
402       acc_trans_id     => $form->{"acc_trans_id_$i"},
403       source           => $form->{"source_$i"},
404       memo             => $form->{"memo_$i"},
405       AR_paid          => $form->{"AR_paid_$i"},
406       forex            => $form->{"forex_$i"},
407       datepaid         => $form->{"datepaid_$i"},
408       paid_project_id  => $form->{"paid_project_id_$i"},
409       gldate           => $form->{"gldate_$i"},
410     };
411
412   # default account for current assets (i.e. 1801 - SKR04) if no account is selected
413   $form->{accno_arap} = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
414
415     $payment->{selectAR_paid} =
416       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
417                            '-id' => "AR_paid_$i",
418                            '-values' => \@AR_paid_values,
419                            '-labels' => \%chart_labels,
420                            '-default' => $payment->{AR_paid} || $form->{accno_arap}));
421
422
423
424     $payment->{changeable} =
425         SL::DB::Default->get->payments_changeable == 0 ? !$payment->{acc_trans_id} # never
426       : SL::DB::Default->get->payments_changeable == 2 ? $payment->{gldate} eq '' || $payment->{gldate} eq $now
427       :                                                           1;
428
429     push @payments, $payment;
430   }
431
432   $form->{totalpaid} = sum map { $_->{paid} } @payments;
433
434   $form->header;
435   print $::form->parse_html_template('ar/form_header', {
436     paid_missing         => $::form->{invtotal} - $::form->{totalpaid},
437     show_exch            => ($::form->{defaultcurrency} && ($::form->{currency} ne $::form->{defaultcurrency})),
438     payments             => \@payments,
439     transactions         => \@transactions,
440     project_labels       => \%project_labels,
441     rows                 => $rows,
442     ARselected           => $ARselected,
443     title_str            => $title,
444     follow_up_trans_info => $follow_up_trans_info,
445   });
446
447   $main::lxdebug->leave_sub();
448 }
449
450 sub form_footer {
451   $main::lxdebug->enter_sub();
452
453   $main::auth->assert('general_ledger');
454
455   my $form     = $main::form;
456   my %myconfig = %main::myconfig;
457   my $locale   = $main::locale;
458   my $cgi      = $::request->{cgi};
459
460   if ( $form->{id} ) {
461     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
462     if ( @{ $follow_ups} ) {
463       $form->{follow_up_length} = scalar(@{$follow_ups});
464       $form->{follow_up_due_length} = sum(map({ $_->{due} * 1 } @{ $follow_ups }));
465     }
466   }
467
468   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
469   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
470
471   $form->{is_closed} = $transdate <= $closedto;
472
473   # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
474   $form->{show_storno_button} =
475     $form->{id} &&
476     !IS->has_storno(\%myconfig, $form, 'ar') &&
477     !IS->is_storno(\%myconfig, $form, 'ar') &&
478     ($form->{totalpaid} == 0 || $form->{totalpaid} eq "");
479
480   $form->{show_mark_as_paid_button} = $form->{id} && $::instance_conf->get_ar_show_mark_as_paid();
481
482   print $::form->parse_html_template('ar/form_footer');
483
484   $main::lxdebug->leave_sub();
485 }
486
487 sub mark_as_paid {
488   $main::lxdebug->enter_sub();
489
490   $main::auth->assert('general_ledger');
491
492   my $form     = $main::form;
493   my %myconfig = %main::myconfig;
494
495   &mark_as_paid_common(\%myconfig,"ar");
496
497   $main::lxdebug->leave_sub();
498 }
499
500 sub update {
501   $main::lxdebug->enter_sub();
502
503   $main::auth->assert('general_ledger');
504
505   my $form     = $main::form;
506   my %myconfig = %main::myconfig;
507
508   my $display = shift;
509
510   my ($totaltax, $exchangerate);
511
512   $form->{invtotal} = 0;
513
514   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
515
516   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
517     qw(exchangerate creditlimit creditremaining);
518
519   my @flds  = qw(amount AR_amount projectnumber oldprojectnumber project_id);
520   my $count = 0;
521   my @a     = ();
522
523   for my $i (1 .. $form->{rowcount}) {
524     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
525     if ($form->{"amount_$i"}) {
526       push @a, {};
527       my $j = $#a;
528       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
529
530       my $tmpnetamount;
531       ($tmpnetamount,$form->{"tax_$i"}) = $form->calculate_tax($form->{"amount_$i"},$rate,$form->{taxincluded},2);
532
533       $totaltax += $form->{"tax_$i"};
534       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
535       $count++;
536     }
537   }
538
539   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
540   $form->{rowcount} = $count + 1;
541   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
542
543   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
544   $form->{exchangerate} = $form->{forex} if $form->{forex};
545
546   $form->{invdate} = $form->{transdate};
547
548   $form->{invdate} = $form->{transdate};
549
550   my %saved_variables = map +( $_ => $form->{$_} ), qw(AR AR_amount_1 taxchart_1 customer_id notes);
551
552   &check_name("customer");
553
554   $form->{AR} = $saved_variables{AR};
555   if ($saved_variables{AR_amount_1} =~ m/.--./) {
556     map { $form->{$_} = $saved_variables{$_} } qw(AR_amount_1 taxchart_1);
557   } else {
558     delete $form->{taxchart_1};
559   }
560
561   $form->{invtotal} =
562     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
563
564   for my $i (1 .. $form->{paidaccounts}) {
565     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
566       map {
567         $form->{"${_}_$i"} =
568           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
569       } qw(paid exchangerate);
570
571       $form->{totalpaid} += $form->{"paid_$i"};
572
573       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
574       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
575     }
576   }
577
578   $form->{creditremaining} -=
579     ($form->{invtotal} - $form->{totalpaid} + $form->{oldtotalpaid} -
580      $form->{oldinvtotal});
581   $form->{oldinvtotal}  = $form->{invtotal};
582   $form->{oldtotalpaid} = $form->{totalpaid};
583
584   &display_form;
585
586   $main::lxdebug->leave_sub();
587 }
588
589 #
590 # ToDO: fix $closedto and $invdate
591 #
592 sub post_payment {
593   $main::lxdebug->enter_sub();
594
595   $main::auth->assert('general_ledger');
596
597   my $form     = $main::form;
598   my %myconfig = %main::myconfig;
599   my $locale   = $main::locale;
600
601   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
602
603   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
604
605   for my $i (1 .. $form->{paidaccounts}) {
606
607     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
608       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
609
610       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
611
612       $form->error($locale->text('Cannot post payment for a closed period!')) if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
613
614       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
615 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
616         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
617       }
618     }
619   }
620
621   ($form->{AR})      = split /--/, $form->{AR};
622   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
623   if (AR->post_payment(\%myconfig, \%$form)) {
624     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
625     $form->{what_done} = 'invoice';
626     $form->{addition}  = "PAYMENT POSTED";
627     $form->save_history;
628     $form->redirect($locale->text('Payment posted!'))
629   } else {
630     $form->error($locale->text('Cannot post payment!'));
631   };
632
633   $main::lxdebug->leave_sub();
634 }
635
636 sub _post {
637
638   $main::auth->assert('general_ledger');
639
640   my $form     = $main::form;
641
642   # inline post
643   post(1);
644 }
645
646 sub post {
647   $main::lxdebug->enter_sub();
648
649   $main::auth->assert('general_ledger');
650
651   my $form     = $main::form;
652   my %myconfig = %main::myconfig;
653   my $locale   = $main::locale;
654
655   my ($inline) = @_;
656
657   my ($datepaid);
658
659   # check if there is an invoice number, invoice and due date
660   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
661   $form->isblank("duedate",   $locale->text('Due Date missing!'));
662   $form->isblank("customer",  $locale->text('Customer missing!'));
663
664   if ($myconfig{mandatory_departments} && !$form->{department}) {
665     $form->{saved_message} = $::locale->text('You have to specify a department.');
666     update();
667     exit;
668   }
669
670   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
671   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
672
673   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
674     if ($form->date_max_future($transdate, \%myconfig));
675   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
676
677   $form->error($locale->text('Zero amount posting!'))
678     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
679
680   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
681     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
682
683   delete($form->{AR});
684
685   for my $i (1 .. $form->{paidaccounts}) {
686     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
687       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
688
689       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
690
691       $form->error($locale->text('Cannot post payment for a closed period!'))
692         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
693
694       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
695         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
696         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
697       }
698     }
699   }
700
701   # if oldcustomer ne customer redo form
702   my ($customer) = split /--/, $form->{customer};
703   if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
704     update();
705     ::end_of_request();
706   }
707
708   $form->{AR}{receivables} = $form->{ARselected};
709   $form->{storno}          = 0;
710
711   $form->{id} = 0 if $form->{postasnew};
712   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
713
714   # saving the history
715   if(!exists $form->{addition} && $form->{id} ne "") {
716     $form->{snumbers}  = "invnumber_$form->{invnumber}";
717     $form->{what_done} = "invoice";
718     $form->{addition}  = "POSTED";
719     $form->save_history;
720   }
721   # /saving the history
722   remove_draft() if $form->{remove_draft};
723
724   $form->redirect($locale->text('Transaction posted!')) unless $inline;
725
726   $main::lxdebug->leave_sub();
727 }
728
729 sub post_as_new {
730   $main::lxdebug->enter_sub();
731
732   $main::auth->assert('general_ledger');
733
734   my $form     = $main::form;
735   my %myconfig = %main::myconfig;
736
737   $form->{postasnew} = 1;
738   # saving the history
739   if(!exists $form->{addition} && $form->{id} ne "") {
740     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
741     $form->{what_done} = "invoice";
742     $form->{addition}  = "POSTED AS NEW";
743     $form->save_history;
744   }
745   # /saving the history
746   &post;
747
748   $main::lxdebug->leave_sub();
749 }
750
751 sub use_as_new {
752   $main::lxdebug->enter_sub();
753
754   $main::auth->assert('general_ledger');
755
756   my $form     = $main::form;
757   my %myconfig = %main::myconfig;
758
759   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
760   $form->{paidaccounts} = 1;
761   $form->{rowcount}--;
762   $form->{invdate} = $form->current_date(\%myconfig);
763   &update;
764
765   $main::lxdebug->leave_sub();
766 }
767
768 sub delete {
769   $main::lxdebug->enter_sub();
770
771   $main::auth->assert('general_ledger');
772
773   my $form     = $main::form;
774   my $locale   = $main::locale;
775
776   $form->{title} = $locale->text('Confirm!');
777
778   $form->header;
779
780   delete $form->{header};
781
782   print qq|
783 <form method=post action=$form->{script}>
784 |;
785
786   foreach my $key (keys %$form) {
787     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
788     $form->{$key} =~ s/\"/&quot;/g;
789     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
790   }
791
792   print qq|
793 <h2 class=confirm>$form->{title}</h2>
794
795 <h4>|
796     . $locale->text('Are you sure you want to delete Transaction')
797     . qq| $form->{invnumber}</h4>
798
799 <input name=action class=submit type=submit value="|
800     . $locale->text('Yes') . qq|">
801 </form>
802 |;
803
804   $main::lxdebug->leave_sub();
805 }
806
807 sub yes {
808   $main::lxdebug->enter_sub();
809
810   $main::auth->assert('general_ledger');
811
812   my $form     = $main::form;
813   my %myconfig = %main::myconfig;
814   my $locale   = $main::locale;
815
816   if (AR->delete_transaction(\%myconfig, \%$form)) {
817     # saving the history
818     if(!exists $form->{addition}) {
819       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
820       $form->{what_done} = "invoice";
821       $form->{addition}  = "DELETED";
822       $form->save_history;
823     }
824     # /saving the history
825     $form->redirect($locale->text('Transaction deleted!'));
826   }
827   $form->error($locale->text('Cannot delete transaction!'));
828
829   $main::lxdebug->leave_sub();
830 }
831
832 sub search {
833   $main::lxdebug->enter_sub();
834
835   $main::auth->assert('invoice_edit');
836
837   my $form     = $main::form;
838   my %myconfig = %main::myconfig;
839   my $locale   = $main::locale;
840   my $cgi      = $::request->{cgi};
841
842   # setup customer selection
843   $form->all_vc(\%myconfig, "customer", "AR");
844
845   $form->{title}    = $locale->text('AR Transactions');
846
847   # Auch in Rechnungsübersicht nach Kundentyp filtern - jan
848   $form->get_lists("projects"       => { "key" => "ALL_PROJECTS", "all" => 1 },
849                    "departments"    => "ALL_DEPARTMENTS",
850                    "customers"      => "ALL_VC",
851                    "business_types" => "ALL_BUSINESS_TYPES");
852   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
853   $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
854
855   $form->{CT_CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
856   ($form->{CT_CUSTOM_VARIABLES_FILTER_CODE},
857    $form->{CT_CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CT_CUSTOM_VARIABLES},
858                                                                               'include_prefix' => 'l_',
859                                                                               'include_value'  => 'Y');
860
861   # constants and subs for template
862   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
863
864   $form->header;
865   print $form->parse_html_template('ar/search', { %myconfig });
866
867   $main::lxdebug->leave_sub();
868 }
869
870 sub create_subtotal_row {
871   $main::lxdebug->enter_sub();
872
873   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
874
875   my $form     = $main::form;
876   my %myconfig = %main::myconfig;
877
878   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
879
880   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
881
882   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
883
884   map { $totals->{$_} = 0 } @{ $subtotal_columns };
885
886   $main::lxdebug->leave_sub();
887
888   return $row;
889 }
890
891 sub ar_transactions {
892   $main::lxdebug->enter_sub();
893
894   $main::auth->assert('invoice_edit');
895
896   my $form     = $main::form;
897   my %myconfig = %main::myconfig;
898   my $locale   = $main::locale;
899
900   my ($callback, $href, @columns);
901
902   ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
903
904   report_generator_set_default_sort('transdate', 1);
905
906   AR->ar_transactions(\%myconfig, \%$form);
907
908   $form->{title} = $locale->text('AR Transactions');
909
910   my $report = SL::ReportGenerator->new(\%myconfig, $form);
911
912   @columns =
913     qw(transdate id type invnumber ordnumber cusordnumber name netamount tax amount paid
914        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
915        marge_total marge_percent globalprojectnumber customernumber country ustid taxzone payment_terms charts customertype);
916
917   my $ct_cvar_configs                 = CVar->get_configs('module' => 'CT');
918   my @ct_includeable_custom_variables = grep { $_->{includeable} } @{ $ct_cvar_configs };
919   my @ct_searchable_custom_variables  = grep { $_->{searchable} }  @{ $ct_cvar_configs };
920
921   my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @ct_includeable_custom_variables;
922   push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
923
924   my @hidden_variables = map { "l_${_}" } @columns;
925   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto duedatefrom duedateto employee_id salesman_id business_id);
926   push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
927
928   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
929
930   my %column_defs = (
931     'transdate'               => { 'text' => $locale->text('Date'), },
932     'id'                      => { 'text' => $locale->text('ID'), },
933     'type'                    => { 'text' => $locale->text('Type'), },
934     'invnumber'               => { 'text' => $locale->text('Invoice'), },
935     'ordnumber'               => { 'text' => $locale->text('Order'), },
936     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
937     'name'                    => { 'text' => $locale->text('Customer'), },
938     'netamount'               => { 'text' => $locale->text('Amount'), },
939     'tax'                     => { 'text' => $locale->text('Tax'), },
940     'amount'                  => { 'text' => $locale->text('Total'), },
941     'paid'                    => { 'text' => $locale->text('Paid'), },
942     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
943     'due'                     => { 'text' => $locale->text('Amount Due'), },
944     'duedate'                 => { 'text' => $locale->text('Due Date'), },
945     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
946     'notes'                   => { 'text' => $locale->text('Notes'), },
947     'salesman'                => { 'text' => $locale->text('Salesperson'), },
948     'employee'                => { 'text' => $locale->text('Employee'), },
949     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
950     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
951     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
952     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
953     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
954     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
955     'country'                 => { 'text' => $locale->text('Country'), },
956     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
957     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
958     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
959     'charts'                  => { 'text' => $locale->text('Buchungskonto'), },
960     'customertype'            => { 'text' => $locale->text('Customer type'), },
961     %column_defs_cvars,
962   );
963
964   foreach my $name (qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
965     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
966     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
967   }
968
969   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
970
971   $form->{"l_type"} = "Y";
972   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
973
974   $report->set_columns(%column_defs);
975   $report->set_column_order(@columns);
976
977   $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
978
979   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
980
981   CVar->add_custom_variables_to_report('module'         => 'CT',
982                                        'trans_id_field' => 'customer_id',
983                                        'configs'        => $ct_cvar_configs,
984                                        'column_defs'    => \%column_defs,
985                                        'data'           => $form->{AR});
986
987   my @options;
988   if ($form->{customer}) {
989     push @options, $locale->text('Customer') . " : $form->{customer}";
990   }
991   if ($form->{cp_name}) {
992     push @options, $locale->text('Contact Person') . " : $form->{cp_name}";
993   }
994   if ($form->{department}) {
995     my ($department) = split /--/, $form->{department};
996     push @options, $locale->text('Department') . " : $department";
997   }
998   if ($form->{department_id}) {
999     push @options, $locale->text('Department Id') . " : $form->{department_id}";
1000   }
1001   if ($form->{invnumber}) {
1002     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
1003   }
1004   if ($form->{ordnumber}) {
1005     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
1006   }
1007   if ($form->{cusordnumber}) {
1008     push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}";
1009   }
1010   if ($form->{notes}) {
1011     push @options, $locale->text('Notes') . " : $form->{notes}";
1012   }
1013   if ($form->{transaction_description}) {
1014     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
1015   }
1016   if ($form->{transdatefrom}) {
1017     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1018   }
1019   if ($form->{transdateto}) {
1020     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
1021   }
1022   if ($form->{open}) {
1023     push @options, $locale->text('Open');
1024   }
1025   if ($form->{employee_id}) {
1026     my $employee = SL::DB::Employee->new(id => $form->{employee_id})->load;
1027     push @options, $locale->text('Employee') . ' : ' . $employee->name;
1028   }
1029   if ($form->{salesman_id}) {
1030     my $salesman = SL::DB::Employee->new(id => $form->{salesman_id})->load;
1031     push @options, $locale->text('Salesman') . ' : ' . $salesman->name;
1032   }
1033   if ($form->{closed}) {
1034     push @options, $locale->text('Closed');
1035   }
1036
1037   $report->set_options('top_info_text'        => join("\n", @options),
1038                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
1039                        'output_format'        => 'HTML',
1040                        'title'                => $form->{title},
1041                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
1042     );
1043   $report->set_options_from_form();
1044   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1045
1046   # add sort and escape callback, this one we use for the add sub
1047   $form->{callback} = $href .= "&sort=$form->{sort}";
1048
1049   # escape callback for href
1050   $callback = $form->escape($href);
1051
1052   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
1053
1054   my %totals    = map { $_ => 0 } @subtotal_columns;
1055   my %subtotals = map { $_ => 0 } @subtotal_columns;
1056
1057   my $idx = 0;
1058
1059   foreach my $ar (@{ $form->{AR} }) {
1060     $ar->{tax} = $ar->{amount} - $ar->{netamount};
1061     $ar->{due} = $ar->{amount} - $ar->{paid};
1062
1063     map { $subtotals{$_} += $ar->{$_};
1064           $totals{$_}    += $ar->{$_} } @subtotal_columns;
1065
1066     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
1067     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
1068
1069     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
1070
1071     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
1072     my $has_storno = $ar->{storno} && !$ar->{storno_id};
1073
1074     $ar->{type} =
1075       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
1076       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
1077       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
1078       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
1079                           $locale->text("AR Transaction (abbreviation)");
1080
1081     my $row = { };
1082
1083     foreach my $column (@columns) {
1084       $row->{$column} = {
1085         'data'  => $ar->{$column},
1086         'align' => $column_alignment{$column},
1087       };
1088     }
1089
1090     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
1091       . "&id=" . E($ar->{id}) . "&callback=${callback}";
1092
1093     my $row_set = [ $row ];
1094
1095     if (($form->{l_subtotal} eq 'Y')
1096         && (($idx == (scalar @{ $form->{AR} } - 1))
1097             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
1098       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1099     }
1100
1101     $report->add_data($row_set);
1102
1103     $idx++;
1104   }
1105
1106   $report->add_separator();
1107   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1108
1109   $report->generate_with_headers();
1110
1111   $main::lxdebug->leave_sub();
1112 }
1113
1114 sub storno {
1115   $main::lxdebug->enter_sub();
1116
1117   $main::auth->assert('general_ledger');
1118
1119   my $form     = $main::form;
1120   my %myconfig = %main::myconfig;
1121   my $locale   = $main::locale;
1122
1123   # don't cancel cancelled transactions
1124   if (IS->has_storno(\%myconfig, $form, 'ar')) {
1125     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
1126     $form->error($locale->text("Transaction has already been cancelled!"));
1127   }
1128
1129   AR->storno($form, \%myconfig, $form->{id});
1130
1131   # saving the history
1132   if(!exists $form->{addition} && $form->{id} ne "") {
1133     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
1134     $form->{addition}  = "STORNO";
1135     $form->{what_done} = "invoice";
1136     $form->save_history;
1137   }
1138   # /saving the history
1139
1140   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1141
1142   $main::lxdebug->leave_sub();
1143 }
1144
1145 1;