1765cf3fc6db59f32e12f8cfc0c2a6fc72849036
[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" onclick="document.getElementById('update_button').click();">| .
337     qq|$form->{selectvendor}</select>\n<input type=hidden name="selectvendor" value="| .
338     Q($form->{selectvendor}) . qq|">|
339     : qq|<input name=vendor value="$form->{vendor}" size=35>|;
340
341   $department = qq|
342               <tr>
343               <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
344               <td colspan=3><select name=department>$form->{selectdepartment}</select>
345               <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
346               </td>
347             </tr>
348 | if $form->{selectdepartment};
349
350   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
351
352   # use JavaScript Calendar or not
353   $form->{jsscript} = $form->{jscalendar};
354   $jsscript = "";
355   if ($form->{jsscript}) {
356
357     # with JavaScript Calendar
358     $button1 = qq|
359        <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
360        <td><input type=button name=invdate id="trigger1" value=|
361       . $locale->text('button') . qq|></td>
362        |;
363     $button2 = qq|
364        <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
365        <td width="4"><input type=button name=duedate id="trigger2" value=|
366       . $locale->text('button') . qq|></td></td>
367      |;
368
369     #write Trigger
370     $jsscript =
371       Form->write_trigger(\%myconfig, "2", "invdate", "BL", "trigger1",
372                           "duedate", "BL", "trigger2");
373   } else {
374
375     # without JavaScript Calendar
376     $button1 =
377       qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
378     $button2 =
379       qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
380   }
381
382   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
383
384   $jsscript .=
385     $form->write_trigger(\%myconfig, 2,
386                          "orddate", "BL", "trigger_orddate",
387                          "quodate", "BL", "trigger_quodate");
388
389   $form->header;
390
391   print qq|
392 <body>
393
394 <form method=post action=$form->{script}>
395
396 <input type=hidden name=id value=$form->{id}>
397 <input type=hidden name=title value="$form->{title}">
398 <input type=hidden name=vc value="vendor">
399 <input type=hidden name=type value=$form->{type}>
400 <input type=hidden name=level value=$form->{level}>
401
402 <input type=hidden name=creditlimit value=$form->{creditlimit}>
403 <input type=hidden name=creditremaining value=$form->{creditremaining}>
404
405 <input type=hidden name=closedto value=$form->{closedto}>
406 <input type=hidden name=locked value=$form->{locked}>
407
408 <input type=hidden name=shipped value=$form->{shipped}>
409 <input type=hidden name=storno value=$form->{storno}>
410 <input type=hidden name=storno_id value=$form->{storno_id}>
411
412 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
413
414 <table width=100%>
415   <tr class=listtop>
416     <th class=listtop>$form->{title}</th>
417   </tr>
418   <tr height="5"></tr>
419   <tr>
420     <td>
421       <table width=100%>
422         <tr valign=top>
423           <td>
424             <table>
425               <tr>
426                 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
427                 <td colspan=3>$vendor</td>
428
429                 <th align=richt nowrap>|
430     . $locale->text('Contact Person') . qq|</th>
431                 <td colspan=3>$contact</td>
432
433                 <input type=hidden name=vendor_id value=$form->{vendor_id}>
434                 <input type=hidden name=oldvendor value="$form->{oldvendor}">
435
436               </tr>
437               <tr>
438                 <td></td>
439                 <td colspan=3>
440                   <table>
441                     <tr>
442                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
443                       <td>$form->{creditlimit}</td>
444                       <td width=20%></td>
445                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
446                       <td class="plus$n">$form->{creditremaining}</td>
447                     </tr>
448                   </table>
449                 </td>
450               <tr>
451                 <th align=right>| . $locale->text('Record in') . qq|</th>
452                 <td colspan=3><select name=AP>$form->{selectAP}</select></td>
453                 <input type=hidden name=selectAP value="$form->{selectAP}">
454               </tr>
455               $taxzone
456               $department
457               <tr>
458                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
459                 <td><select name=currency>$form->{selectcurrency}</select></td>
460                 $exchangerate
461               </tr>
462             </table>
463           </td>
464           <td align=right>
465             <table>
466               <tr>
467                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
468                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
469               </tr>
470               <tr>
471                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
472                 $button1
473               </tr>
474               <tr>
475                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
476                 $button2
477               </tr>
478               <tr>
479                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
480                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
481 <input type=hidden name=quonumber value="$form->{quonumber}">
482               </tr>
483         <tr>
484           <th align="right" nowrap>| . $locale->text('Order Date') . qq|</th>
485           <td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|"></td>
486           <td><input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
487         </tr>
488         <tr>
489           <th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th>
490           <td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|"></td>
491           <td><input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
492         </tr>
493               <tr>
494           <th align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
495           <td>$globalprojectnumber</td>
496               </tr>
497      </table>
498           </td>
499         </tr>
500       </table>
501     </td>
502   </tr>
503
504 $jsscript
505
506 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
507 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
508 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
509 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
510 <input type=hidden name=webdav value=$webdav>
511
512 <input type=hidden name=taxpart value="$form->{taxpart}">
513 <input type=hidden name=taxservice value="$form->{taxservice}">
514
515 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
516 |;
517
518   foreach $item (split / /, $form->{taxaccounts}) {
519     print qq|
520 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
521 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
522 |;
523   }
524
525   $lxdebug->leave_sub();
526 }
527
528 sub form_footer {
529   $lxdebug->enter_sub();
530
531   $form->{invtotal} = $form->{invsubtotal};
532
533   if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
534     $rows = 2;
535   }
536   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
537     $introws = 2;
538   }
539   $rows = ($rows > $introws) ? $rows : $introws;
540   $notes =
541     qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
542   $intnotes =
543     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
544
545   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
546
547   $taxincluded = "";
548   if ($form->{taxaccounts}) {
549     $taxincluded = qq|
550                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
551       . $locale->text('Tax Included') . qq|</b>
552 |;
553   }
554
555   if (!$form->{taxincluded}) {
556
557     foreach $item (split / /, $form->{taxaccounts}) {
558       if ($form->{"${item}_base"}) {
559         $form->{invtotal} += $form->{"${item}_total"} =
560           $form->round_amount(
561                              $form->{"${item}_base"} * $form->{"${item}_rate"},
562                              2);
563         $form->{"${item}_total"} =
564           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
565
566         $tax .= qq|
567                 <tr>
568                   <th align=right>$form->{"${item}_description"}&nbsp;|
569                     . $form->{"${item}_rate"} * 100 .qq|%</th>
570                   <td align=right>$form->{"${item}_total"}</td>
571                 </tr>
572 |;
573       }
574     }
575
576     $form->{invsubtotal} =
577       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
578
579     $subtotal = qq|
580               <tr>
581                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
582                 <td align=right>$form->{invsubtotal}</td>
583               </tr>
584 |;
585
586   }
587
588   if ($form->{taxincluded}) {
589     foreach $item (split / /, $form->{taxaccounts}) {
590       if ($form->{"${item}_base"}) {
591         $form->{"${item}_total"} =
592           $form->round_amount(
593                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
594                               (1 + $form->{"${item}_rate"})
595                            ),
596                            2);
597         $form->{"${item}_base"} =
598           $form->round_amount($form->{"${item}_base"}, 2);
599         $form->{"${item}_netto"} =
600           $form->round_amount(
601                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
602                           2);
603         $form->{"${item}_netto"} =
604           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
605         $form->{"${item}_total"} =
606           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
607
608         $tax .= qq|
609               <tr>
610                 <th align=right>Enthaltene $form->{"${item}_description"}&nbsp;|
611                                     . $form->{"${item}_rate"} * 100 .qq|%</th>
612                 <td align=right>$form->{"${item}_total"}</td>
613               </tr>
614               <tr>
615                 <th align=right>Nettobetrag</th>
616                 <td align=right>$form->{"${item}_netto"}</td>
617               </tr>
618 |;
619       }
620     }
621
622   }
623
624   $form->{oldinvtotal} = $form->{invtotal};
625   $form->{invtotal}    =
626     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
627
628   print qq|
629   <tr>
630     <td colspan=$colspan>
631       <table cellspacing="0">
632         <tr valign=bottom>
633           <td>
634             <table>
635               <tr>
636                 <th align=left>| . $locale->text('Notes') . qq|</th>
637                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
638               </tr>
639               <tr valign=top>
640                 <td>$notes</td>
641                 <td>$intnotes</td>
642               </tr>
643             </table>
644           </td>
645           <td colspan=2 align=right width=100%>
646             $taxincluded
647             <br>
648             <table width=100%>
649               $subtotal
650               $tax
651               <tr>0
652                 <th align=right>| . $locale->text('Total') . qq|</th>
653                 <td align=right>$form->{invtotal}</td>
654               </tr>
655             </table>
656           </td>
657         </tr>
658       </table>
659     </td>
660   </tr>
661 |;
662   if ($webdav) {
663     $webdav_list = qq|
664   <tr>
665     <td><hr size=3 noshade></td>
666   </tr>
667   <tr>
668     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
669   </tr>
670     <table width=100%>
671       <td align=left width=30%><b>Dateiname</b></td>
672       <td align=left width=70%><b>Webdavlink</b></td>
673 |;
674     foreach $file (keys %{ $form->{WEBDAV} }) {
675       $webdav_list .= qq|
676       <tr>
677         <td align=left>$file</td>
678         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
679       </tr>
680 |;
681     }
682     $webdav_list .= qq|
683     </table>
684   </tr>
685 |;
686
687     print $webdav_list;
688   }
689   print qq|
690 <input type=hidden name=jscalendar value=$form->{jscalendar}>
691 |;
692   print qq|
693   <tr>
694     <td colspan=$colspan>
695       <table width=100%>
696         <tr>
697           <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
698         </tr>
699 |;
700
701   if ($form->{currency} eq $form->{defaultcurrency}) {
702     @column_index = qw(datepaid source memo paid AP_paid);
703   } else {
704     @column_index = qw(datepaid source memo paid exchangerate AP_paid);
705   }
706
707   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
708   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
709   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
710   $column_data{AP_paid}      = "<th>" . $locale->text('Account') . "</th>";
711   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
712   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
713
714   print qq|
715         <tr>
716 |;
717   map { print "$column_data{$_}\n" } @column_index;
718   print qq|
719         </tr>
720 |;
721
722   my @triggers = ();
723   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
724   for $i (1 .. $form->{paidaccounts}) {
725
726     print qq|
727         <tr>
728 |;
729
730     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
731     $form->{"selectAP_paid_$i"} =~
732       s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
733
734     # format amounts
735     if ($form->{"paid_$i"}) {
736       $form->{"paid_$i"} =
737         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
738     }
739     $form->{"exchangerate_$i"} =
740       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
741
742     $exchangerate = qq|&nbsp;|;
743     if ($form->{currency} ne $form->{defaultcurrency}) {
744       if ($form->{"forex_$i"}) {
745         $exchangerate =
746           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
747       } else {
748         $exchangerate =
749           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
750       }
751     }
752     $exchangerate .= qq|
753 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
754 |;
755
756     $column_data{"paid_$i"} =
757       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
758     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
759     $column_data{"AP_paid_$i"}      =
760       qq|<td align=center><select name="AP_paid_$i">$form->{"selectAP_paid_$i"}</select></td>|;
761     $column_data{"datepaid_$i"} =
762       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}>
763          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
764     $column_data{"source_$i"} =
765       qq|<td align=center><input name="source_$i" size=11 value=$form->{"source_$i"}></td>|;
766     $column_data{"memo_$i"} =
767       qq|<td align=center><input name="memo_$i" size=11 value=$form->{"memo_$i"}></td>|;
768
769     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
770
771     print qq|
772         </tr>
773 |;
774     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
775   }
776
777   print qq|
778             <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
779             <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
780             <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
781       </table>
782     </td>
783   </tr>
784   <tr>
785     <td><hr size=3 noshade></td>
786   </tr>
787 </table>
788 <br>
789 |;
790
791   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
792   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
793
794   if ($form->{id}) {
795     my $show_storno = !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ap");
796
797     print qq|<input class=submit type=submit name=action value="|
798       . $locale->text('Post Payment') . qq|">
799 |;
800     print qq|<input class=submit type=submit name=action value="|
801       . $locale->text('Storno') . qq|">
802 | if ($show_storno);
803     if ($form->{radier}) {
804     print qq|
805     <input class=submit type=submit name=action value="|
806       . $locale->text('Delete') . qq|">
807 |;
808   }
809     print qq|<input class=submit type=submit name=action value="|
810       . $locale->text('Use As Template') . qq|">
811 |;
812
813   }
814
815   print qq|<input class=submit type=submit name=action id=update_button value="|
816     . $locale->text('Update') . qq|">|;
817
818   if (!$form->{id} && ($invdate > $closedto)) {
819     print qq| <input class=submit type=submit name=action value="|
820       . $locale->text('Post') . qq|"> | .
821       NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'),
822                        '-class' => 'submit'));
823   }
824
825   print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
826     qq|
827
828 <input type=hidden name=rowcount value=$form->{rowcount}>
829
830 <input name=callback type=hidden value="$form->{callback}">
831
832 <input type=hidden name=path value=$form->{path}>
833 <input type=hidden name=login value=$form->{login}>
834 <input type=hidden name=password value=$form->{password}>
835 |
836   . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
837   . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}]);
838
839   # button for saving history
840   if($form->{id} ne "") {
841     print qq|
842           <input type="button" class="submit" onclick="set_history_window(|
843           . Q($form->{id})
844           . qq|);" name="history" id="history" value="|
845           . $locale->text('history')
846           . qq|">|;
847   }
848   # /button for saving history
849
850 print qq|</form>
851
852 </body>
853 </html>
854 |;
855
856   $lxdebug->leave_sub();
857 }
858
859 sub update {
860   $lxdebug->enter_sub();
861
862   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
863     qw(exchangerate creditlimit creditremaining);
864
865   &check_name(vendor);
866
867   $form->{exchangerate} = $exchangerate
868     if (
869         $form->{forex} = (
870                       $exchangerate =
871                         $form->check_exchangerate(
872                         \%myconfig, $form->{currency}, $form->{invdate}, 'sell'
873                         )));
874
875   for $i (1 .. $form->{paidaccounts}) {
876     if ($form->{"paid_$i"}) {
877       map {
878         $form->{"${_}_$i"} =
879           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
880       } qw(paid exchangerate);
881
882       $form->{"exchangerate_$i"} = $exchangerate
883         if (
884             $form->{"forex_$i"} = (
885                 $exchangerate =
886                   $form->check_exchangerate(
887                   \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell'
888                   )));
889     }
890   }
891
892   $i            = $form->{rowcount};
893   $exchangerate = ($form->{exchangerate} * 1) ? $form->{exchangerate} * 1 : 1;
894
895   if (   ($form->{"partnumber_$i"} eq "")
896       && ($form->{"description_$i"} eq "")
897       && ($form->{"partsgroup_$i"} eq "")) {
898     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
899     &check_form;
900
901   } else {
902
903     IR->retrieve_item(\%myconfig, \%$form);
904
905     my $rows = scalar @{ $form->{item_list} };
906
907     if ($rows) {
908       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
909
910       if ($rows > 1) {
911
912         &select_item;
913         exit;
914
915       } else {
916
917         # override sellprice if there is one entered
918         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
919
920         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
921           qw(partnumber description unit);
922
923         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
924           keys %{ $form->{item_list}[0] };
925
926         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
927
928         ($dec) = ($s =~ /\.(\d+)/);
929         $dec           = length $dec;
930         $decimalplaces = ($dec > 2) ? $dec : 2;
931
932         if ($sellprice) {
933           $form->{"sellprice_$i"} = $sellprice;
934         } else {
935
936           # if there is an exchange rate adjust sellprice
937           $form->{"sellprice_$i"} /= $exchangerate;
938         }
939
940         $amount =
941           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
942           (1 - $form->{"discount_$i"} / 100);
943         $form->{creditremaining} -= $amount;
944         $form->{"sellprice_$i"} =
945           $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
946                                $decimalplaces);
947         $form->{"qty_$i"} =
948           $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
949       }
950
951       &display_form;
952
953     } else {
954
955       # ok, so this is a new part
956       # ask if it is a part or service item
957
958       if (   $form->{"partsgroup_$i"}
959           && ($form->{"partsnumber_$i"} eq "")
960           && ($form->{"description_$i"} eq "")) {
961         $form->{rowcount}--;
962         $form->{"discount_$i"} = "";
963         &display_form;
964           } else {
965
966         $form->{"id_$i"}   = 0;
967         $form->{"unit_$i"} = $locale->text('ea');
968
969         &new_item;
970
971       }
972     }
973   }
974   $lxdebug->leave_sub();
975 }
976
977 sub storno {
978   $lxdebug->enter_sub();
979
980   if ($form->{storno}) {
981     $form->error($locale->text('Cannot storno storno invoice!'));
982   }
983
984   if (IS->has_storno(\%myconfig, $form, "ap")) {
985     $form->error($locale->text("Invoice has already been storno'd!"));
986   }
987
988   invoice_links();
989   prepare_invoice();
990   relink_accounts();
991
992   $form->{storno_id} = $form->{id};
993   $form->{storno} = 1;
994   $form->{id} = "";
995   $form->{invnumber} = "Storno zu " . $form->{invnumber};
996
997   &post();
998   $lxdebug->leave_sub();
999
1000 }
1001
1002 sub use_as_template {
1003   $lxdebug->enter_sub();
1004
1005   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);
1006   $form->{paidaccounts} = 1;
1007   $form->{rowcount}--;
1008   $form->{invdate} = $form->current_date(\%myconfig);
1009   &display_form;
1010
1011   $lxdebug->leave_sub();
1012 }
1013
1014 sub post_payment {
1015   $lxdebug->enter_sub();
1016   for $i (1 .. $form->{paidaccounts}) {
1017     if ($form->{"paid_$i"}) {
1018       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1019
1020       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1021
1022       $form->error($locale->text('Cannot post payment for a closed period!'))
1023         if ($datepaid <= $closedto);
1024
1025       if ($form->{currency} ne $form->{defaultcurrency}) {
1026         $form->{"exchangerate_$i"} = $form->{exchangerate}
1027           if ($invdate == $datepaid);
1028         $form->isblank("exchangerate_$i",
1029                        $locale->text('Exchangerate for payment missing!'));
1030       }
1031     }
1032   }
1033
1034   ($form->{AP})      = split /--/, $form->{AP};
1035   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
1036   if (IR->post_payment(\%myconfig, \%$form)){
1037         
1038         if(!exists $form->{addition} && $form->{id} ne "") {
1039                 # saving the history
1040                 $form->{addition} = "PAYMENT POSTED";
1041                 $form->save_history($form->dbconnect(\%myconfig));
1042                 # /saving the history 
1043                 $form->redirect($locale->text(' Payment posted!'));
1044         }
1045   }
1046     $form->error($locale->text('Cannot post payment!'));
1047
1048
1049   $lxdebug->leave_sub();
1050 }
1051
1052 sub post {
1053   $lxdebug->enter_sub();
1054
1055   $form->isblank("invdate", $locale->text('Invoice Date missing!'));
1056   $form->isblank("vendor",  $locale->text('Vendor missing!'));
1057
1058   # if the vendor changed get new values
1059   if (&check_name(vendor)) {
1060     &update;
1061     exit;
1062   }
1063
1064   &validate_items;
1065
1066   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1067   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
1068
1069   $form->error($locale->text('Cannot post invoice for a closed period!'))
1070     if ($invdate <= $closedto);
1071
1072   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1073     if ($form->{currency} ne $form->{defaultcurrency});
1074
1075   for $i (1 .. $form->{paidaccounts}) {
1076     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1077       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1078
1079       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1080
1081       $form->error($locale->text('Cannot post payment for a closed period!'))
1082         if ($datepaid <= $closedto);
1083
1084       if ($form->{currency} ne $form->{defaultcurrency}) {
1085         $form->{"exchangerate_$i"} = $form->{exchangerate}
1086           if ($invdate == $datepaid);
1087         $form->isblank("exchangerate_$i",
1088                        $locale->text('Exchangerate for payment missing!'));
1089       }
1090     }
1091   }
1092
1093   ($form->{AP})      = split /--/, $form->{AP};
1094   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
1095
1096   $form->{id} = 0 if $form->{postasnew};
1097
1098
1099   relink_accounts();
1100   if (IR->post_invoice(\%myconfig, \%$form)){
1101         # saving the history
1102         if(!exists $form->{addition} && $form->{id} ne "") {
1103                 $form->{addition} = "POSTED";
1104                 #$form->{what_done} = $locale->text("Rechnungsnummer") . qq| | . $form->{invnumber};
1105                 $form->save_history($form->dbconnect(\%myconfig));
1106         }
1107         # /saving the history
1108     remove_draft() if $form->{remove_draft};
1109         $form->redirect(  $locale->text('Invoice')
1110                   . " $form->{invnumber} "
1111                   . $locale->text('posted!'));
1112   }
1113   $form->error($locale->text('Cannot post invoice!'));
1114
1115   $lxdebug->leave_sub();
1116 }
1117
1118 sub delete {
1119   $lxdebug->enter_sub();
1120
1121   $form->header;
1122   print qq|
1123 <body>
1124
1125 <form method=post action=$form->{script}>
1126 |;
1127
1128   # delete action variable
1129   map { delete $form->{$_} } qw(action header);
1130
1131   foreach $key (keys %$form) {
1132     $form->{$key} =~ s/\"/&quot;/g;
1133     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1134   }
1135
1136   print qq|
1137 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1138
1139 <h4>|
1140     . $locale->text('Are you sure you want to delete Invoice Number')
1141     . qq| $form->{invnumber}</h4>
1142 <p>
1143 <input name=action class=submit type=submit value="|
1144     . $locale->text('Yes') . qq|">
1145 </form>
1146 |;
1147
1148   $lxdebug->leave_sub();
1149 }
1150
1151 sub yes {
1152   $lxdebug->enter_sub();
1153   if (IR->delete_invoice(\%myconfig, \%$form)) {
1154     # saving the history
1155     if(!exists $form->{addition}) {
1156           $form->{addition} = "DELETED";
1157           $form->save_history($form->dbconnect(\%myconfig));
1158     }
1159     # /saving the history 
1160     $form->redirect($locale->text('Invoice deleted!'));
1161   }
1162   $form->error($locale->text('Cannot delete invoice!'));
1163
1164   $lxdebug->leave_sub();
1165 }