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