Drop-Down-Auswahlboxen für Ansprechpartner und Lieferadresse bei jedem Maskenaufbau...
[kivitendo-erp.git] / bin / mozilla / ir.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) 1998-2002
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 # Inventory received module
31 #
32 #======================================================================
33
34 use SL::IR;
35 use SL::PE;
36
37 require "$form->{path}/io.pl";
38 require "$form->{path}/arap.pl";
39
40 1;
41
42 # end of main
43
44 sub add {
45   $lxdebug->enter_sub();
46
47   $form->{title} = $locale->text('Add Vendor Invoice');
48
49   &invoice_links;
50   &prepare_invoice;
51   &display_form;
52
53   $lxdebug->leave_sub();
54 }
55
56 sub edit {
57   $lxdebug->enter_sub();
58
59   $form->{title} = $locale->text('Edit Vendor Invoice');
60
61   &invoice_links;
62   &prepare_invoice;
63   &display_form;
64
65   $lxdebug->leave_sub();
66 }
67
68 sub invoice_links {
69   $lxdebug->enter_sub();
70
71   # create links
72   $form->{webdav} = $webdav;
73
74   # set jscalendar
75   $form->{jscalendar} = $jscalendar;
76
77   $form->create_links("AP", \%myconfig, "vendor");
78
79   #quote all_vendor Bug 133
80   foreach $ref (@{ $form->{all_vendor} }) {
81     $ref->{name} = $form->quote($ref->{name});
82   }
83
84   if ($form->{all_vendor}) {
85     unless ($form->{vendor_id}) {
86       $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
87     }
88   }
89   if ($form->{payment_id}) {
90     $payment_id = $form->{payment_id};
91   }
92   if ($form->{language_id}) {
93     $language_id = $form->{language_id};
94   }
95   if ($form->{taxzone_id}) {
96     $taxzone_id = $form->{taxzone_id};
97   }
98
99   $cp_id = $form->{cp_id};
100   IR->get_vendor(\%myconfig, \%$form);
101   IR->retrieve_invoice(\%myconfig, \%$form);
102   $form->{cp_id} = $cp_id;
103  
104   if ($payment_id) {
105     $form->{payment_id} = $payment_id;
106   }
107   if ($language_id) {
108     $form->{language_id} = $language_id;
109   }
110   if ($taxzone_id) {
111     $form->{taxzone_id} = $taxzone_id;
112   }
113
114   # currencies
115   @curr = split(/:/, $form->{currencies});
116   chomp $curr[0];
117   $form->{defaultcurrency} = $curr[0];
118
119   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
120
121   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
122
123   # vendors
124   if (@{ $form->{all_vendor} }) {
125     $form->{vendor} = "$form->{vendor}--$form->{vendor_id}";
126     map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
127       (@{ $form->{all_vendor} });
128   }
129
130   # departments
131   if ($form->{all_departments}) {
132     $form->{selectdepartment} = "<option>\n";
133     $form->{department}       = "$form->{department}--$form->{department_id}";
134
135     map {
136       $form->{selectdepartment} .=
137         "<option>$_->{description}--$_->{id}\n"
138     } (@{ $form->{all_departments} });
139   }
140
141   # forex
142   $form->{forex} = $form->{exchangerate};
143   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
144
145   foreach $key (keys %{ $form->{AP_links} }) {
146
147     foreach $ref (@{ $form->{AP_links}{$key} }) {
148       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
149     }
150
151     if ($key eq "AP_paid") {
152       for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
153         $form->{"AP_paid_$i"} =
154           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
155
156         # reverse paid
157         $form->{"paid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{amount};
158         $form->{"datepaid_$i"} =
159           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
160         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
161           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
162         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
163         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
164
165         $form->{paidaccounts} = $i;
166       }
167     } else {
168       $form->{$key} =
169         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
170     }
171
172   }
173
174   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
175
176   $form->{AP} = $form->{AP_1} unless $form->{id};
177
178   $form->{locked} =
179     ($form->datetonum($form->{invdate}, \%myconfig) <=
180      $form->datetonum($form->{closedto}, \%myconfig));
181
182   $lxdebug->leave_sub();
183 }
184
185 sub prepare_invoice {
186   $lxdebug->enter_sub();
187
188   if ($form->{id}) {
189
190     map { $form->{$_} =~ s/\"/&quot;/g } qw(invnumber ordnumber quonumber);
191
192     my $i = 0;
193     foreach $ref (@{ $form->{invoice_details} }) {
194       $i++;
195       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
196
197       ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
198       $dec           = length $dec;
199       $decimalplaces = ($dec > 2) ? $dec : 2;
200
201       $form->{"sellprice_$i"} =
202         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
203                              $decimalplaces);
204
205       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
206       $dec_qty = length $dec_qty;
207
208       $form->{"qty_$i"} =
209         $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1), $dec_qty);
210
211       $form->{rowcount} = $i;
212     }
213   }
214
215   $lxdebug->leave_sub();
216 }
217
218 sub form_header {
219   $lxdebug->enter_sub();
220
221   # set option selected
222   foreach $item (qw(AP vendor currency department)) {
223     $form->{"select$item"} =~ s/ selected//;
224     $form->{"select$item"} =~
225       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
226   }
227
228   $form->{radier} =
229     ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
230
231   #quote selectvendor Bug 133
232   $form->{"selectvendor"} = $form->quote($form->{"selectvendor"});
233
234   $form->{exchangerate} =
235     $form->format_amount(\%myconfig, $form->{exchangerate});
236
237   $form->{creditlimit} =
238     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
239   $form->{creditremaining} =
240     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
241
242   $exchangerate = "";
243   if ($form->{currency} ne $form->{defaultcurrency}) {
244     if ($form->{forex}) {
245       $exchangerate .= qq|
246                 <th align=right nowrap>|
247         . $locale->text('Exchangerate') . qq|</th>
248                 <td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>
249 |;
250     } else {
251       $exchangerate .= qq|
252                 <th align=right nowrap>|
253         . $locale->text('Exchangerate') . qq|</th>
254                 <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
255 |;
256     }
257   }
258   $exchangerate .= qq|
259 <input type=hidden name=forex value=$form->{forex}>
260 |;
261
262   $form->get_lists("contacts" => "ALL_CONTACTS");
263
264   my (%labels, @values);
265   foreach my $item (@{ $form->{"ALL_CONTACTS"} }) {
266     push(@values, $item->{"cp_id"});
267     $labels{$item->{"cp_id"}} = $item->{"cp_name"} .
268       ($item->{"cp_abteilung"} ? " ($item->{cp_abteilung})" : "");
269   }
270   my $contact =
271     $cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
272                      '-labels' => \%labels, '-default' => $form->{"cp_id"});
273
274   if (@{ $form->{TAXZONE} }) {
275     $form->{selecttaxzone} = "";
276     foreach $item (@{ $form->{TAXZONE} }) {
277       if ($item->{id} == $form->{taxzone_id}) {
278         $form->{selecttaxzone} .=
279           "<option value=$item->{id} selected>" . H($item->{description}) .
280           "</option>";
281       } else {
282         $form->{selecttaxzone} .=
283           "<option value=$item->{id}>" . H($item->{description}) . "</option>";
284       }
285
286     }
287   } else {
288     $form->{selecttaxzone} =~ s/ selected//g;
289     if ($form->{taxzone_id} ne "") {
290       $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}/value=$form->{taxzone_id} selected/;
291     }
292   }
293
294   $taxzone = qq|
295               <tr>
296                 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
297                 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
298                 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
299               </tr>|;
300
301
302
303   $vendor =
304     ($form->{selectvendor})
305     ? qq|<select name=vendor>$form->{selectvendor}</select>\n<input type=hidden name="selectvendor" value="$form->{selectvendor}">|
306     : qq|<input name=vendor value="$form->{vendor}" size=35>|;
307
308   $department = qq|
309               <tr>
310               <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
311               <td colspan=3><select name=department>$form->{selectdepartment}</select>
312               <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
313               </td>
314             </tr>
315 | if $form->{selectdepartment};
316
317   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
318
319   # use JavaScript Calendar or not
320   $form->{jsscript} = $form->{jscalendar};
321   $jsscript = "";
322   if ($form->{jsscript}) {
323
324     # with JavaScript Calendar
325     $button1 = qq|
326        <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
327        <td><input type=button name=invdate id="trigger1" value=|
328       . $locale->text('button') . qq|></td>
329        |;
330     $button2 = qq|
331        <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
332        <td width="4"><input type=button name=duedate id="trigger2" value=|
333       . $locale->text('button') . qq|></td></td>
334      |;
335
336     #write Trigger
337     $jsscript =
338       Form->write_trigger(\%myconfig, "2", "invdate", "BL", "trigger1",
339                           "duedate", "BL", "trigger2");
340   } else {
341
342     # without JavaScript Calendar
343     $button1 =
344       qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
345     $button2 =
346       qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
347   }
348
349   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
350
351   $jsscript .=
352     $form->write_trigger(\%myconfig, 2,
353                          "orddate", "BL", "trigger_orddate",
354                          "quodate", "BL", "trigger_quodate");
355
356   $form->header;
357
358   print qq|
359 <body>
360
361 <form method=post action=$form->{script}>
362
363 <input type=hidden name=id value=$form->{id}>
364 <input type=hidden name=title value="$form->{title}">
365 <input type=hidden name=vc value="vendor">
366 <input type=hidden name=type value=$form->{type}>
367 <input type=hidden name=level value=$form->{level}>
368
369 <input type=hidden name=creditlimit value=$form->{creditlimit}>
370 <input type=hidden name=creditremaining value=$form->{creditremaining}>
371
372 <input type=hidden name=closedto value=$form->{closedto}>
373 <input type=hidden name=locked value=$form->{locked}>
374
375 <input type=hidden name=shipped value=$form->{shipped}>
376 <input type=hidden name=storno value=$form->{storno}>
377 <input type=hidden name=storno_id value=$form->{storno_id}>
378
379 <table width=100%>
380   <tr class=listtop>
381     <th class=listtop>$form->{title}</th>
382   </tr>
383   <tr height="5"></tr>
384   <tr>
385     <td>
386       <table width=100%>
387         <tr valign=top>
388           <td>
389             <table>
390               <tr>
391                 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
392                 <td colspan=3>$vendor</td>
393
394                 <th align=richt nowrap>|
395     . $locale->text('Contact Person') . qq|</th>
396                 <td colspan=3>$contact</td>
397
398                 <input type=hidden name=vendor_id value=$form->{vendor_id}>
399                 <input type=hidden name=oldvendor value="$form->{oldvendor}">
400
401               </tr>
402               <tr>
403                 <td></td>
404                 <td colspan=3>
405                   <table>
406                     <tr>
407                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
408                       <td>$form->{creditlimit}</td>
409                       <td width=20%></td>
410                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
411                       <td class="plus$n">$form->{creditremaining}</td>
412                     </tr>
413                   </table>
414                 </td>
415               <tr>
416                 <th align=right>| . $locale->text('Record in') . qq|</th>
417                 <td colspan=3><select name=AP>$form->{selectAP}</select></td>
418                 <input type=hidden name=selectAP value="$form->{selectAP}">
419               </tr>
420               $taxzone
421               $department
422               <tr>
423                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
424                 <td><select name=currency>$form->{selectcurrency}</select></td>
425                 $exchangerate
426               </tr>
427             </table>
428           </td>
429           <td align=right>
430             <table>
431               <tr>
432                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
433                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
434               </tr>
435               <tr>
436                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
437                 $button1
438               </tr>
439               <tr>
440                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
441                 $button2
442               </tr>
443               <tr>
444                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
445                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
446 <input type=hidden name=quonumber value="$form->{quonumber}">
447               </tr>
448         <tr>
449           <th align="right" nowrap>| . $locale->text('Order Date') . qq|</th>
450           <td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|"></td>
451           <td><input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
452         </tr>
453         <tr>
454           <th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th>
455           <td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|"></td>
456           <td><input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
457         </tr>
458             </table>
459           </td>
460         </tr>
461       </table>
462     </td>
463   </tr>
464
465 $jsscript
466
467 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
468 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
469 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
470 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
471 <input type=hidden name=webdav value=$webdav>
472
473 <input type=hidden name=taxpart value="$form->{taxpart}">
474 <input type=hidden name=taxservice value="$form->{taxservice}">
475
476 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
477 |;
478
479   foreach $item (split / /, $form->{taxaccounts}) {
480     print qq|
481 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
482 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
483 |;
484   }
485
486   $lxdebug->leave_sub();
487 }
488
489 sub form_footer {
490   $lxdebug->enter_sub();
491
492   $form->{invtotal} = $form->{invsubtotal};
493
494   if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
495     $rows = 2;
496   }
497   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
498     $introws = 2;
499   }
500   $rows = ($rows > $introws) ? $rows : $introws;
501   $notes =
502     qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
503   $intnotes =
504     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
505
506   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
507
508   $taxincluded = "";
509   if ($form->{taxaccounts}) {
510     $taxincluded = qq|
511                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
512       . $locale->text('Tax Included') . qq|</b>
513 |;
514   }
515
516   if (!$form->{taxincluded}) {
517
518     foreach $item (split / /, $form->{taxaccounts}) {
519       if ($form->{"${item}_base"}) {
520         $form->{invtotal} += $form->{"${item}_total"} =
521           $form->round_amount(
522                              $form->{"${item}_base"} * $form->{"${item}_rate"},
523                              2);
524         $form->{"${item}_total"} =
525           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
526
527         $tax .= qq|
528                 <tr>
529                   <th align=right>$form->{"${item}_description"}</th>
530                   <td align=right>$form->{"${item}_total"}</td>
531                 </tr>
532 |;
533       }
534     }
535
536     $form->{invsubtotal} =
537       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
538
539     $subtotal = qq|
540               <tr>
541                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
542                 <td align=right>$form->{invsubtotal}</td>
543               </tr>
544 |;
545
546   }
547
548   if ($form->{taxincluded}) {
549     foreach $item (split / /, $form->{taxaccounts}) {
550       if ($form->{"${item}_base"}) {
551         $form->{"${item}_total"} =
552           $form->round_amount(
553                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
554                               (1 + $form->{"${item}_rate"})
555                            ),
556                            2);
557         $form->{"${item}_base"} =
558           $form->round_amount($form->{"${item}_base"}, 2);
559         $form->{"${item}_netto"} =
560           $form->round_amount(
561                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
562                           2);
563         $form->{"${item}_netto"} =
564           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
565         $form->{"${item}_total"} =
566           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
567
568         $tax .= qq|
569               <tr>
570                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
571                 <td align=right>$form->{"${item}_total"}</td>
572               </tr>
573               <tr>
574                 <th align=right>Nettobetrag</th>
575                 <td align=right>$form->{"${item}_netto"}</td>
576               </tr>
577 |;
578       }
579     }
580
581   }
582
583   $form->{oldinvtotal} = $form->{invtotal};
584   $form->{invtotal}    =
585     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
586
587   print qq|
588   <tr>
589     <td colspan=$colspan>
590       <table cellspacing="0">
591         <tr valign=bottom>
592           <td>
593             <table>
594               <tr>
595                 <th align=left>| . $locale->text('Notes') . qq|</th>
596                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
597               </tr>
598               <tr valign=top>
599                 <td>$notes</td>
600                 <td>$intnotes</td>
601               </tr>
602             </table>
603           </td>
604           <td colspan=2 align=right width=100%>
605             $taxincluded
606             <br>
607             <table width=100%>
608               $subtotal
609               $tax
610               <tr>0
611                 <th align=right>| . $locale->text('Total') . qq|</th>
612                 <td align=right>$form->{invtotal}</td>
613               </tr>
614             </table>
615           </td>
616         </tr>
617       </table>
618     </td>
619   </tr>
620 |;
621   if ($webdav) {
622     $webdav_list = qq|
623   <tr>
624     <td><hr size=3 noshade></td>
625   </tr>
626   <tr>
627     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
628   </tr>
629     <table width=100%>
630       <td align=left width=30%><b>Dateiname</b></td>
631       <td align=left width=70%><b>Webdavlink</b></td>
632 |;
633     foreach $file (keys %{ $form->{WEBDAV} }) {
634       $webdav_list .= qq|
635       <tr>
636         <td align=left>$file</td>
637         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
638       </tr>
639 |;
640     }
641     $webdav_list .= qq|
642     </table>
643   </tr>
644 |;
645
646     print $webdav_list;
647   }
648   print qq|
649 <input type=hidden name=jscalendar value=$form->{jscalendar}>
650 |;
651   print qq|
652   <tr>
653     <td colspan=$colspan>
654       <table width=100%>
655         <tr>
656           <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
657         </tr>
658 |;
659
660   if ($form->{currency} eq $form->{defaultcurrency}) {
661     @column_index = qw(datepaid source memo paid AP_paid);
662   } else {
663     @column_index = qw(datepaid source memo paid exchangerate AP_paid);
664   }
665
666   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
667   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
668   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
669   $column_data{AP_paid}      = "<th>" . $locale->text('Account') . "</th>";
670   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
671   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
672
673   print qq|
674         <tr>
675 |;
676   map { print "$column_data{$_}\n" } @column_index;
677   print qq|
678         </tr>
679 |;
680
681   my @triggers = ();
682   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
683   for $i (1 .. $form->{paidaccounts}) {
684
685     print qq|
686         <tr>
687 |;
688
689     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
690     $form->{"selectAP_paid_$i"} =~
691       s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
692
693     # format amounts
694     if ($form->{"paid_$i"}) {
695       $form->{"paid_$i"} =
696         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
697     }
698     $form->{"exchangerate_$i"} =
699       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
700
701     $exchangerate = qq|&nbsp;|;
702     if ($form->{currency} ne $form->{defaultcurrency}) {
703       if ($form->{"forex_$i"}) {
704         $exchangerate =
705           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
706       } else {
707         $exchangerate =
708           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
709       }
710     }
711     $exchangerate .= qq|
712 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
713 |;
714
715     $column_data{"paid_$i"} =
716       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
717     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
718     $column_data{"AP_paid_$i"}      =
719       qq|<td align=center><select name="AP_paid_$i">$form->{"selectAP_paid_$i"}</select></td>|;
720     $column_data{"datepaid_$i"} =
721       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}>
722          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
723     $column_data{"source_$i"} =
724       qq|<td align=center><input name="source_$i" size=11 value=$form->{"source_$i"}></td>|;
725     $column_data{"memo_$i"} =
726       qq|<td align=center><input name="memo_$i" size=11 value=$form->{"memo_$i"}></td>|;
727
728     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
729
730     print qq|
731         </tr>
732 |;
733     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
734   }
735
736   print qq|
737             <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
738             <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
739             <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
740       </table>
741     </td>
742   </tr>
743   <tr>
744     <td><hr size=3 noshade></td>
745   </tr>
746 </table>
747 <br>
748 |;
749
750   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
751   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
752
753   if ($form->{id}) {
754     print qq|<input class=submit type=submit name=action value="|
755       . $locale->text('Post Payment') . qq|">
756 |;
757     print qq|<input class=submit type=submit name=action value="|
758       . $locale->text('Storno') . qq|">
759 | unless ($form->{storno});
760     if ($form->{radier}) {
761     print qq|
762     <input class=submit type=submit name=action value="|
763       . $locale->text('Delete') . qq|">
764 |;
765   }
766     print qq|<input class=submit type=submit name=action value="|
767       . $locale->text('Use As Template') . qq|">
768 |;
769
770   }
771
772   print qq|<input class=submit type=submit name=action id=update_button value="|
773     . $locale->text('Update') . qq|">|;
774
775   if (!$form->{id} && ($invdate > $closedto)) {
776     print qq| <input class=submit type=submit name=action value="|
777       . $locale->text('Post') . qq|">|;
778   }
779
780   print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
781     qq|
782
783 <input type=hidden name=rowcount value=$form->{rowcount}>
784
785 <input name=callback type=hidden value="$form->{callback}">
786
787 <input type=hidden name=path value=$form->{path}>
788 <input type=hidden name=login value=$form->{login}>
789 <input type=hidden name=password value=$form->{password}>
790
791 </form>
792
793 </body>
794 </html>
795 |;
796
797   $lxdebug->leave_sub();
798 }
799
800 sub update {
801   $lxdebug->enter_sub();
802
803   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
804     qw(exchangerate creditlimit creditremaining);
805
806   &check_name(vendor);
807
808   &check_project;
809
810   $form->{exchangerate} = $exchangerate
811     if (
812         $form->{forex} = (
813                       $exchangerate =
814                         $form->check_exchangerate(
815                         \%myconfig, $form->{currency}, $form->{invdate}, 'sell'
816                         )));
817
818   for $i (1 .. $form->{paidaccounts}) {
819     if ($form->{"paid_$i"}) {
820       map {
821         $form->{"${_}_$i"} =
822           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
823       } qw(paid exchangerate);
824
825       $form->{"exchangerate_$i"} = $exchangerate
826         if (
827             $form->{"forex_$i"} = (
828                 $exchangerate =
829                   $form->check_exchangerate(
830                   \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell'
831                   )));
832     }
833   }
834
835   $i            = $form->{rowcount};
836   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
837
838   if (   ($form->{"partnumber_$i"} eq "")
839       && ($form->{"description_$i"} eq "")
840       && ($form->{"partsgroup_$i"} eq "")) {
841     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
842     &check_form;
843
844   } else {
845
846     IR->retrieve_item(\%myconfig, \%$form);
847
848     my $rows = scalar @{ $form->{item_list} };
849
850     if ($rows) {
851       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
852
853       if ($rows > 1) {
854
855         &select_item;
856         exit;
857
858       } else {
859
860         # override sellprice if there is one entered
861         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
862
863         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
864           qw(partnumber description unit);
865
866         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
867           keys %{ $form->{item_list}[0] };
868
869         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
870
871         ($dec) = ($s =~ /\.(\d+)/);
872         $dec           = length $dec;
873         $decimalplaces = ($dec > 2) ? $dec : 2;
874
875         if ($sellprice) {
876           $form->{"sellprice_$i"} = $sellprice;
877         } else {
878
879           # if there is an exchange rate adjust sellprice
880           $form->{"sellprice_$i"} /= $exchangerate;
881         }
882
883         $amount =
884           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
885           (1 - $form->{"discount_$i"} / 100);
886         $form->{creditremaining} -= $amount;
887         $form->{"sellprice_$i"} =
888           $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
889                                $decimalplaces);
890         $form->{"qty_$i"} =
891           $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
892       }
893
894       &display_form;
895
896     } else {
897
898       # ok, so this is a new part
899       # ask if it is a part or service item
900
901       if (   $form->{"partsgroup_$i"}
902           && ($form->{"partsnumber_$i"} eq "")
903           && ($form->{"description_$i"} eq "")) {
904         $form->{rowcount}--;
905         $form->{"discount_$i"} = "";
906         &display_form;
907           } else {
908
909         $form->{"id_$i"}   = 0;
910         $form->{"unit_$i"} = $locale->text('ea');
911
912         &new_item;
913
914       }
915     }
916   }
917   $lxdebug->leave_sub();
918 }
919
920 sub storno {
921   $lxdebug->enter_sub();
922
923   if ($form->{storno}) {
924     $form->error($locale->text('Cannot storno storno invoice!'));
925   }
926
927   $form->{storno_id} = $form->{id};
928   $form->{storno} = 1;
929   $form->{id} = "";
930   $form->{invnumber} = "Storno zu " . $form->{invnumber};
931
932   &post();
933   $lxdebug->leave_sub();
934
935 }
936
937 sub use_as_template {
938   $lxdebug->enter_sub();
939
940   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);
941   $form->{paidaccounts} = 1;
942   $form->{rowcount}--;
943   $form->{invdate} = $form->current_date(\%myconfig);
944   &display_form;
945
946   $lxdebug->leave_sub();
947 }
948
949 sub post_payment {
950   $lxdebug->enter_sub();
951   for $i (1 .. $form->{paidaccounts}) {
952     if ($form->{"paid_$i"}) {
953       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
954
955       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
956
957       $form->error($locale->text('Cannot post payment for a closed period!'))
958         if ($datepaid <= $closedto);
959
960       if ($form->{currency} ne $form->{defaultcurrency}) {
961         $form->{"exchangerate_$i"} = $form->{exchangerate}
962           if ($invdate == $datepaid);
963         $form->isblank("exchangerate_$i",
964                        $locale->text('Exchangerate for payment missing!'));
965       }
966     }
967   }
968
969   ($form->{AP})      = split /--/, $form->{AP};
970   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
971   $form->redirect($locale->text(' Payment posted!'))
972       if (IR->post_payment(\%myconfig, \%$form));
973     $form->error($locale->text('Cannot post payment!'));
974
975
976   $lxdebug->leave_sub();
977 }
978
979 sub post {
980   $lxdebug->enter_sub();
981
982   $form->isblank("invdate", $locale->text('Invoice Date missing!'));
983   $form->isblank("vendor",  $locale->text('Vendor missing!'));
984
985   # if the vendor changed get new values
986   if (&check_name(vendor)) {
987     &update;
988     exit;
989   }
990
991   &validate_items;
992
993   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
994   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
995
996   $form->error($locale->text('Cannot post invoice for a closed period!'))
997     if ($invdate <= $closedto);
998
999   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1000     if ($form->{currency} ne $form->{defaultcurrency});
1001
1002   for $i (1 .. $form->{paidaccounts}) {
1003     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1004       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1005
1006       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1007
1008       $form->error($locale->text('Cannot post payment for a closed period!'))
1009         if ($datepaid <= $closedto);
1010
1011       if ($form->{currency} ne $form->{defaultcurrency}) {
1012         $form->{"exchangerate_$i"} = $form->{exchangerate}
1013           if ($invdate == $datepaid);
1014         $form->isblank("exchangerate_$i",
1015                        $locale->text('Exchangerate for payment missing!'));
1016       }
1017     }
1018   }
1019
1020   ($form->{AP})      = split /--/, $form->{AP};
1021   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
1022
1023   $form->{id} = 0 if $form->{postasnew};
1024
1025
1026   relink_accounts();
1027   $form->redirect(  $locale->text('Invoice')
1028                   . " $form->{invnumber} "
1029                   . $locale->text('posted!'))
1030     if (IR->post_invoice(\%myconfig, \%$form));
1031   $form->error($locale->text('Cannot post invoice!'));
1032
1033   $lxdebug->leave_sub();
1034 }
1035
1036 sub delete {
1037   $lxdebug->enter_sub();
1038
1039   $form->header;
1040
1041   print qq|
1042 <body>
1043
1044 <form method=post action=$form->{script}>
1045 |;
1046
1047   # delete action variable
1048   map { delete $form->{$_} } qw(action header);
1049
1050   foreach $key (keys %$form) {
1051     $form->{$key} =~ s/\"/&quot;/g;
1052     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1053   }
1054
1055   print qq|
1056 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1057
1058 <h4>|
1059     . $locale->text('Are you sure you want to delete Invoice Number')
1060     . qq| $form->{invnumber}</h4>
1061 <p>
1062 <input name=action class=submit type=submit value="|
1063     . $locale->text('Yes') . qq|">
1064 </form>
1065 |;
1066
1067   $lxdebug->leave_sub();
1068 }
1069
1070 sub yes {
1071   $lxdebug->enter_sub();
1072
1073   $form->redirect($locale->text('Invoice deleted!'))
1074     if (IR->delete_invoice(\%myconfig, \%$form));
1075   $form->error($locale->text('Cannot delete invoice!'));
1076
1077   $lxdebug->leave_sub();
1078 }