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