Zahlungen bei Kreditorenbuchungen nur am selben Tag löschbar machen.
[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     $form->{"exchangerate_$i"} =
690       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
691     if ($form->{"exchangerate_$i"} == 0) {
692       $form->{"exchangerate_$i"} = "";
693     }
694
695     print qq|<input type=hidden name="gldate_$i" value=$form->{"gldate_$i"}>\n|;
696     my $changeable = (($form->{"gldate_$i"} eq '') || $form->current_date(\%myconfig) eq $form->{"gldate_$i"});
697     $form->{"payment_readonly_$i"} = ($changeable)? 0 : 1;
698     print qq|<input type=hidden name="payment_readonly_$i" value=$form->{"payment_readonly_$i"}>\n|;
699
700     $exchangerate = qq|&nbsp;|;
701     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
702       if ($form->{"forex_$i"}) {
703         $exchangerate =
704           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
705       } else {
706         if ($changeable) {
707           $exchangerate =
708             qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
709         } else {
710           $exchangerate = qq|$form->{"exchangerate_$i"}|.
711             qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
712         }
713       }
714     }
715
716     $exchangerate .= qq|
717 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
718 |;
719
720     my $datepaid;
721     if ($changeable) {
722       $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)\">
723          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="| . $locale->text('Details (one letter abbreviation)') . qq|"></td>|;
724     } else {
725       $datepaid = qq|<td align=center>$form->{"datepaid_$i"}</td>|.
726         qq|<input type=hidden name="datepaid_$i" value=$form->{"datepaid_$i"}>|;
727     }
728
729     my $paid;
730     if ($changeable) {
731       $paid = qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
732     } else {
733       $paid = qq|<td align=center>$form->{"paid_$i"}</td>|.
734         qq|<input type=hidden name="paid_$i" value=$form->{"paid_$i"}>|;
735     }
736
737     my $source;
738     if ($changeable) {
739       $source = qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
740     } else {
741       $source = qq|<td align=center>$form->{"source_$i"}</td>|.
742         qq|<input type=hidden name="source_$i" value=$form->{"source_$i"}>|;
743     }
744
745     my $memo;
746     if ($changeable) {
747       $memo = qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
748     } else {
749       $memo = qq|<td align=center>$form->{"memo_$i"}</td>|.
750         qq|<input type=hidden name="memo_$i" value=$form->{"memo_$i"}>|;
751     }
752
753     my $AP_paid;
754     if ($changeable) {
755       $AP_paid = qq|<td align=center>${selectAP_paid}</td>|;
756     } else {
757       $AP_paid = qq|<td align=center>$form->{"AP_paid_$i"}</td>|.
758         qq|<input type=hidden name="AP_paid_$i" value=$form->{"AP_paid_$i"}>|;
759     }
760
761     my $paid_project_id;
762     if ($changeable) {
763       $paid_project_id =
764       qq|<td>|
765       . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
766                              '-values' => \@project_values,
767                              '-labels' => \%project_labels,
768                              '-default' => $form->{"paid_project_id_$i"} ))
769       . qq|</td>|;
770     } else {
771       my $projectnumber = $project_labels{$form->{"paid_project_id_$i"}};
772       $paid_project_id = qq|<td>$projectnumber</td>|.
773         qq|<input type=hidden name="paid_project_id_$i" value=$form->{"paid_project_id_$i"}>|;
774     }
775
776     $column_data{"paid_$i"} = $paid;
777     $column_data{"AP_paid_$i"} = $AP_paid;
778     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
779     $column_data{"datepaid_$i"}  = $datepaid;
780     $column_data{"source_$i"} = $source;
781     $column_data{"memo_$i"} = $memo;
782     $column_data{"paid_project_id_$i"} = $paid_project_id;
783
784     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
785
786     print "
787         </tr>
788 ";
789     if ($changeable) {
790       push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
791     }
792   }
793
794   my $paid_missing = $form->{invtotal_unformatted} - $form->{totalpaid};
795
796   print qq|
797         <tr>
798           <td></td>
799           <td></td>
800           <td align="center">| . $locale->text('Total') . qq|</td>
801           <td align="center">| . H($form->format_amount(\%myconfig, $form->{totalpaid}, 2)) . qq|</td>
802         </tr>
803         <tr>
804           <td></td>
805           <td></td>
806           <td align="center">| . $locale->text('Missing amount') . qq|</td>
807           <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
808         </tr>
809 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
810     qq|
811     <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
812
813       </table>
814     </td>
815   </tr>
816   <tr>
817     <td><hr size=3 noshade></td>
818   </tr>
819 </table>
820 |;
821
822   $main::lxdebug->leave_sub();
823 }
824
825 sub form_footer {
826   $main::lxdebug->enter_sub();
827
828   my $form     = $main::form;
829   my %myconfig = %main::myconfig;
830   my $locale   = $main::locale;
831   my $cgi      = $main::cgi;
832
833   $main::auth->assert('general_ledger');
834
835   my $follow_ups_block;
836   if ($form->{id}) {
837     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
838
839     if (@{ $follow_ups} ) {
840       my $num_due       = sum map { $_->{due} * 1 } @{ $follow_ups };
841       $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>|;
842     }
843   }
844
845   print qq|
846
847 $follow_ups_block
848
849 <input name=callback type=hidden value="$form->{callback}">
850 <input name="gldate" type="hidden" value="| . Q($form->{gldate}) . qq|">
851 |
852 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
853 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
854 . qq|
855
856 <br>
857 |;
858
859   if (!$form->{id} && $form->{draft_id}) {
860     print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
861                              '-value' => 1, '-checked' => $form->{remove_draft},
862                              '-label' => '')) .
863           qq|&nbsp;<label for="remove_draft">| .
864           $locale->text("Remove draft when posting") .
865           qq|</label><br>|);
866   }
867
868   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
869   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
870
871   print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">|;
872
873   if ($form->{id}) {
874     if ($form->{radier}) {
875       print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|">
876                 <input class=submit type=submit name=action value="| . $locale->text('Delete') . qq|">
877 |;
878     }
879     # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
880     print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
881       if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ap') && !IS->is_storno(\%myconfig, $form, 'ap', $form->{id}) && (($form->{totalpaid} == 0) || ($form->{totalpaid} eq "")));
882
883     print qq| <input class=submit type=submit name=action value="| . $locale->text('Post Payment') . qq|">
884               <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|">
885               <input type="button" class="submit" onclick="follow_up_window()" value="| . $locale->text('Follow-Up') . qq|">
886 |;
887   } elsif (($transdate > $closedto) && !$form->{id}) {
888     print qq|
889       <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|"> | .
890       NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
891   }
892   # button for saving history
893   if($form->{id} ne "") {
894     print qq| <input type="button" class="submit" onclick="set_history_window($form->{id});" name="history" id="history" value="| . $locale->text('history') . qq|"> |;
895   }
896   # /button for saving history
897   # mark_as_paid button
898   if($form->{id} ne "") {
899     print qq| <input type="submit" class="submit" name="action" value="| . $locale->text('mark as paid') . qq|"> |;
900   }
901   # /mark_as_paid button
902   print "
903 </form>
904
905 </body>
906 </html>
907 ";
908
909   $main::lxdebug->leave_sub();
910 }
911
912 sub mark_as_paid {
913   $main::lxdebug->enter_sub();
914
915   my $form     = $main::form;
916   my %myconfig = %main::myconfig;
917
918   $main::auth->assert('general_ledger');
919
920   &mark_as_paid_common(\%myconfig,"ap");
921
922   $main::lxdebug->leave_sub();
923 }
924
925 sub update {
926   $main::lxdebug->enter_sub();
927
928   my $form     = $main::form;
929   my %myconfig = %main::myconfig;
930
931   $main::auth->assert('general_ledger');
932
933   my $display = shift;
934
935   $form->{invtotal} = 0;
936
937   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
938
939   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
940     qw(exchangerate creditlimit creditremaining);
941
942   my @flds  = qw(amount AP_amount projectnumber oldprojectnumber project_id taxchart);
943   my $count = 0;
944   my (@a, $j, $totaltax);
945   for my $i (1 .. $form->{rowcount}) {
946     $form->{"amount_$i"} =
947       $form->parse_amount(\%myconfig, $form->{"amount_$i"});
948     $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
949     if ($form->{"amount_$i"}) {
950       push @a, {};
951       $j = $#a;
952       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
953       if ($taxkey > 1) {
954         if ($form->{taxincluded}) {
955           $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
956         } else {
957           $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
958         }
959       } else {
960         $form->{"tax_$i"} = 0;
961       }
962       $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
963
964       $totaltax += $form->{"tax_$i"};
965       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
966       $count++;
967     }
968   }
969   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
970
971   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
972
973   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
974   $form->{exchangerate} = $form->{forex} if $form->{forex};
975
976   $form->{invdate} = $form->{transdate};
977   my %saved_variables = map +( $_ => $form->{$_} ), qw(AP AP_amount_1 taxchart_1);
978
979   my $vendor_changed = &check_name("vendor");
980
981   $form->{AP} = $saved_variables{AP};
982   if ($saved_variables{AP_amount_1} =~ m/.--./) {
983     map { $form->{$_} = $saved_variables{$_} } qw(AP_amount_1 taxchart_1);
984   } else {
985     delete $form->{taxchart_1};
986   }
987
988   $form->{rowcount} = $count + 1;
989
990   $form->{invtotal} =
991     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
992
993   my $totalpaid;
994   for my $i (1 .. $form->{paidaccounts}) {
995     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
996       map {
997         $form->{"${_}_$i"} =
998           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
999       } qw(paid exchangerate);
1000
1001       $totalpaid += $form->{"paid_$i"};
1002
1003       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
1004       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
1005     }
1006   }
1007
1008   $form->{creditremaining} -=
1009     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
1010      $form->{oldinvtotal});
1011   $form->{oldinvtotal}  = $form->{invtotal};
1012   $form->{oldtotalpaid} = $totalpaid;
1013
1014   # notes
1015   $form->{notes} = $form->{intnotes} if $vendor_changed;
1016
1017   &display_form;
1018
1019   $main::lxdebug->leave_sub();
1020 }
1021
1022
1023 sub post_payment {
1024   $main::lxdebug->enter_sub();
1025
1026   my $form     = $main::form;
1027   my %myconfig = %main::myconfig;
1028   my $locale   = $main::locale;
1029
1030   $main::auth->assert('general_ledger');
1031
1032   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1033
1034   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
1035
1036   for my $i (1 .. $form->{paidaccounts}) {
1037     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1038       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1039
1040       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1041
1042       $form->error($locale->text('Cannot post payment for a closed period!'))
1043         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1044
1045       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
1046         $form->{"exchangerate_$i"} = $form->{exchangerate}
1047           if ($invdate == $datepaid);
1048         $form->isblank("exchangerate_$i",
1049                        $locale->text('Exchangerate for payment missing!'));
1050       }
1051     }
1052   }
1053
1054   ($form->{AP})      = split /--/, $form->{AP};
1055   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
1056   $form->redirect($locale->text('Payment posted!'))
1057       if (AP->post_payment(\%myconfig, \%$form));
1058     $form->error($locale->text('Cannot post payment!'));
1059
1060
1061   $main::lxdebug->leave_sub();
1062 }
1063
1064
1065 sub post {
1066   $main::lxdebug->enter_sub();
1067
1068   my $form     = $main::form;
1069   my %myconfig = %main::myconfig;
1070   my $locale   = $main::locale;
1071
1072   $main::auth->assert('general_ledger');
1073
1074   # check if there is a vendor, invoice and due date
1075   $form->isblank("transdate", $locale->text("Invoice Date missing!"));
1076   $form->isblank("duedate",   $locale->text("Due Date missing!"));
1077   $form->isblank("vendor",    $locale->text('Vendor missing!'));
1078
1079   if ($myconfig{mandatory_departments} && !$form->{department}) {
1080     $form->{saved_message} = $::locale->text('You have to specify a department.');
1081     update();
1082     exit;
1083   }
1084
1085   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1086   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1087   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
1088
1089   my $zero_amount_posting = 1;
1090   for my $i (1 .. $form->{rowcount}) {
1091     if ($form->parse_amount(\%myconfig, $form->{"amount_$i"})) {
1092       $zero_amount_posting = 0;
1093       last;
1094     }
1095   }
1096
1097   $form->error($locale->text('Zero amount posting!')) if $zero_amount_posting;
1098
1099   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1100     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
1101   delete($form->{AP});
1102
1103   for my $i (1 .. $form->{paidaccounts}) {
1104     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1105       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1106
1107       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1108
1109       $form->error($locale->text('Cannot post payment for a closed period!'))
1110         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
1111
1112       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
1113         $form->{"exchangerate_$i"} = $form->{exchangerate}
1114           if ($transdate == $datepaid);
1115         $form->isblank("exchangerate_$i",
1116                        $locale->text('Exchangerate for payment missing!'));
1117       }
1118
1119     }
1120   }
1121
1122   # if old vendor ne vendor redo form
1123   my ($vendor) = split /--/, $form->{vendor};
1124   if ($form->{oldvendor} ne "$vendor--$form->{vendor_id}") {
1125     &update;
1126     ::end_of_request();
1127   }
1128   my ($debitaccno,    $debittaxkey)    = split /--/, $form->{AP_amountselected};
1129   my ($taxkey,        $NULL)           = split /--/, $form->{taxchartselected};
1130   my ($payablesaccno, $payablestaxkey) = split /--/, $form->{APselected};
1131 #  $form->{AP_amount_1}  = $debitaccno;
1132   $form->{AP_payables}  = $payablesaccno;
1133   $form->{taxkey}       = $taxkey;
1134   $form->{storno}       = 0;
1135
1136   $form->{id} = 0 if $form->{postasnew};
1137
1138   if (AP->post_transaction(\%myconfig, \%$form)) {
1139     # saving the history
1140     if(!exists $form->{addition} && $form->{id} ne "") {
1141       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1142       $form->{addition} = "POSTED";
1143       $form->save_history;
1144     }
1145     # /saving the history
1146     remove_draft() if $form->{remove_draft};
1147     # Dieser Text wird niemals ausgegeben: Probleme beim redirect?
1148     $form->redirect($locale->text('Transaction posted!'));
1149   } else {
1150     $form->error($locale->text('Cannot post transaction!'));
1151   }
1152
1153   $main::lxdebug->leave_sub();
1154 }
1155
1156 sub post_as_new {
1157   $main::lxdebug->enter_sub();
1158
1159   my $form     = $main::form;
1160   my %myconfig = %main::myconfig;
1161
1162   $main::auth->assert('general_ledger');
1163
1164   $form->{postasnew} = 1;
1165   # saving the history
1166   if(!exists $form->{addition} && $form->{id} ne "") {
1167     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1168     $form->{addition} = "POSTED AS NEW";
1169     $form->save_history;
1170   }
1171   # /saving the history
1172   &post;
1173
1174   $main::lxdebug->leave_sub();
1175 }
1176
1177 sub use_as_template {
1178   $main::lxdebug->enter_sub();
1179
1180   my $form     = $main::form;
1181   my %myconfig = %main::myconfig;
1182
1183   $main::auth->assert('general_ledger');
1184
1185   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 gldate_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
1186   $form->{paidaccounts} = 1;
1187   $form->{rowcount}--;
1188   $form->{invdate} = $form->current_date(\%myconfig);
1189   &update;
1190
1191   $main::lxdebug->leave_sub();
1192 }
1193
1194 sub delete {
1195   $main::lxdebug->enter_sub();
1196
1197   my $form     = $main::form;
1198   my $locale   = $main::locale;
1199
1200   $main::auth->assert('general_ledger');
1201
1202   $form->{title} = $locale->text('Confirm!');
1203
1204   $form->header;
1205
1206   delete $form->{header};
1207
1208   print qq|
1209 <body>
1210
1211 <form method=post action=$form->{script}>
1212 |;
1213
1214   foreach my $key (keys %$form) {
1215     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1216     $form->{$key} =~ s/\"/&quot;/g;
1217     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1218   }
1219
1220   print qq|
1221 <h2 class=confirm>$form->{title}</h2>
1222
1223 <h4>|
1224     . $locale->text('Are you sure you want to delete Transaction')
1225     . qq| $form->{invnumber}</h4>
1226
1227 <input name=action class=submit type=submit value="|
1228     . $locale->text('Yes') . qq|">
1229 </form>
1230
1231 </body>
1232 </html>
1233 |;
1234
1235   $main::lxdebug->leave_sub();
1236 }
1237
1238 sub yes {
1239   $main::lxdebug->enter_sub();
1240
1241   my $form     = $main::form;
1242   my %myconfig = %main::myconfig;
1243   my $locale   = $main::locale;
1244
1245   $main::auth->assert('general_ledger');
1246
1247   if (AP->delete_transaction(\%myconfig, \%$form)) {
1248     # saving the history
1249     if(!exists $form->{addition}) {
1250       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1251       $form->{addition} = "DELETED";
1252       $form->save_history;
1253     }
1254     # /saving the history
1255     $form->redirect($locale->text('Transaction deleted!'));
1256   }
1257   $form->error($locale->text('Cannot delete transaction!'));
1258
1259   $main::lxdebug->leave_sub();
1260 }
1261
1262 sub search {
1263   $main::lxdebug->enter_sub();
1264
1265   $main::auth->assert('general_ledger | vendor_invoice_edit');
1266
1267   my $form     = $main::form;
1268   my %myconfig = %main::myconfig;
1269   my $locale   = $main::locale;
1270
1271   # setup customer selection
1272   $form->all_vc(\%myconfig, "vendor", "AP");
1273
1274   $form->{title}    = $locale->text('AP Transactions');
1275   $form->{fokus}    = "search.vendor";
1276   $form->{jsscript} = 1;
1277
1278   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS", "all" => 1 },
1279                    "departments"  => "ALL_DEPARTMENTS",
1280                    "vendors"      => "ALL_VC");
1281
1282   # constants and subs for template
1283   $form->{jsscript}  = 1;
1284   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
1285
1286   $form->header;
1287   print $form->parse_html_template('ap/search', { %myconfig });
1288
1289   $main::lxdebug->leave_sub();
1290 }
1291
1292 sub create_subtotal_row {
1293   $main::lxdebug->enter_sub();
1294
1295   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
1296
1297   my $form     = $main::form;
1298   my %myconfig = %main::myconfig;
1299
1300   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
1301
1302   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
1303
1304   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
1305
1306   map { $totals->{$_} = 0 } @{ $subtotal_columns };
1307
1308   $main::lxdebug->leave_sub();
1309
1310   return $row;
1311 }
1312
1313 sub ap_transactions {
1314   $main::lxdebug->enter_sub();
1315
1316   my $form     = $main::form;
1317   my %myconfig = %main::myconfig;
1318   my $locale   = $main::locale;
1319
1320   $main::auth->assert('general_ledger | vendor_invoice_edit');
1321
1322   ($form->{vendor}, $form->{vendor_id}) = split(/--/, $form->{vendor});
1323
1324   report_generator_set_default_sort('transdate', 1);
1325
1326   AP->ap_transactions(\%myconfig, \%$form);
1327
1328   $form->{title} = $locale->text('AP Transactions');
1329
1330   my $report = SL::ReportGenerator->new(\%myconfig, $form);
1331
1332   my @columns =
1333     qw(transdate id type invnumber ordnumber name netamount tax amount paid datepaid
1334        due duedate transaction_description notes employee globalprojectnumber
1335        vendornumber country ustid taxzone payment_terms charts);
1336
1337   my @hidden_variables = map { "l_${_}" } @columns;
1338   push @hidden_variables, "l_subtotal", qw(open closed vendor invnumber ordnumber transaction_description notes project_id transdatefrom transdateto department);
1339
1340   my $href = build_std_url('action=ap_transactions', grep { $form->{$_} } @hidden_variables);
1341
1342   my %column_defs = (
1343     'transdate'               => { 'text' => $locale->text('Date'), },
1344     'id'                      => { 'text' => $locale->text('ID'), },
1345     'type'                    => { 'text' => $locale->text('Type'), },
1346     'invnumber'               => { 'text' => $locale->text('Invoice'), },
1347     'ordnumber'               => { 'text' => $locale->text('Order'), },
1348     'name'                    => { 'text' => $locale->text('Vendor'), },
1349     'netamount'               => { 'text' => $locale->text('Amount'), },
1350     'tax'                     => { 'text' => $locale->text('Tax'), },
1351     'amount'                  => { 'text' => $locale->text('Total'), },
1352     'paid'                    => { 'text' => $locale->text('Paid'), },
1353     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
1354     'due'                     => { 'text' => $locale->text('Amount Due'), },
1355     'duedate'                 => { 'text' => $locale->text('Due Date'), },
1356     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1357     'notes'                   => { 'text' => $locale->text('Notes'), },
1358     'employee'                => { 'text' => $locale->text('Employee'), },
1359     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
1360     'vendornumber'            => { 'text' => $locale->text('Vendor Number'), },
1361     'country'                 => { 'text' => $locale->text('Country'), },
1362     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
1363     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
1364     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
1365     'charts'                  => { 'text' => $locale->text('Buchungskonto'), },
1366   );
1367
1368   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
1369     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
1370     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
1371   }
1372
1373   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
1374
1375   $form->{"l_type"} = "Y";
1376   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1377
1378   $report->set_columns(%column_defs);
1379   $report->set_column_order(@columns);
1380
1381   $report->set_export_options('ap_transactions', @hidden_variables, qw(sort sortdir));
1382
1383   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
1384
1385   my @options;
1386   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                         if ($form->{vendor});
1387   push @options, $locale->text('Department')              . " : " . (split /--/, $form->{department})[0] if ($form->{department});
1388   push @options, $locale->text('Invoice Number')          . " : $form->{invnumber}"                      if ($form->{invnumber});
1389   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                      if ($form->{ordnumber});
1390   push @options, $locale->text('Notes')                   . " : $form->{notes}"                          if ($form->{notes});
1391   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"        if ($form->{transaction_description});
1392   push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)      if ($form->{transdatefrom});
1393   push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)      if ($form->{transdateto});
1394   push @options, $locale->text('Open')                                                                   if ($form->{open});
1395   push @options, $locale->text('Closed')                                                                 if ($form->{closed});
1396
1397   $report->set_options('top_info_text'        => join("\n", @options),
1398                        'raw_bottom_info_text' => $form->parse_html_template('ap/ap_transactions_bottom'),
1399                        'output_format'        => 'HTML',
1400                        'title'                => $form->{title},
1401                        'attachment_basename'  => $locale->text('vendor_invoice_list') . strftime('_%Y%m%d', localtime time),
1402     );
1403   $report->set_options_from_form();
1404   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1405
1406   # add sort and escape callback, this one we use for the add sub
1407   $form->{callback} = $href .= "&sort=$form->{sort}";
1408
1409   # escape callback for href
1410   my $callback = $form->escape($href);
1411
1412   my @subtotal_columns = qw(netamount amount paid due);
1413
1414   my %totals    = map { $_ => 0 } @subtotal_columns;
1415   my %subtotals = map { $_ => 0 } @subtotal_columns;
1416
1417   my $idx = 0;
1418
1419   foreach my $ap (@{ $form->{AP} }) {
1420     $ap->{tax} = $ap->{amount} - $ap->{netamount};
1421     $ap->{due} = $ap->{amount} - $ap->{paid};
1422
1423     map { $subtotals{$_} += $ap->{$_};
1424           $totals{$_}    += $ap->{$_} } @subtotal_columns;
1425
1426     map { $ap->{$_} = $form->format_amount(\%myconfig, $ap->{$_}, 2) } qw(netamount tax amount paid due);
1427
1428     my $is_storno  = $ap->{storno} &&  $ap->{storno_id};
1429     my $has_storno = $ap->{storno} && !$ap->{storno_id};
1430
1431     if ($ap->{invoice}) {
1432       $ap->{type} =
1433           $has_storno       ? $locale->text("Invoice with Storno (abbreviation)")
1434         : $is_storno        ? $locale->text("Storno (one letter abbreviation)")
1435         :                     $locale->text("Invoice (one letter abbreviation)");
1436     } else {
1437       $ap->{type} =
1438           $has_storno       ? $locale->text("AP Transaction with Storno (abbreviation)")
1439         : $is_storno        ? $locale->text("AP Transaction Storno (one letter abbreviation)")
1440         :                     $locale->text("AP Transaction (abbreviation)");
1441     }
1442
1443     my $row = { };
1444
1445     foreach my $column (@columns) {
1446       $row->{$column} = {
1447         'data'  => $ap->{$column},
1448         'align' => $column_alignment{$column},
1449       };
1450     }
1451
1452     $row->{invnumber}->{link} = build_std_url("script=" . ($ap->{invoice} ? 'ir.pl' : 'ap.pl'), 'action=edit')
1453       . "&id=" . E($ap->{id}) . "&callback=${callback}";
1454
1455     my $row_set = [ $row ];
1456
1457     if (($form->{l_subtotal} eq 'Y')
1458         && (($idx == (scalar @{ $form->{AP} } - 1))
1459             || ($ap->{ $form->{sort} } ne $form->{AP}->[$idx + 1]->{ $form->{sort} }))) {
1460       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1461     }
1462
1463     $report->add_data($row_set);
1464
1465     $idx++;
1466   }
1467
1468   $report->add_separator();
1469   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1470
1471   $report->generate_with_headers();
1472
1473   $main::lxdebug->leave_sub();
1474 }
1475
1476 sub storno {
1477   $main::lxdebug->enter_sub();
1478
1479   my $form     = $main::form;
1480   my %myconfig = %main::myconfig;
1481   my $locale   = $main::locale;
1482
1483   $main::auth->assert('general_ledger');
1484
1485   if (IS->has_storno(\%myconfig, $form, 'ap')) {
1486     $form->{title} = $locale->text("Cancel Accounts Payables Transaction");
1487     $form->error($locale->text("Transaction has already been cancelled!"));
1488   }
1489
1490   AP->storno($form, \%myconfig, $form->{id});
1491
1492   # saving the history
1493   if(!exists $form->{addition} && $form->{id} ne "") {
1494     $form->{snumbers} = "ordnumber_$form->{ordnumber}";
1495     $form->{addition} = "STORNO";
1496     $form->save_history;
1497   }
1498   # /saving the history
1499
1500   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1501
1502   $main::lxdebug->leave_sub();
1503 }