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