361d43272585924d8cacc18c6cf35efe9eb7544a
[kivitendo-erp.git] / bin / mozilla / ap.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 Payables
31 #
32 #======================================================================
33
34 use POSIX qw(strftime);
35 use List::Util qw(sum);
36
37 use SL::AP;
38 use SL::FU;
39 use SL::IR;
40 use SL::IS;
41 use SL::PE;
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
51 1;
52
53 # end of main
54
55 # this is for our long dates
56 # $locale->text('January')
57 # $locale->text('February')
58 # $locale->text('March')
59 # $locale->text('April')
60 # $locale->text('May ')
61 # $locale->text('June')
62 # $locale->text('July')
63 # $locale->text('August')
64 # $locale->text('September')
65 # $locale->text('October')
66 # $locale->text('November')
67 # $locale->text('December')
68
69 # this is for our short month
70 # $locale->text('Jan')
71 # $locale->text('Feb')
72 # $locale->text('Mar')
73 # $locale->text('Apr')
74 # $locale->text('May')
75 # $locale->text('Jun')
76 # $locale->text('Jul')
77 # $locale->text('Aug')
78 # $locale->text('Sep')
79 # $locale->text('Oct')
80 # $locale->text('Nov')
81 # $locale->text('Dec')
82
83 sub add {
84   $main::lxdebug->enter_sub();
85
86   my $form     = $main::form;
87   my %myconfig = %main::myconfig;
88
89   $main::auth->assert('general_ledger');
90
91   return $main::lxdebug->leave_sub() if (load_draft_maybe());
92
93   $form->{title} = "Add";
94
95   $form->{callback} = "ap.pl?action=add&DONT_LOAD_DRAFT=1" unless $form->{callback};
96
97   AP->get_transdate(\%myconfig, $form);
98   $form->{initial_transdate} = $form->{transdate};
99   &create_links;
100   $form->{transdate} = $form->{initial_transdate};
101   &display_form;
102
103   $main::lxdebug->leave_sub();
104 }
105
106 sub edit {
107   $main::lxdebug->enter_sub();
108
109   my $form     = $main::form;
110
111   $main::auth->assert('general_ledger');
112
113   $form->{title} = "Edit";
114
115   &create_links;
116   &display_form;
117
118   $main::lxdebug->leave_sub();
119 }
120
121 sub display_form {
122   $main::lxdebug->enter_sub();
123
124   my $form     = $main::form;
125
126   $main::auth->assert('general_ledger');
127
128   &form_header;
129   &form_footer;
130
131   $main::lxdebug->leave_sub();
132 }
133
134 sub create_links {
135   $main::lxdebug->enter_sub();
136
137   my $form     = $main::form;
138   my %myconfig = %main::myconfig;
139
140   $main::auth->assert('general_ledger');
141
142   $form->create_links("AP", \%myconfig, "vendor");
143   my $taxincluded = $form->{taxincluded};
144   my $duedate     = $form->{duedate};
145
146   IR->get_vendor(\%myconfig, \%$form);
147   $form->{taxincluded} = $taxincluded;
148   $form->{duedate}   = $duedate if $duedate;
149   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
150   $form->{rowcount}  = 1;
151
152   # build the popup menus
153   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
154
155   # notes
156   $form->{notes} = $form->{intnotes} unless $form->{notes};
157
158   # currencies
159   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
160
161   map { $form->{selectcurrency} .= "<option>$_\n" } $form->get_all_currencies(\%myconfig);
162
163   # vendors
164   if (@{ $form->{all_vendor} || [] }) {
165     $form->{vendor} = qq|$form->{vendor}--$form->{vendor_id}|;
166     map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
167       (@{ $form->{all_vendor} });
168   }
169
170   # departments
171   if (@{ $form->{all_departments} || [] }) {
172     $form->{selectdepartment} = "<option>\n";
173     $form->{department}       = "$form->{department}--$form->{department_id}";
174
175     map {
176       $form->{selectdepartment} .=
177         "<option>$_->{description}--$_->{id}\n"
178     } (@{ $form->{all_departments} || [] });
179   }
180
181   $form->{employee} = "$form->{employee}--$form->{employee_id}";
182
183   AP->setup_form($form);
184
185   $form->{locked} =
186     ($form->datetonum($form->{transdate}, \%myconfig) <=
187      $form->datetonum($form->{closedto}, \%myconfig));
188
189   $main::lxdebug->leave_sub();
190 }
191
192 sub form_header {
193   $main::lxdebug->enter_sub();
194
195   my $form     = $main::form;
196   my %myconfig = %main::myconfig;
197   my $locale   = $main::locale;
198   my $cgi      = $main::cgi;
199
200   $main::auth->assert('general_ledger');
201
202   my $title = $form->{title};
203   $form->{title} = $locale->text("$title Accounts Payables Transaction");
204
205   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
206
207   # type=submit $locale->text('Add Accounts Payables Transaction')
208   # type=submit $locale->text('Edit Accounts Payables Transaction')
209
210   $form->{javascript} = qq|<script type="text/javascript">
211   <!--
212   function setTaxkey(accno, row) {
213     var taxkey = accno.options[accno.selectedIndex].value;
214     var reg = /--([0-9]*)/;
215     var found = reg.exec(taxkey);
216     var index = found[1];
217     index = parseInt(index);
218     var tax = 'taxchart_' + row;
219     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
220       var reg2 = new RegExp("^"+ index, "");
221       if (reg2.exec(document.getElementById(tax).options[i].value)) {
222         document.getElementById(tax).options[i].selected = true;
223         break;
224       }
225     }
226   };
227   //-->
228   </script>|;
229   # show history button
230   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
231   #/show hhistory button
232
233   # set option selected
234   foreach my $item (qw(vendor currency department)) {
235     $form->{"select$item"} =~ s/ selected//;
236     $form->{"select$item"} =~
237       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
238   }
239   my $readonly = ($form->{id}) ? "readonly" : "";
240
241   $form->{radier} = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
242   $readonly       = ($form->{radier}) ? "" : $readonly;
243
244   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
245   $form->{exchangerate} = $form->{forex} if $form->{forex};
246
247   # format amounts
248   $form->{exchangerate}    = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : '';
249   $form->{creditlimit}     = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
250   $form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
251
252   my $exchangerate = qq|
253 <input type=hidden name=forex value=$form->{forex}>
254 |;
255   if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
256     if ($form->{forex}) {
257       $exchangerate .= qq|
258             <tr>
259               <th align=right>| . $locale->text('Exchangerate') . qq|</th>
260               <td><input type=hidden name=exchangerate value=$form->{exchangerate}>$form->{exchangerate}</td>
261            </tr>
262 |;
263     } else {
264       $exchangerate .= qq|
265              <th align=right>| . $locale->text('Exchangerate') . qq|</th>
266              <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
267 |;
268     }
269   }
270
271   my $taxincluded = "";
272
273   $taxincluded = qq|
274             <tr>
275               <td align=right><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
276               <th align=left nowrap>|
277     . $locale->text('Tax Included') . qq|</th>
278             </tr>
279 |;
280
281   my $rows;
282   if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
283     $rows = 2;
284   }
285   my $notes =
286     qq|<textarea name=notes rows=$rows cols=50 wrap=soft $readonly>$form->{notes}</textarea>|;
287
288   my $department = qq|
289               <tr>
290                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
291                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
292                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
293                 </td>
294               </tr>
295 | if $form->{selectdepartment};
296
297   my $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
298
299   my $vendor =
300     ($form->{selectvendor})
301     ? qq|<select name="vendor" onchange="document.getElementById('update_button').click();">$form->{selectvendor} </select>|
302     : qq|<input name=vendor value="$form->{vendor}" size=35>|;
303
304   my @old_project_ids = ();
305   map({ push(@old_project_ids, $form->{"project_id_$_"})
306           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
307
308   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
309                                     "all"       => 0,
310                                     "old_id"    => \@old_project_ids },
311                    "charts"    => { "key"       => "ALL_CHARTS",
312                                     "transdate" => $form->{transdate} },
313                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
314                                     "module"    => "AP" },);
315
316   map({ $_->{link_split} = [ split(/:/, $_->{link}) ]; }
317       @{ $form->{ALL_CHARTS} });
318
319   my %project_labels = ();
320   my @project_values = ("");
321   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
322     push(@project_values, $item->{"id"});
323     $project_labels{$item->{"id"}} = $item->{"projectnumber"};
324   }
325
326   my (%AP_amount_labels, @AP_amount_values);
327   my (%AP_labels, @AP_values);
328   my (%AP_paid_labels, @AP_paid_values);
329   my %charts;
330   my $taxchart_init;
331
332   foreach my $item (@{ $form->{ALL_CHARTS} }) {
333     if (grep({ $_ eq "AP_amount" } @{ $item->{link_split} })) {
334       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
335       my $key = "$item->{accno}--$item->{tax_id}";
336       push(@AP_amount_values, $key);
337       $AP_amount_labels{$key} =
338         "$item->{accno}--$item->{description}";
339
340     } elsif (grep({ $_ eq "AP" } @{ $item->{link_split} })) {
341       push(@AP_values, $item->{accno});
342       $AP_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
343
344     } elsif (grep({ $_ eq "AP_paid" } @{ $item->{link_split} })) {
345       push(@AP_paid_values, $item->{accno});
346       $AP_paid_labels{$item->{accno}} =
347         "$item->{accno}--$item->{description}";
348     }
349
350     $charts{$item->{accno}} = $item;
351   }
352
353   my %taxchart_labels = ();
354   my @taxchart_values = ();
355   my %taxcharts = ();
356   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
357     my $key = "$item->{id}--$item->{rate}";
358     $taxchart_init = $key if ($taxchart_init eq $item->{id});
359     push(@taxchart_values, $key);
360     $taxchart_labels{$key} =
361       "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
362     $taxcharts{$item->{id}} = $item;
363   }
364
365   # use JavaScript Calendar or not
366   $form->{jsscript} = 1;
367   my $jsscript = "";
368   my ($button1, $button2);
369   if ($form->{jsscript}) {
370
371     # with JavaScript Calendar
372     $button1 = qq|
373        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\" $readonly></td>
374        <td><input type=button name=transdate id="trigger1" value=|
375       . $locale->text('button') . qq|></td>
376        |;
377     $button2 = qq|
378        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\" $readonly></td>
379        <td><input type=button name=duedate id="trigger2" value=|
380       . $locale->text('button') . qq|></td></td>
381      |;
382
383     #write Trigger
384     $jsscript =
385       Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
386                           "duedate", "BL", "trigger2");
387   } else {
388
389     # without JavaScript Calendar
390     $button1 =
391       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\" $readonly></td>|;
392     $button2 =
393       qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\" $readonly></td>|;
394   }
395
396   my $follow_up_vc         =  $form->{vendor};
397   $follow_up_vc            =~ s/--.*?//;
398   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
399
400   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
401   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_vc_details.js"></script>|;
402   $form->{javascript} .= qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
403
404   my $globalprojectnumber =
405     NTI($cgi->popup_menu('-name' => "globalproject_id",
406                          '-values' => \@project_values,
407                          '-labels' => \%project_labels,
408                          '-default' => $form->{"globalproject_id"} ));
409
410   $form->header;
411   my $onload = qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
412   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
413   print qq|
414 <body onLoad="$onload">
415
416 <form method=post action=$form->{script}>
417
418 <input type=hidden name=id value=$form->{id}>
419 <input type=hidden name=sort value=$form->{sort}>
420 <input type=hidden name=closedto value=$form->{closedto}>
421 <input type=hidden name=locked value=$form->{locked}>
422 <input type=hidden name=title value="$title">
423
424 <input type="hidden" name="follow_up_trans_id_1" value="| . H($form->{id}) . qq|">
425 <input type="hidden" name="follow_up_trans_type_1" value="ap_transaction">
426 <input type="hidden" name="follow_up_trans_info_1" value="| . H($follow_up_trans_info) . qq|">
427 <input type="hidden" name="follow_up_rowcount" value="1">
428
429 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
430
431 <table width=100%>
432   <tr class=listtop>
433     <th class=listtop>$form->{title}</th>
434   </tr>
435   <tr height="5"></tr>
436   <tr valign=top>
437     <td>
438       <table width=100%>
439         <tr valign=top>
440           <td>
441             <table>
442               <tr>
443                 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
444                 <td colspan=3>$vendor <input type="button" value="D" onclick="show_vc_details('vendor')"></td>
445                 <input type=hidden name=selectvendor value="| . H($form->{selectvendor}) . qq|">
446                 <input type=hidden name=oldvendor value="| . H($form->{oldvendor}) . qq|">
447                 <input type=hidden name=vendor_id value="| . H($form->{vendor_id}) . qq|">
448                 <input type=hidden name=terms value="| . H($form->{terms}) . qq|">
449               </tr>
450               <tr>
451                 <td></td>
452                 <td colspan=3>
453                   <table width=100%>
454                     <tr>
455                       <th align=left nowrap>| . $locale->text('Credit Limit') . qq|</th>
456                       <td>$form->{creditlimit}</td>
457                       <th align=left nowrap>| . $locale->text('Remaining') . qq|</th>
458                       <td class="plus$n">$form->{creditremaining}</td>
459                       <input type=hidden name=creditlimit value=$form->{creditlimit}>
460                       <input type=hidden name=creditremaining value=$form->{creditremaining}>
461                     </tr>
462                   </table>
463                 </td>
464               <tr>
465                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
466                 <td><select name=currency>$form->{selectcurrency}</select></td>
467                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
468                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
469                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
470                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
471                 $exchangerate
472               </tr>
473               $department
474               $taxincluded
475             </table>
476           </td>
477           <td align=right>
478             <table>
479               <tr>
480                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
481                 <td><input name=invnumber size=11 value="$form->{invnumber}" $readonly></td>
482               </tr>
483               <tr>
484                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
485                 <td><input name=ordnumber size=11 value="$form->{ordnumber}" $readonly></td>
486               </tr>
487               <tr>
488                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
489                 $button1
490               </tr>
491               <tr>
492                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
493                 $button2
494               </tr>
495               <tr>
496                 <th align=right nowrap>| . $locale->text('Project Number') . qq|</th>
497                 <td>$globalprojectnumber</td>
498               </tr>
499             </table>
500           </td>
501         </tr>
502       </table>
503     </td>
504   </tr>
505
506
507
508 $jsscript
509   <input type=hidden name=rowcount value=$form->{rowcount}>
510   <tr>
511     <td>
512       <table width=100%>
513         <tr class=listheading>
514           <th class=listheading style="width:15%">| . $locale->text('Account') . qq|</th>
515           <th class=listheading style="width:10%">| . $locale->text('Amount') . qq|</th>
516           <th class=listheading style="width:10%">| . $locale->text('Tax') . qq|</th>
517           <th class=listheading style="width:10%">| . $locale->text('Taxkey') . qq|</th>
518           <th class=listheading style="width:10%">| . $locale->text('Project') . qq|</th>
519         </tr>
520 |;
521
522   my $amount  = $locale->text('Amount');
523   my $project = $locale->text('Project');
524
525   for my $i (1 .. $form->{rowcount}) {
526
527     # format amounts
528     $form->{"amount_$i"} =
529       $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
530     $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
531
532     my $selected_accno_full;
533     my ($accno_row) = split(/--/, $form->{"AP_amount_$i"});
534     my $item = $charts{$accno_row};
535     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
536
537     my $selected_taxchart = $form->{"taxchart_$i"};
538     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
539     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AP_amount_$i"});
540
541     if ($previous_accno &&
542         ($previous_accno eq $selected_accno) &&
543         ($previous_tax_id ne $selected_tax_id)) {
544       my $item = $taxcharts{$selected_tax_id};
545       $selected_taxchart = "$item->{id}--$item->{rate}";
546     }
547
548     $selected_taxchart = $taxchart_init unless ($form->{"taxchart_$i"});
549
550     my $selectAP_amount =
551       NTI($cgi->popup_menu('-name' => "AP_amount_$i",
552                            '-id' => "AP_amount_$i",
553                            '-style' => 'width:400px',
554                            '-onChange' => "setTaxkey(this, $i)",
555                            '-values' => \@AP_amount_values,
556                            '-labels' => \%AP_amount_labels,
557                            '-default' => $selected_accno_full))
558       . $cgi->hidden('-name' => "previous_AP_amount_$i",
559                      '-default' => $selected_accno_full);
560
561     my $tax = qq|<td>| .
562       NTI($cgi->popup_menu('-name' => "taxchart_$i",
563                            '-id' => "taxchart_$i",
564                            '-style' => 'width:200px',
565                            '-values' => \@taxchart_values,
566                            '-labels' => \%taxchart_labels,
567                            '-default' => $selected_taxchart))
568       . qq|</td>|;
569
570     my $projectnumber =
571       NTI($cgi->popup_menu('-name' => "project_id_$i",
572                            '-values' => \@project_values,
573                            '-labels' => \%project_labels,
574                            '-default' => $form->{"project_id_$i"} ));
575
576     print qq|
577         <tr>
578           <td>$selectAP_amount</td>
579           <td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td>
580           <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
581           $tax
582           <td>$projectnumber</td>
583         </tr>
584 |;
585     $amount  = "";
586     $project = "";
587   }
588
589   my $taxlabel =
590     ($form->{taxincluded})
591     ? $locale->text('Tax Included')
592     : $locale->text('Tax');
593
594   $form->{invtotal_unformatted} = $form->{invtotal};
595   $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
596
597   my $APselected =
598     NTI($cgi->popup_menu('-name' => "APselected", '-id' => "APselected",
599                          '-style' => 'width:400px',
600                          '-values' => \@AP_values, '-labels' => \%AP_labels,
601                          '-default' => $form->{APselected}));
602   print qq|
603         <tr>
604           <td colspan=6>
605             <hr noshade>
606           </td>
607         </tr>
608         <tr>
609           <td>${APselected}</td>
610           <th align=left>$form->{invtotal}</th>
611
612           <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
613           <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
614
615           <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
616
617           <td colspan=4></td>
618
619
620         </tr>
621       </table>
622      </td>
623     </tr>
624     <tr>
625       <td>
626         <table width=100%>
627         <tr>
628           <th align=left width=1%>| . $locale->text('Notes') . qq|</th>
629           <td align=left>$notes</td>
630         </tr>
631       </table>
632     </td>
633   </tr>
634   <tr>
635     <td>
636       <table width=100%>
637         <tr class=listheading>
638           <th class=listheading colspan=7>| . $locale->text('Payments') . qq|</th>
639         </tr>
640 |;
641
642   my @column_index;
643   if ($form->{defaultcurrency} && ($form->{currency} eq $form->{defaultcurrency})) {
644     @column_index = qw(datepaid source memo paid AP_paid paid_project_id);
645   } else {
646     @column_index = qw(datepaid source memo paid exchangerate AP_paid paid_project_id);
647   }
648
649   my %column_data;
650   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
651   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
652   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
653   $column_data{AP_paid}      = "<th>" . $locale->text('Account') . "</th>";
654   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
655   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
656   $column_data{paid_project_id} = "<th>" . $locale->text('Project Number') . "</th>";
657
658   print "
659         <tr>
660 ";
661   map { print "$column_data{$_}\n" } @column_index;
662   print "
663         </tr>
664 ";
665
666   my @triggers  = ();
667   $form->{totalpaid} = 0;
668
669   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
670   for my $i (1 .. $form->{paidaccounts}) {
671     print "
672         <tr>
673 ";
674
675     my $selectAP_paid =
676       NTI($cgi->popup_menu('-name' => "AP_paid_$i",
677                            '-id' => "AP_paid_$i",
678                            '-values' => \@AP_paid_values,
679                            '-labels' => \%AP_paid_labels,
680                            '-default' => $form->{"AP_paid_$i"}));
681
682     $form->{totalpaid} += $form->{"paid_$i"};
683
684     # format amounts
685     if ($form->{"paid_$i"}) {
686       $form->{"paid_$i"} =
687         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
688     }
689     if ($form->{"exchangerate_$i"} == 0) {
690       $form->{"exchangerate_$i"} = "";
691     } else {
692       $form->{"exchangerate_$i"} =
693         $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
694     }
695
696     print qq|<input type=hidden name="acc_trans_id_$i" value=$form->{"acc_trans_id_$i"}>\n|;
697     print qq|<input type=hidden name="gldate_$i" value=$form->{"gldate_$i"}>\n|;
698     my $changeable = 1;
699     if ($::lx_office_conf{features}->{payments_changeable} == 0) {
700       # never
701       $changeable = ($form->{"acc_trans_id_$i"})? 0 : 1;
702     }
703     if ($::lx_office_conf{features}->{payments_changeable} == 2) {
704       # on the same day
705       $changeable = (($form->{"gldate_$i"} eq '') || $form->current_date(\%myconfig) eq $form->{"gldate_$i"});
706     }
707
708     $exchangerate = qq|&nbsp;|;
709     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
710       if ($form->{"forex_$i"}) {
711         $exchangerate =
712           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
713       } else {
714         if ($changeable) {
715           $exchangerate =
716             qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
717         } else {
718           $exchangerate =
719             qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
720         }
721       }
722     }
723
724     $exchangerate .= qq|
725 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
726 |;
727
728     my $datepaid;
729     if ($changeable) {
730       $datepaid = qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 title="($myconfig{'dateformat'})" value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
731          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="| . $locale->text('Details (one letter abbreviation)') . qq|"></td>|;
732     } else {
733       $datepaid = qq|<td align=center>$form->{"datepaid_$i"}</td>|.
734         qq|<input type=hidden name="datepaid_$i" value=$form->{"datepaid_$i"}>|;
735     }
736
737     my $paid;
738     if ($changeable) {
739       $paid = qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
740     } else {
741       $paid = qq|<td align=center>$form->{"paid_$i"}</td>|.
742         qq|<input type=hidden name="paid_$i" value=$form->{"paid_$i"}>|;
743     }
744
745     my $source;
746     if ($changeable) {
747       $source = qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
748     } else {
749       $source = qq|<td align=center>$form->{"source_$i"}</td>|.
750         qq|<input type=hidden name="source_$i" value=$form->{"source_$i"}>|;
751     }
752
753     my $memo;
754     if ($changeable) {
755       $memo = qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
756     } else {
757       $memo = qq|<td align=center>$form->{"memo_$i"}</td>|.
758         qq|<input type=hidden name="memo_$i" value=$form->{"memo_$i"}>|;
759     }
760
761     my $AP_paid;
762     if ($changeable) {
763       $AP_paid = qq|<td align=center>${selectAP_paid}</td>|;
764     } else {
765       $AP_paid = qq|<td align=center>$form->{"AP_paid_$i"}</td>|.
766         qq|<input type=hidden name="AP_paid_$i" value=$form->{"AP_paid_$i"}>|;
767     }
768
769     my $paid_project_id;
770     if ($changeable) {
771       $paid_project_id =
772       qq|<td>|
773       . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
774                              '-values' => \@project_values,
775                              '-labels' => \%project_labels,
776                              '-default' => $form->{"paid_project_id_$i"} ))
777       . qq|</td>|;
778     } else {
779       my $projectnumber = $project_labels{$form->{"paid_project_id_$i"}};
780       $paid_project_id = qq|<td>$projectnumber</td>|.
781         qq|<input type=hidden name="paid_project_id_$i" value=$form->{"paid_project_id_$i"}>|;
782     }
783
784     $column_data{"paid_$i"}            = $paid;
785     $column_data{"AP_paid_$i"}         = $AP_paid;
786     $column_data{"exchangerate_$i"}    = qq|<td align=center>$exchangerate</td>|;
787     $column_data{"datepaid_$i"}        = $datepaid;
788     $column_data{"source_$i"}          = $source;
789     $column_data{"memo_$i"}            = $memo;
790     $column_data{"paid_project_id_$i"} = $paid_project_id;
791
792     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
793
794     print "
795         </tr>
796 ";
797     if ($changeable) {
798       push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
799     }
800   }
801
802   my $paid_missing = $form->{invtotal_unformatted} - $form->{totalpaid};
803
804   print qq|
805         <tr>
806           <td></td>
807           <td></td>
808           <td align="center">| . $locale->text('Total') . qq|</td>
809           <td align="center">| . H($form->format_amount(\%myconfig, $form->{totalpaid}, 2)) . qq|</td>
810         </tr>
811         <tr>
812           <td></td>
813           <td></td>
814           <td align="center">| . $locale->text('Missing amount') . qq|</td>
815           <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
816         </tr>
817 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
818     qq|
819     <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
820
821       </table>
822     </td>
823   </tr>
824   <tr>
825     <td><hr size=3 noshade></td>
826   </tr>
827 </table>
828 |;
829
830   $main::lxdebug->leave_sub();
831 }
832
833 sub form_footer {
834   $main::lxdebug->enter_sub();
835
836   my $form     = $main::form;
837   my %myconfig = %main::myconfig;
838   my $locale   = $main::locale;
839   my $cgi      = $main::cgi;
840
841   $main::auth->assert('general_ledger');
842
843   my $follow_ups_block;
844   if ($form->{id}) {
845     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
846
847     if (@{ $follow_ups} ) {
848       my $num_due       = sum map { $_->{due} * 1 } @{ $follow_ups };
849       $follow_ups_block = qq|<p>| . $locale->text("There are #1 unfinished follow-ups of which #2 are due.", scalar @{ $follow_ups }, $num_due) . qq|</p>|;
850     }
851   }
852
853   print qq|
854
855 $follow_ups_block
856
857 <input name=callback type=hidden value="$form->{callback}">
858 <input name="gldate" type="hidden" value="| . Q($form->{gldate}) . qq|">
859 |
860 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
861 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
862 . qq|
863
864 <br>
865 |;
866
867   if (!$form->{id} && $form->{draft_id}) {
868     print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
869                              '-value' => 1, '-checked' => $form->{remove_draft},
870                              '-label' => '')) .
871           qq|&nbsp;<label for="remove_draft">| .
872           $locale->text("Remove draft when posting") .
873           qq|</label><br>|);
874   }
875
876   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
877   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
878
879   print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">|;
880
881   if ($form->{id}) {
882     if ($form->{radier}) {
883       print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|">
884                 <input class=submit type=submit name=action value="| . $locale->text('Delete') . qq|">
885 |;
886     }
887     # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
888     print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
889       if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ap') && !IS->is_storno(\%myconfig, $form, 'ap', $form->{id}) && (($form->{totalpaid} == 0) || ($form->{totalpaid} eq "")));
890
891     print qq| <input class=submit type=submit name=action value="| . $locale->text('Post Payment') . qq|">
892               <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|">
893               <input type="button" class="submit" onclick="follow_up_window()" value="| . $locale->text('Follow-Up') . qq|">
894 |;
895   } elsif (($transdate > $closedto) && !$form->{id}) {
896     print qq|
897       <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|"> | .
898       NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
899   }
900   # button for saving history
901   if($form->{id} ne "") {
902     print qq| <input type="button" class="submit" onclick="set_history_window($form->{id});" name="history" id="history" value="| . $locale->text('history') . qq|"> |;
903   }
904   # /button for saving history
905   # mark_as_paid button
906   if($form->{id} ne "") {
907     print qq| <input type="submit" class="submit" name="action" value="| . $locale->text('mark as paid') . qq|"> |;
908   }
909   # /mark_as_paid button
910   print "
911 </form>
912
913 </body>
914 </html>
915 ";
916
917   $main::lxdebug->leave_sub();
918 }
919
920 sub mark_as_paid {
921   $main::lxdebug->enter_sub();
922
923   my $form     = $main::form;
924   my %myconfig = %main::myconfig;
925
926   $main::auth->assert('general_ledger');
927
928   &mark_as_paid_common(\%myconfig,"ap");
929
930   $main::lxdebug->leave_sub();
931 }
932
933 sub update {
934   $main::lxdebug->enter_sub();
935
936   my $form     = $main::form;
937   my %myconfig = %main::myconfig;
938
939   $main::auth->assert('general_ledger');
940
941   my $display = shift;
942
943   $form->{invtotal} = 0;
944
945   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
946
947   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
948     qw(exchangerate creditlimit creditremaining);
949
950   my @flds  = qw(amount AP_amount projectnumber oldprojectnumber project_id taxchart);
951   my $count = 0;
952   my (@a, $j, $totaltax);
953   for my $i (1 .. $form->{rowcount}) {
954     $form->{"amount_$i"} =
955       $form->parse_amount(\%myconfig, $form->{"amount_$i"});
956     $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
957     if ($form->{"amount_$i"}) {
958       push @a, {};
959       $j = $#a;
960       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
961       if ($taxkey > 1) {
962         if ($form->{taxincluded}) {
963           $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
964         } else {
965           $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
966         }
967       } else {
968         $form->{"tax_$i"} = 0;
969       }
970       $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
971
972       $totaltax += $form->{"tax_$i"};
973       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
974       $count++;
975     }
976   }
977   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
978
979   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
980
981   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
982   $form->{exchangerate} = $form->{forex} if $form->{forex};
983
984   $form->{invdate} = $form->{transdate};
985   my %saved_variables = map +( $_ => $form->{$_} ), qw(AP AP_amount_1 taxchart_1);
986
987   my $vendor_changed = &check_name("vendor");
988
989   $form->{AP} = $saved_variables{AP};
990   if ($saved_variables{AP_amount_1} =~ m/.--./) {
991     map { $form->{$_} = $saved_variables{$_} } qw(AP_amount_1 taxchart_1);
992   } else {
993     delete $form->{taxchart_1};
994   }
995
996   $form->{rowcount} = $count + 1;
997
998   $form->{invtotal} =
999     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
1000
1001   my $totalpaid;
1002   for my $i (1 .. $form->{paidaccounts}) {
1003     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1004       map {
1005         $form->{"${_}_$i"} =
1006           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1007       } qw(paid exchangerate);
1008
1009       $totalpaid += $form->{"paid_$i"};
1010
1011       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
1012       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
1013     }
1014   }
1015
1016   $form->{creditremaining} -=
1017     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
1018      $form->{oldinvtotal});
1019   $form->{oldinvtotal}  = $form->{invtotal};
1020   $form->{oldtotalpaid} = $totalpaid;
1021
1022   # notes
1023   $form->{notes} = $form->{intnotes} if $vendor_changed;
1024
1025   &display_form;
1026
1027   $main::lxdebug->leave_sub();
1028 }
1029
1030
1031 sub post_payment {
1032   $main::lxdebug->enter_sub();
1033
1034   my $form     = $main::form;
1035   my %myconfig = %main::myconfig;
1036   my $locale   = $main::locale;
1037
1038   $main::auth->assert('general_ledger');
1039
1040   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1041
1042   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
1043
1044   for my $i (1 .. $form->{paidaccounts}) {
1045     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1046       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1047
1048       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1049
1050       $form->error($locale->text('Cannot post payment for a closed period!'))
1051         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1052
1053       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
1054         $form->{"exchangerate_$i"} = $form->{exchangerate}
1055           if ($invdate == $datepaid);
1056         $form->isblank("exchangerate_$i",
1057                        $locale->text('Exchangerate for payment missing!'));
1058       }
1059     }
1060   }
1061
1062   ($form->{AP})      = split /--/, $form->{AP};
1063   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
1064   $form->redirect($locale->text('Payment posted!'))
1065       if (AP->post_payment(\%myconfig, \%$form));
1066     $form->error($locale->text('Cannot post payment!'));
1067
1068
1069   $main::lxdebug->leave_sub();
1070 }
1071
1072
1073 sub post {
1074   $main::lxdebug->enter_sub();
1075
1076   my $form     = $main::form;
1077   my %myconfig = %main::myconfig;
1078   my $locale   = $main::locale;
1079
1080   $main::auth->assert('general_ledger');
1081
1082   my ($inline) = @_;
1083
1084   # check if there is a vendor, invoice and due date
1085   $form->isblank("transdate", $locale->text("Invoice Date missing!"));
1086   $form->isblank("duedate",   $locale->text("Due Date missing!"));
1087   $form->isblank("vendor",    $locale->text('Vendor missing!'));
1088
1089   if ($myconfig{mandatory_departments} && !$form->{department}) {
1090     $form->{saved_message} = $::locale->text('You have to specify a department.');
1091     update();
1092     exit;
1093   }
1094
1095   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1096   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1097   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
1098
1099   my $zero_amount_posting = 1;
1100   for my $i (1 .. $form->{rowcount}) {
1101     if ($form->parse_amount(\%myconfig, $form->{"amount_$i"})) {
1102       $zero_amount_posting = 0;
1103       last;
1104     }
1105   }
1106
1107   $form->error($locale->text('Zero amount posting!')) if $zero_amount_posting;
1108
1109   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1110     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
1111   delete($form->{AP});
1112
1113   for my $i (1 .. $form->{paidaccounts}) {
1114     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1115       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1116
1117       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1118
1119       $form->error($locale->text('Cannot post payment for a closed period!'))
1120         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1121
1122       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
1123         $form->{"exchangerate_$i"} = $form->{exchangerate}
1124           if ($transdate == $datepaid);
1125         $form->isblank("exchangerate_$i",
1126                        $locale->text('Exchangerate for payment missing!'));
1127       }
1128
1129     }
1130   }
1131
1132   # if old vendor ne vendor redo form
1133   my ($vendor) = split /--/, $form->{vendor};
1134   if ($form->{oldvendor} ne "$vendor--$form->{vendor_id}") {
1135     &update;
1136     ::end_of_request();
1137   }
1138   my ($debitaccno,    $debittaxkey)    = split /--/, $form->{AP_amountselected};
1139   my ($taxkey,        $NULL)           = split /--/, $form->{taxchartselected};
1140   my ($payablesaccno, $payablestaxkey) = split /--/, $form->{APselected};
1141 #  $form->{AP_amount_1}  = $debitaccno;
1142   $form->{AP_payables}  = $payablesaccno;
1143   $form->{taxkey}       = $taxkey;
1144   $form->{storno}       = 0;
1145
1146   $form->{id} = 0 if $form->{postasnew};
1147
1148   if (AP->post_transaction(\%myconfig, \%$form)) {
1149     # saving the history
1150     if(!exists $form->{addition} && $form->{id} ne "") {
1151       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1152       $form->{addition} = "POSTED";
1153       $form->save_history;
1154     }
1155     # /saving the history
1156     remove_draft() if $form->{remove_draft};
1157     # Dieser Text wird niemals ausgegeben: Probleme beim redirect?
1158     $form->redirect($locale->text('Transaction posted!')) unless $inline;
1159   } else {
1160     $form->error($locale->text('Cannot post transaction!'));
1161   }
1162
1163   $main::lxdebug->leave_sub();
1164 }
1165
1166 sub post_as_new {
1167   $main::lxdebug->enter_sub();
1168
1169   my $form     = $main::form;
1170   my %myconfig = %main::myconfig;
1171
1172   $main::auth->assert('general_ledger');
1173
1174   $form->{postasnew} = 1;
1175   # saving the history
1176   if(!exists $form->{addition} && $form->{id} ne "") {
1177     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1178     $form->{addition} = "POSTED AS NEW";
1179     $form->save_history;
1180   }
1181   # /saving the history
1182   &post;
1183
1184   $main::lxdebug->leave_sub();
1185 }
1186
1187 sub use_as_template {
1188   $main::lxdebug->enter_sub();
1189
1190   my $form     = $main::form;
1191   my %myconfig = %main::myconfig;
1192
1193   $main::auth->assert('general_ledger');
1194
1195   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);
1196   $form->{paidaccounts} = 1;
1197   $form->{rowcount}--;
1198   $form->{invdate} = $form->current_date(\%myconfig);
1199   &update;
1200
1201   $main::lxdebug->leave_sub();
1202 }
1203
1204 sub delete {
1205   $main::lxdebug->enter_sub();
1206
1207   my $form     = $main::form;
1208   my $locale   = $main::locale;
1209
1210   $main::auth->assert('general_ledger');
1211
1212   $form->{title} = $locale->text('Confirm!');
1213
1214   $form->header;
1215
1216   delete $form->{header};
1217
1218   print qq|
1219 <body>
1220
1221 <form method=post action=$form->{script}>
1222 |;
1223
1224   foreach my $key (keys %$form) {
1225     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1226     $form->{$key} =~ s/\"/&quot;/g;
1227     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1228   }
1229
1230   print qq|
1231 <h2 class=confirm>$form->{title}</h2>
1232
1233 <h4>|
1234     . $locale->text('Are you sure you want to delete Transaction')
1235     . qq| $form->{invnumber}</h4>
1236
1237 <input name=action class=submit type=submit value="|
1238     . $locale->text('Yes') . qq|">
1239 </form>
1240
1241 </body>
1242 </html>
1243 |;
1244
1245   $main::lxdebug->leave_sub();
1246 }
1247
1248 sub yes {
1249   $main::lxdebug->enter_sub();
1250
1251   my $form     = $main::form;
1252   my %myconfig = %main::myconfig;
1253   my $locale   = $main::locale;
1254
1255   $main::auth->assert('general_ledger');
1256
1257   if (AP->delete_transaction(\%myconfig, \%$form)) {
1258     # saving the history
1259     if(!exists $form->{addition}) {
1260       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1261       $form->{addition} = "DELETED";
1262       $form->save_history;
1263     }
1264     # /saving the history
1265     $form->redirect($locale->text('Transaction deleted!'));
1266   }
1267   $form->error($locale->text('Cannot delete transaction!'));
1268
1269   $main::lxdebug->leave_sub();
1270 }
1271
1272 sub search {
1273   $main::lxdebug->enter_sub();
1274
1275   $main::auth->assert('general_ledger | vendor_invoice_edit');
1276
1277   my $form     = $main::form;
1278   my %myconfig = %main::myconfig;
1279   my $locale   = $main::locale;
1280
1281   # setup customer selection
1282   $form->all_vc(\%myconfig, "vendor", "AP");
1283
1284   $form->{title}    = $locale->text('AP Transactions');
1285   $form->{fokus}    = "search.vendor";
1286   $form->{jsscript} = 1;
1287
1288   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS", "all" => 1 },
1289                    "departments"  => "ALL_DEPARTMENTS",
1290                    "vendors"      => "ALL_VC");
1291
1292   # constants and subs for template
1293   $form->{jsscript}  = 1;
1294   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
1295
1296   $form->header;
1297   print $form->parse_html_template('ap/search', { %myconfig });
1298
1299   $main::lxdebug->leave_sub();
1300 }
1301
1302 sub create_subtotal_row {
1303   $main::lxdebug->enter_sub();
1304
1305   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
1306
1307   my $form     = $main::form;
1308   my %myconfig = %main::myconfig;
1309
1310   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
1311
1312   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
1313
1314   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
1315
1316   map { $totals->{$_} = 0 } @{ $subtotal_columns };
1317
1318   $main::lxdebug->leave_sub();
1319
1320   return $row;
1321 }
1322
1323 sub ap_transactions {
1324   $main::lxdebug->enter_sub();
1325
1326   my $form     = $main::form;
1327   my %myconfig = %main::myconfig;
1328   my $locale   = $main::locale;
1329
1330   $main::auth->assert('general_ledger | vendor_invoice_edit');
1331
1332   ($form->{vendor}, $form->{vendor_id}) = split(/--/, $form->{vendor});
1333
1334   report_generator_set_default_sort('transdate', 1);
1335
1336   AP->ap_transactions(\%myconfig, \%$form);
1337
1338   $form->{title} = $locale->text('AP Transactions');
1339
1340   my $report = SL::ReportGenerator->new(\%myconfig, $form);
1341
1342   my @columns =
1343     qw(transdate id type invnumber ordnumber name netamount tax amount paid datepaid
1344        due duedate transaction_description notes employee globalprojectnumber
1345        vendornumber country ustid taxzone payment_terms charts);
1346
1347   my @hidden_variables = map { "l_${_}" } @columns;
1348   push @hidden_variables, "l_subtotal", qw(open closed vendor invnumber ordnumber transaction_description notes project_id transdatefrom transdateto department);
1349
1350   my $href = build_std_url('action=ap_transactions', grep { $form->{$_} } @hidden_variables);
1351
1352   my %column_defs = (
1353     'transdate'               => { 'text' => $locale->text('Date'), },
1354     'id'                      => { 'text' => $locale->text('ID'), },
1355     'type'                    => { 'text' => $locale->text('Type'), },
1356     'invnumber'               => { 'text' => $locale->text('Invoice'), },
1357     'ordnumber'               => { 'text' => $locale->text('Order'), },
1358     'name'                    => { 'text' => $locale->text('Vendor'), },
1359     'netamount'               => { 'text' => $locale->text('Amount'), },
1360     'tax'                     => { 'text' => $locale->text('Tax'), },
1361     'amount'                  => { 'text' => $locale->text('Total'), },
1362     'paid'                    => { 'text' => $locale->text('Paid'), },
1363     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
1364     'due'                     => { 'text' => $locale->text('Amount Due'), },
1365     'duedate'                 => { 'text' => $locale->text('Due Date'), },
1366     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1367     'notes'                   => { 'text' => $locale->text('Notes'), },
1368     'employee'                => { 'text' => $locale->text('Employee'), },
1369     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
1370     'vendornumber'            => { 'text' => $locale->text('Vendor Number'), },
1371     'country'                 => { 'text' => $locale->text('Country'), },
1372     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
1373     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
1374     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
1375     'charts'                  => { 'text' => $locale->text('Buchungskonto'), },
1376   );
1377
1378   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
1379     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
1380     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
1381   }
1382
1383   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
1384
1385   $form->{"l_type"} = "Y";
1386   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1387
1388   $report->set_columns(%column_defs);
1389   $report->set_column_order(@columns);
1390
1391   $report->set_export_options('ap_transactions', @hidden_variables, qw(sort sortdir));
1392
1393   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
1394
1395   my @options;
1396   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                         if ($form->{vendor});
1397   push @options, $locale->text('Department')              . " : " . (split /--/, $form->{department})[0] if ($form->{department});
1398   push @options, $locale->text('Invoice Number')          . " : $form->{invnumber}"                      if ($form->{invnumber});
1399   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                      if ($form->{ordnumber});
1400   push @options, $locale->text('Notes')                   . " : $form->{notes}"                          if ($form->{notes});
1401   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"        if ($form->{transaction_description});
1402   push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)      if ($form->{transdatefrom});
1403   push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)      if ($form->{transdateto});
1404   push @options, $locale->text('Open')                                                                   if ($form->{open});
1405   push @options, $locale->text('Closed')                                                                 if ($form->{closed});
1406
1407   $report->set_options('top_info_text'        => join("\n", @options),
1408                        'raw_bottom_info_text' => $form->parse_html_template('ap/ap_transactions_bottom'),
1409                        'output_format'        => 'HTML',
1410                        'title'                => $form->{title},
1411                        'attachment_basename'  => $locale->text('vendor_invoice_list') . strftime('_%Y%m%d', localtime time),
1412     );
1413   $report->set_options_from_form();
1414   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1415
1416   # add sort and escape callback, this one we use for the add sub
1417   $form->{callback} = $href .= "&sort=$form->{sort}";
1418
1419   # escape callback for href
1420   my $callback = $form->escape($href);
1421
1422   my @subtotal_columns = qw(netamount amount paid due);
1423
1424   my %totals    = map { $_ => 0 } @subtotal_columns;
1425   my %subtotals = map { $_ => 0 } @subtotal_columns;
1426
1427   my $idx = 0;
1428
1429   foreach my $ap (@{ $form->{AP} }) {
1430     $ap->{tax} = $ap->{amount} - $ap->{netamount};
1431     $ap->{due} = $ap->{amount} - $ap->{paid};
1432
1433     map { $subtotals{$_} += $ap->{$_};
1434           $totals{$_}    += $ap->{$_} } @subtotal_columns;
1435
1436     map { $ap->{$_} = $form->format_amount(\%myconfig, $ap->{$_}, 2) } qw(netamount tax amount paid due);
1437
1438     my $is_storno  = $ap->{storno} &&  $ap->{storno_id};
1439     my $has_storno = $ap->{storno} && !$ap->{storno_id};
1440
1441     if ($ap->{invoice}) {
1442       $ap->{type} =
1443           $has_storno       ? $locale->text("Invoice with Storno (abbreviation)")
1444         : $is_storno        ? $locale->text("Storno (one letter abbreviation)")
1445         :                     $locale->text("Invoice (one letter abbreviation)");
1446     } else {
1447       $ap->{type} =
1448           $has_storno       ? $locale->text("AP Transaction with Storno (abbreviation)")
1449         : $is_storno        ? $locale->text("AP Transaction Storno (one letter abbreviation)")
1450         :                     $locale->text("AP Transaction (abbreviation)");
1451     }
1452
1453     my $row = { };
1454
1455     foreach my $column (@columns) {
1456       $row->{$column} = {
1457         'data'  => $ap->{$column},
1458         'align' => $column_alignment{$column},
1459       };
1460     }
1461
1462     $row->{invnumber}->{link} = build_std_url("script=" . ($ap->{invoice} ? 'ir.pl' : 'ap.pl'), 'action=edit')
1463       . "&id=" . E($ap->{id}) . "&callback=${callback}";
1464
1465     my $row_set = [ $row ];
1466
1467     if (($form->{l_subtotal} eq 'Y')
1468         && (($idx == (scalar @{ $form->{AP} } - 1))
1469             || ($ap->{ $form->{sort} } ne $form->{AP}->[$idx + 1]->{ $form->{sort} }))) {
1470       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1471     }
1472
1473     $report->add_data($row_set);
1474
1475     $idx++;
1476   }
1477
1478   $report->add_separator();
1479   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1480
1481   $report->generate_with_headers();
1482
1483   $main::lxdebug->leave_sub();
1484 }
1485
1486 sub storno {
1487   $main::lxdebug->enter_sub();
1488
1489   my $form     = $main::form;
1490   my %myconfig = %main::myconfig;
1491   my $locale   = $main::locale;
1492
1493   $main::auth->assert('general_ledger');
1494
1495   if (IS->has_storno(\%myconfig, $form, 'ap')) {
1496     $form->{title} = $locale->text("Cancel Accounts Payables Transaction");
1497     $form->error($locale->text("Transaction has already been cancelled!"));
1498   }
1499
1500   AP->storno($form, \%myconfig, $form->{id});
1501
1502   # saving the history
1503   if(!exists $form->{addition} && $form->{id} ne "") {
1504     $form->{snumbers} = "ordnumber_$form->{ordnumber}";
1505     $form->{addition} = "STORNO";
1506     $form->save_history;
1507   }
1508   # /saving the history
1509
1510   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1511
1512   $main::lxdebug->leave_sub();
1513 }