64efbc7e6625e1b3d4d435fd57b311a60a998d5a
[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   $form->redirect($locale->text('Payment posted!')) if (AR->post_payment(\%myconfig, \%$form));
624   $form->error($locale->text('Cannot post payment!'));
625
626   $main::lxdebug->leave_sub();
627 }
628
629 sub _post {
630
631   $main::auth->assert('general_ledger');
632
633   my $form     = $main::form;
634
635   # inline post
636   post(1);
637 }
638
639 sub post {
640   $main::lxdebug->enter_sub();
641
642   $main::auth->assert('general_ledger');
643
644   my $form     = $main::form;
645   my %myconfig = %main::myconfig;
646   my $locale   = $main::locale;
647
648   my ($inline) = @_;
649
650   my ($datepaid);
651
652   # check if there is an invoice number, invoice and due date
653   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
654   $form->isblank("duedate",   $locale->text('Due Date missing!'));
655   $form->isblank("customer",  $locale->text('Customer missing!'));
656
657   if ($myconfig{mandatory_departments} && !$form->{department}) {
658     $form->{saved_message} = $::locale->text('You have to specify a department.');
659     update();
660     exit;
661   }
662
663   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
664   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
665
666   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
667     if ($form->date_max_future($transdate, \%myconfig));
668   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
669
670   $form->error($locale->text('Zero amount posting!'))
671     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
672
673   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
674     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
675
676   delete($form->{AR});
677
678   for my $i (1 .. $form->{paidaccounts}) {
679     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
680       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
681
682       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
683
684       $form->error($locale->text('Cannot post payment for a closed period!'))
685         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
686
687       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
688         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
689         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
690       }
691     }
692   }
693
694   # if oldcustomer ne customer redo form
695   my ($customer) = split /--/, $form->{customer};
696   if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
697     update();
698     ::end_of_request();
699   }
700
701   $form->{AR}{receivables} = $form->{ARselected};
702   $form->{storno}          = 0;
703
704   $form->{id} = 0 if $form->{postasnew};
705   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
706
707   # saving the history
708   if(!exists $form->{addition} && $form->{id} ne "") {
709     $form->{snumbers} = "invnumber_$form->{invnumber}";
710     $form->{addition} = "POSTED";
711     $form->save_history;
712   }
713   # /saving the history
714   remove_draft() if $form->{remove_draft};
715
716   $form->redirect($locale->text('Transaction posted!')) unless $inline;
717
718   $main::lxdebug->leave_sub();
719 }
720
721 sub post_as_new {
722   $main::lxdebug->enter_sub();
723
724   $main::auth->assert('general_ledger');
725
726   my $form     = $main::form;
727   my %myconfig = %main::myconfig;
728
729   $form->{postasnew} = 1;
730   # saving the history
731   if(!exists $form->{addition} && $form->{id} ne "") {
732     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
733     $form->{addition} = "POSTED AS NEW";
734     $form->save_history;
735   }
736   # /saving the history
737   &post;
738
739   $main::lxdebug->leave_sub();
740 }
741
742 sub use_as_new {
743   $main::lxdebug->enter_sub();
744
745   $main::auth->assert('general_ledger');
746
747   my $form     = $main::form;
748   my %myconfig = %main::myconfig;
749
750   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);
751   $form->{paidaccounts} = 1;
752   $form->{rowcount}--;
753   $form->{invdate} = $form->current_date(\%myconfig);
754   &update;
755
756   $main::lxdebug->leave_sub();
757 }
758
759 sub delete {
760   $main::lxdebug->enter_sub();
761
762   $main::auth->assert('general_ledger');
763
764   my $form     = $main::form;
765   my $locale   = $main::locale;
766
767   $form->{title} = $locale->text('Confirm!');
768
769   $form->header;
770
771   delete $form->{header};
772
773   print qq|
774 <form method=post action=$form->{script}>
775 |;
776
777   foreach my $key (keys %$form) {
778     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
779     $form->{$key} =~ s/\"/&quot;/g;
780     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
781   }
782
783   print qq|
784 <h2 class=confirm>$form->{title}</h2>
785
786 <h4>|
787     . $locale->text('Are you sure you want to delete Transaction')
788     . qq| $form->{invnumber}</h4>
789
790 <input name=action class=submit type=submit value="|
791     . $locale->text('Yes') . qq|">
792 </form>
793 |;
794
795   $main::lxdebug->leave_sub();
796 }
797
798 sub yes {
799   $main::lxdebug->enter_sub();
800
801   $main::auth->assert('general_ledger');
802
803   my $form     = $main::form;
804   my %myconfig = %main::myconfig;
805   my $locale   = $main::locale;
806
807   if (AR->delete_transaction(\%myconfig, \%$form)) {
808     # saving the history
809     if(!exists $form->{addition}) {
810       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
811       $form->{addition} = "DELETED";
812       $form->save_history;
813     }
814     # /saving the history
815     $form->redirect($locale->text('Transaction deleted!'));
816   }
817   $form->error($locale->text('Cannot delete transaction!'));
818
819   $main::lxdebug->leave_sub();
820 }
821
822 sub search {
823   $main::lxdebug->enter_sub();
824
825   $main::auth->assert('invoice_edit');
826
827   my $form     = $main::form;
828   my %myconfig = %main::myconfig;
829   my $locale   = $main::locale;
830   my $cgi      = $::request->{cgi};
831
832   # setup customer selection
833   $form->all_vc(\%myconfig, "customer", "AR");
834
835   $form->{title}    = $locale->text('AR Transactions');
836
837   # Auch in Rechnungsübersicht nach Kundentyp filtern - jan
838   $form->get_lists("projects"       => { "key" => "ALL_PROJECTS", "all" => 1 },
839                    "departments"    => "ALL_DEPARTMENTS",
840                    "customers"      => "ALL_VC",
841                    "business_types" => "ALL_BUSINESS_TYPES");
842   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
843   $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
844
845   # constants and subs for template
846   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
847
848   $form->header;
849   print $form->parse_html_template('ar/search', { %myconfig });
850
851   $main::lxdebug->leave_sub();
852 }
853
854 sub create_subtotal_row {
855   $main::lxdebug->enter_sub();
856
857   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
858
859   my $form     = $main::form;
860   my %myconfig = %main::myconfig;
861
862   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
863
864   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
865
866   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
867
868   map { $totals->{$_} = 0 } @{ $subtotal_columns };
869
870   $main::lxdebug->leave_sub();
871
872   return $row;
873 }
874
875 sub ar_transactions {
876   $main::lxdebug->enter_sub();
877
878   $main::auth->assert('invoice_edit');
879
880   my $form     = $main::form;
881   my %myconfig = %main::myconfig;
882   my $locale   = $main::locale;
883
884   my ($callback, $href, @columns);
885
886   ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
887
888   report_generator_set_default_sort('transdate', 1);
889
890   AR->ar_transactions(\%myconfig, \%$form);
891
892   $form->{title} = $locale->text('AR Transactions');
893
894   my $report = SL::ReportGenerator->new(\%myconfig, $form);
895
896   @columns =
897     qw(transdate id type invnumber ordnumber cusordnumber name netamount tax amount paid
898        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
899        marge_total marge_percent globalprojectnumber customernumber country ustid taxzone payment_terms charts customertype);
900
901   my @hidden_variables = map { "l_${_}" } @columns;
902   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto employee_id salesman_id business_id);
903
904   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
905
906   my %column_defs = (
907     'transdate'               => { 'text' => $locale->text('Date'), },
908     'id'                      => { 'text' => $locale->text('ID'), },
909     'type'                    => { 'text' => $locale->text('Type'), },
910     'invnumber'               => { 'text' => $locale->text('Invoice'), },
911     'ordnumber'               => { 'text' => $locale->text('Order'), },
912     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
913     'name'                    => { 'text' => $locale->text('Customer'), },
914     'netamount'               => { 'text' => $locale->text('Amount'), },
915     'tax'                     => { 'text' => $locale->text('Tax'), },
916     'amount'                  => { 'text' => $locale->text('Total'), },
917     'paid'                    => { 'text' => $locale->text('Paid'), },
918     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
919     'due'                     => { 'text' => $locale->text('Amount Due'), },
920     'duedate'                 => { 'text' => $locale->text('Due Date'), },
921     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
922     'notes'                   => { 'text' => $locale->text('Notes'), },
923     'salesman'                => { 'text' => $locale->text('Salesperson'), },
924     'employee'                => { 'text' => $locale->text('Employee'), },
925     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
926     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
927     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
928     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
929     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
930     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
931     'country'                 => { 'text' => $locale->text('Country'), },
932     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
933     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
934     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
935     'charts'                  => { 'text' => $locale->text('Buchungskonto'), },
936     'customertype'            => { 'text' => $locale->text('Customer type'), },
937   );
938
939   foreach my $name (qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
940     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
941     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
942   }
943
944   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
945
946   $form->{"l_type"} = "Y";
947   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
948
949   $report->set_columns(%column_defs);
950   $report->set_column_order(@columns);
951
952   $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
953
954   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
955
956   my @options;
957   if ($form->{customer}) {
958     push @options, $locale->text('Customer') . " : $form->{customer}";
959   }
960   if ($form->{department}) {
961     my ($department) = split /--/, $form->{department};
962     push @options, $locale->text('Department') . " : $department";
963   }
964   if ($form->{department_id}) {
965     push @options, $locale->text('Department Id') . " : $form->{department_id}";
966   }
967   if ($form->{invnumber}) {
968     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
969   }
970   if ($form->{ordnumber}) {
971     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
972   }
973   if ($form->{cusordnumber}) {
974     push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}";
975   }
976   if ($form->{notes}) {
977     push @options, $locale->text('Notes') . " : $form->{notes}";
978   }
979   if ($form->{transaction_description}) {
980     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
981   }
982   if ($form->{transdatefrom}) {
983     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
984   }
985   if ($form->{transdateto}) {
986     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
987   }
988   if ($form->{open}) {
989     push @options, $locale->text('Open');
990   }
991   if ($form->{employee_id}) {
992     my $employee = SL::DB::Employee->new(id => $form->{employee_id})->load;
993     push @options, $locale->text('Employee') . ' : ' . $employee->name;
994   }
995   if ($form->{salesman_id}) {
996     my $salesman = SL::DB::Employee->new(id => $form->{salesman_id})->load;
997     push @options, $locale->text('Salesman') . ' : ' . $salesman->name;
998   }
999   if ($form->{closed}) {
1000     push @options, $locale->text('Closed');
1001   }
1002
1003   $report->set_options('top_info_text'        => join("\n", @options),
1004                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
1005                        'output_format'        => 'HTML',
1006                        'title'                => $form->{title},
1007                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
1008     );
1009   $report->set_options_from_form();
1010   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1011
1012   # add sort and escape callback, this one we use for the add sub
1013   $form->{callback} = $href .= "&sort=$form->{sort}";
1014
1015   # escape callback for href
1016   $callback = $form->escape($href);
1017
1018   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
1019
1020   my %totals    = map { $_ => 0 } @subtotal_columns;
1021   my %subtotals = map { $_ => 0 } @subtotal_columns;
1022
1023   my $idx = 0;
1024
1025   foreach my $ar (@{ $form->{AR} }) {
1026     $ar->{tax} = $ar->{amount} - $ar->{netamount};
1027     $ar->{due} = $ar->{amount} - $ar->{paid};
1028
1029     map { $subtotals{$_} += $ar->{$_};
1030           $totals{$_}    += $ar->{$_} } @subtotal_columns;
1031
1032     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
1033     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
1034
1035     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
1036
1037     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
1038     my $has_storno = $ar->{storno} && !$ar->{storno_id};
1039
1040     $ar->{type} =
1041       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
1042       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
1043       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
1044       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
1045                           $locale->text("AR Transaction (abbreviation)");
1046
1047     my $row = { };
1048
1049     foreach my $column (@columns) {
1050       $row->{$column} = {
1051         'data'  => $ar->{$column},
1052         'align' => $column_alignment{$column},
1053       };
1054     }
1055
1056     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
1057       . "&id=" . E($ar->{id}) . "&callback=${callback}";
1058
1059     my $row_set = [ $row ];
1060
1061     if (($form->{l_subtotal} eq 'Y')
1062         && (($idx == (scalar @{ $form->{AR} } - 1))
1063             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
1064       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1065     }
1066
1067     $report->add_data($row_set);
1068
1069     $idx++;
1070   }
1071
1072   $report->add_separator();
1073   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1074
1075   $report->generate_with_headers();
1076
1077   $main::lxdebug->leave_sub();
1078 }
1079
1080 sub storno {
1081   $main::lxdebug->enter_sub();
1082
1083   $main::auth->assert('general_ledger');
1084
1085   my $form     = $main::form;
1086   my %myconfig = %main::myconfig;
1087   my $locale   = $main::locale;
1088
1089   # don't cancel cancelled transactions
1090   if (IS->has_storno(\%myconfig, $form, 'ar')) {
1091     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
1092     $form->error($locale->text("Transaction has already been cancelled!"));
1093   }
1094
1095   AR->storno($form, \%myconfig, $form->{id});
1096
1097   # saving the history
1098   if(!exists $form->{addition} && $form->{id} ne "") {
1099     $form->{snumbers} = "ordnumber_$form->{ordnumber}";
1100     $form->{addition} = "STORNO";
1101     $form->save_history;
1102   }
1103   # /saving the history
1104
1105   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1106
1107   $main::lxdebug->leave_sub();
1108 }
1109
1110 1;