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