Ein oben angedocktes, auf CSS basierendes Menü hinzugefügt.
[kivitendo-erp.git] / bin / mozilla / is.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 invoicing module
31 #
32 #======================================================================
33
34 use SL::IS;
35 use SL::PE;
36 use Data::Dumper;
37
38 require "$form->{path}/io.pl";
39 require "$form->{path}/arap.pl";
40
41 1;
42
43 # end of main
44
45 sub add {
46   $lxdebug->enter_sub();
47   
48   if ($form->{type} eq "credit_note") {
49     $form->{title} = $locale->text('Add Credit Note');
50
51     if ($form->{storno}) {
52       $form->{title} = $locale->text('Add Storno Credit Note');
53     }
54   } else {
55     $form->{title} = $locale->text('Add Sales Invoice');
56
57   }
58
59
60   $form->{callback} =
61     "$form->{script}?action=add&type=$form->{type}&login=$form->{login}&path=$form->{path}&password=$form->{password}"
62     unless $form->{callback};
63
64   $form{jsscript} = "date";
65
66   if ($myconfig{acs} =~ "AR--Add Sales Invoice" || $myconfig{acs} =~ "AR--AR")
67   {
68     $form->error("Access Denied");
69   }
70   &invoice_links;
71   &prepare_invoice;
72   &display_form;
73
74   $lxdebug->leave_sub();
75 }
76
77 sub edit {
78   $lxdebug->enter_sub();
79
80
81   if ($myconfig{acs} =~ "AR--Add Sales Invoice" || $myconfig{acs} =~ "AR--AR")
82   {
83     $form->error("Access Denied");
84   }
85   $edit = 1;
86   if ($form->{print_and_post}) {
87     $form->{action}   = "print";
88     $form->{resubmit} = 1;
89     $language_id = $form->{language_id};
90     $printer_id = $form->{printer_id};
91   }
92   &invoice_links;
93   &prepare_invoice;
94   if ($form->{print_and_post}) {
95     $form->{language_id} = $language_id;
96     $form->{printer_id} = $printer_id;
97   }
98
99   &display_form;
100
101   $lxdebug->leave_sub();
102 }
103
104 sub invoice_links {
105   $lxdebug->enter_sub();
106
107   $form->{vc} = 'customer';
108
109   # create links
110   $form->{webdav}   = $webdav;
111   $form->{lizenzen} = $lizenzen;
112
113   $form->create_links("AR", \%myconfig, "customer");
114
115   if ($form->{all_customer}) {
116     unless ($form->{customer_id}) {
117       $form->{customer_id} = $form->{all_customer}->[0]->{id};
118     }
119   }
120
121   if ($form->{payment_id}) {
122     $payment_id = $form->{payment_id};
123   }
124   if ($form->{language_id}) {
125     $language_id = $form->{language_id};
126   }
127   if ($form->{taxzone_id}) {
128     $taxzone_id = $form->{taxzone_id};
129   }
130   if ($form->{id}) {
131     $id = $form->{id};
132   }
133   if ($form->{shipto_id}) {
134     $shipto_id = $form->{shipto_id};
135   }
136
137   $cp_id = $form->{cp_id};
138   IS->get_customer(\%myconfig, \%$form);
139
140   #quote all_customer Bug 133
141   foreach $ref (@{ $form->{all_customer} }) {
142     $ref->{name} = $form->quote($ref->{name});
143   }
144   if ($id) {
145     $form->{id} = $id;
146   }
147   IS->retrieve_invoice(\%myconfig, \%$form);
148   $form->{cp_id} = $cp_id;
149
150   if ($payment_id) {
151     $form->{payment_id} = $payment_id;
152   }
153   if ($language_id) {
154     $form->{language_id} = $language_id;
155   }
156   if ($taxzone_id) {
157     $form->{taxzone_id} = $taxzone_id;
158   }
159   if ($shipto_id) {
160     $form->{shipto_id} = $shipto_id;
161   }
162
163   # currencies
164   @curr = split(/:/, $form->{currencies});
165   chomp $curr[0];
166   $form->{defaultcurrency} = $curr[0];
167
168   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
169
170   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
171
172   if (@{ $form->{all_customer} }) {
173     $form->{customer} = "$form->{customer}--$form->{customer_id}";
174     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
175       (@{ $form->{all_customer} });
176   }
177
178   # departments
179   if ($form->{all_departments}) {
180     $form->{selectdepartment} = "<option>\n";
181     $form->{department}       = "$form->{department}--$form->{department_id}";
182
183     map {
184       $form->{selectdepartment} .=
185         "<option>$_->{description}--$_->{id}\n"
186     } (@{ $form->{all_departments} });
187   }
188
189   $form->{employee} = "$form->{employee}--$form->{employee_id}";
190
191   # sales staff
192   if ($form->{all_employees}) {
193     $form->{selectemployee} = "";
194     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
195       (@{ $form->{all_employees} });
196   }
197
198   # forex
199   $form->{forex} = $form->{exchangerate};
200   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
201
202   foreach $key (keys %{ $form->{AR_links} }) {
203     foreach $ref (@{ $form->{AR_links}{$key} }) {
204       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
205     }
206
207     if ($key eq "AR_paid") {
208       for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
209         $form->{"AR_paid_$i"} =
210           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
211
212         # reverse paid
213         $form->{"paid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
214         $form->{"datepaid_$i"} =
215           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
216         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
217           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
218         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
219         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
220
221         $form->{paidaccounts} = $i;
222       }
223     } else {
224       $form->{$key} =
225         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
226     }
227
228   }
229
230   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
231
232   $form->{AR} = $form->{AR_1} unless $form->{id};
233
234   $form->{locked} =
235     ($form->datetonum($form->{invdate}, \%myconfig) <=
236      $form->datetonum($form->{closedto}, \%myconfig));
237
238   $lxdebug->leave_sub();
239 }
240
241 sub prepare_invoice {
242   $lxdebug->enter_sub();
243
244   if ($form->{type} eq "credit_note") {
245     $form->{type}     = "credit_note";
246     $form->{formname} = "credit_note";
247     $form->{media}    = "screen";
248   } else {
249     $form->{type}     = "invoice";
250     $form->{formname} = "invoice";
251     $form->{media}    = "screen";
252   }
253
254   if ($form->{id}) {
255
256     map { $form->{$_} =~ s/\"/&quot;/g }
257       qw(invnumber ordnumber quonumber shippingpoint shipvia notes intnotes);
258
259     #     # get pricegroups for parts
260     #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
261
262     my $i = 0;
263
264     foreach $ref (@{ $form->{invoice_details} }) {
265       $i++;
266
267       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
268       $form->{"discount_$i"} =
269         $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
270       ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
271       $dec           = length $dec;
272       $decimalplaces = ($dec > 2) ? $dec : 2;
273
274       $form->{"sellprice_$i"} =
275         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
276                              $decimalplaces);
277
278       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
279       $dec_qty = length $dec_qty;
280
281       $form->{"qty_$i"} =
282         $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
283
284       map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
285         qw(partnumber description unit partnotes);
286       $form->{rowcount} = $i;
287
288     }
289   }
290   $lxdebug->leave_sub();
291 }
292
293 sub form_header {
294   $lxdebug->enter_sub();
295
296   if ($edit) {
297
298     if ($form->{type} eq "credit_note") {
299       $form->{title} = $locale->text('Edit Credit Note');
300     
301       if ($form->{storno}) {
302         $form->{title} = $locale->text('Edit Storno Credit Note');
303       }
304     } else {
305       $form->{title} = $locale->text('Edit Sales Invoice');
306     
307       if ($form->{storno}) {
308         $form->{title} = $locale->text('Edit Storno Invoice');
309       }
310     }
311   }
312
313   $form->{radier} =
314     ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
315
316   $payment = qq|<option value=""></option>|;
317   foreach $item (@{ $form->{payment_terms} }) {
318     if ($form->{payment_id} eq $item->{id}) {
319       $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
320     } else {
321       $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
322     }
323   }
324
325   my $set_duedate_url =
326     "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=set_duedate";
327
328   my $pjx = new CGI::Ajax( 'set_duedate' => $set_duedate_url );
329   push(@ { $form->{AJAX} }, $pjx);
330
331   if (@{ $form->{TAXZONE} }) {
332     $form->{selecttaxzone} = "";
333     foreach $item (@{ $form->{TAXZONE} }) {
334       if ($item->{id} == $form->{taxzone_id}) {
335         $form->{selecttaxzone} .=
336           "<option value=$item->{id} selected>" . H($item->{description}) .
337           "</option>";
338       } else {
339         $form->{selecttaxzone} .=
340           "<option value=$item->{id}>" . H($item->{description}) . "</option>";
341       }
342
343     }
344   } else {
345     $form->{selecttaxzone} =~ s/ selected//g;
346     if ($form->{taxzone_id} ne "") {
347       $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}/value=$form->{taxzone_id} selected/;
348     }
349   }
350
351   $taxzone = qq|
352               <tr>
353                 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
354                 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
355                 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
356               </tr>|;
357
358
359   if (@{ $form->{SHIPTO} }) {
360     $form->{selectshipto} = "<option value=0></option>";
361     foreach $item (@{ $form->{SHIPTO} }) {
362       if ($item->{shipto_id} == $form->{shipto_id}) {
363         $form->{selectshipto} .=
364           "<option value=$item->{shipto_id} selected>$item->{shiptoname} $item->{shiptodepartment_1}</option>";
365       } else {
366         $form->{selectshipto} .=
367           "<option value=$item->{shipto_id}>$item->{shiptoname} $item->{shiptodepartment}</option>";
368       }
369
370     }
371   } else {
372     $form->{selectshipto} =~ s/ selected//g;
373     if ($form->{shipto_id} ne "") {
374       $form->{selectshipto} =~ s/value=$form->{shipto_id}/value=$form->{shipto_id} selected/;
375     }
376   }
377
378   $shipto = qq|
379                 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
380                 <td><select name=shipto_id style="width:200px;">$form->{selectshipto}</select></td>
381                 <input type=hidden name=selectshipto value="$form->{selectshipto}">|;
382
383
384
385   # set option selected
386   foreach $item (qw(AR customer currency department employee)) {
387     $form->{"select$item"} =~ s/ selected//;
388     $form->{"select$item"} =~
389       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
390   }
391
392   #quote customer Bug 133
393   $form->{selectcustomer} = $form->quote($form->{selectcustomer});
394   
395   #build contacts
396   if ($form->{all_contacts}) {
397
398     $form->{selectcontact} = "<option></option>";
399     foreach $item (@{ $form->{all_contacts} }) {
400       my $department = ($item->{cp_abteilung}) ? "--$item->{cp_abteilung}" : "";
401       if ($form->{cp_id} == $item->{cp_id}) {
402         $form->{selectcontact} .=
403           "<option value=$item->{cp_id} selected>$item->{cp_name}$department</option>";
404       } else {
405         $form->{selectcontact} .= "<option value=$item->{cp_id}>$item->{cp_name}$department</option>";
406       }
407     }
408   } else {
409     $form->{selectcontact} =~ s/ selected//g;
410     if ($form->{cp_id} ne "") {
411       $form->{selectcontact} =~ s/value=$form->{cp_id}/value=$form->{cp_id} selected/;
412     }
413   }
414
415
416   if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
417     $creditwarning = 1;
418   } else {
419     $creditwarning = 0;
420   }
421
422   #else {$form->{all_contacts} = 0;}
423
424   $form->{exchangerate} =
425     $form->format_amount(\%myconfig, $form->{exchangerate});
426
427   $form->{creditlimit} =
428     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
429   $form->{creditremaining} =
430     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
431
432   $exchangerate = "";
433   if ($form->{currency} ne $form->{defaultcurrency}) {
434     if ($form->{forex}) {
435       $exchangerate .=
436           qq|<th align=right>|
437         . $locale->text('Exchangerate')
438         . qq|</th><td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>|;
439     } else {
440       $exchangerate .=
441           qq|<th align=right>|
442         . $locale->text('Exchangerate')
443         . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
444     }
445   }
446   $exchangerate .= qq|
447 <input type=hidden name=forex value=$form->{forex}>
448 |;
449
450   $customer =
451     ($form->{selectcustomer})
452     ? qq|<select name=customer>$form->{selectcustomer}</select>\n<input type=hidden name="selectcustomer" value="$form->{selectcustomer}">|
453     : qq|<input name=customer value="$form->{customer}" size=35>|;
454
455   #sk
456   $contact =
457     ($form->{selectcontact})
458     ? qq|<select name=cp_id>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
459     : qq|<input name=contact value="$form->{contact}" size=35>|;
460
461   $department = qq|
462               <tr>
463                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
464                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
465                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
466                 </td>
467               </tr>
468 | if $form->{selectdepartment};
469
470   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
471
472   if ($form->{business}) {
473     $business = qq|
474               <tr>
475                 <th align=right>| . $locale->text('Business') . qq|</th>
476                 <td>$form->{business}</td>
477                 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
478                 <td>|
479       . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
480       . qq| %</td>
481               </tr>
482 |;
483   }
484
485   if ($form->{max_dunning_level}) {
486     $dunning = qq|
487               <tr>
488                 <td colspan=4>
489                 <table>
490                   <tr>
491                 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
492                 <td><b>$form->{max_dunning_level}</b></td>
493                 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
494                 <td><b>|
495       . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
496       . qq|</b></td>
497               </tr>
498               </table>
499              </td>
500             </tr>
501 |;
502   }
503
504   $form->{fokus} = "invoice.customer";
505
506   # use JavaScript Calendar or not
507   $form->{jsscript} = $jscalendar;
508   $jsscript = "";
509   if ($form->{type} eq "credit_note") {
510     if ($form->{jsscript}) {
511   
512       # with JavaScript Calendar
513       $button1 = qq|
514         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
515         <td><input type=button name=invdate id="trigger1" value=|
516         . $locale->text('button') . qq|></td>
517         |;
518   
519       #write Trigger
520       $jsscript =
521         Form->write_trigger(\%myconfig,     "1",
522                             "invdate",      "BL",
523                             "trigger1");
524     } else {
525   
526       # without JavaScript Calendar
527       $button1 =
528         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
529       $button2 =
530         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
531     }
532   } else {
533     if ($form->{jsscript}) {
534   
535       # with JavaScript Calendar
536       $button1 = qq|
537         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
538         <td><input type=button name=invdate id="trigger1" value=|
539         . $locale->text('button') . qq|></td>
540         |;
541       $button2 = qq|
542         <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
543         <td width="4"><input type=button name=duedate id="trigger2" value=|
544         . $locale->text('button') . qq|></td></td>
545       |;
546       $button3 = qq|
547         <td width="13"><input name=deliverydate id=deliverydate size=11 title="$myconfig{dateformat}" value=$form->{deliverydate}></td>
548         <td width="4"><input type=button name=deliverydate id="trigger3" value=|
549         . $locale->text('button') . qq|></td></td>
550       |;
551   
552       #write Trigger
553       $jsscript =
554         Form->write_trigger(\%myconfig,     "3",
555                             "invdate",      "BL",
556                             "trigger1",     "duedate",
557                             "BL",           "trigger2",
558                             "deliverydate", "BL",
559                             "trigger3");
560     } else {
561   
562       # without JavaScript Calendar
563       $button1 =
564         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
565       $button2 =
566         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
567     }
568   }
569   if ($form->{resubmit} && ($form->{format} eq "html")) {
570     $onload =
571       qq|window.open('about:blank','Beleg'); document.invoice.target = 'Beleg';document.invoice.submit()|;
572   } elsif ($form->{resubmit}) {
573     $onload = qq|document.invoice.submit()|;
574   } else {
575     $onload = "fokus()";
576   }
577
578   $credittext = $locale->text('Credit Limit exceeded!!!');
579   if ($creditwarning) {
580     $onload = qq|alert('$credittext')|;
581   }
582
583   $form->header;
584
585   print qq|
586 <body onLoad="$onload">
587 <script type="text/javascript" src="js/common.js"></script>
588 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
589 <script type="text/javascript" src="js/vendor_selection.js"></script>
590 <script type="text/javascript" src="js/calculate_qty.js"></script>
591
592 <form method=post name="invoice" action=$form->{script}>
593
594
595 <input type=hidden name=id value=$form->{id}>
596 <input type=hidden name=action value=$form->{action}>
597
598 <input type=hidden name=type value=$form->{type}>
599 <input type=hidden name=media value=$form->{media}>
600 <input type=hidden name=format value=$form->{format}>
601
602 <input type=hidden name=queued value="$form->{queued}">
603 <input type=hidden name=printed value="$form->{printed}">
604 <input type=hidden name=emailed value="$form->{emailed}">
605
606 <input type=hidden name=title value="$form->{title}">
607 <input type=hidden name=vc value=$form->{vc}>
608
609 <input type=hidden name=discount value=$form->{discount}>
610 <input type=hidden name=creditlimit value=$form->{creditlimit}>
611 <input type=hidden name=creditremaining value=$form->{creditremaining}>
612
613 <input type=hidden name=tradediscount value=$form->{tradediscount}>
614 <input type=hidden name=business value=$form->{business}>
615
616 <input type=hidden name=closedto value=$form->{closedto}>
617 <input type=hidden name=locked value=$form->{locked}>
618
619 <input type=hidden name=shipped value=$form->{shipped}>
620 <input type=hidden name=lizenzen value=$lizenzen>
621 <input type=hidden name=storno value=$form->{storno}>
622 <input type=hidden name=storno_id value=$form->{storno_id}>
623
624
625
626 <table width=100%>
627   <tr class=listtop>
628     <th class=listtop>$form->{title}</th>
629   </tr>
630   <tr height="5"></tr>
631   <tr>
632     <td>
633       <table width=100%>
634         <tr valign=top>
635           <td>
636             <table>
637               <tr>
638                 <th align=right nowrap>| . $locale->text('Customer') . qq|</th>
639                 <td colspan=3>$customer</td>
640     <input type=hidden name=customer_klass value=$form->{customer_klass}>
641                 <input type=hidden name=customer_id value=$form->{customer_id}>
642                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
643                 <th align=richt nowrap>|
644     . $locale->text('Contact Person') . qq|</th>
645                 <td colspan=3>$contact</td>
646               </tr>
647               <tr>
648                 <td></td>
649                 <td colspan=3>
650                   <table>
651                     <tr>
652                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
653                       <td>$form->{creditlimit}</td>
654                       <td width=20%></td>
655                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
656                       <td class="plus$n">$form->{creditremaining}</td>
657                     </tr>
658                   </table>
659                 </td>
660                 $shipto
661               </tr>
662               $business
663               $dunning
664               <tr>
665                 <th align=right nowrap>| . $locale->text('Record in') . qq|</th>
666                 <td colspan=3><select name=AR style="width:280px;">$form->{selectAR}</select></td>
667                 <input type=hidden name=selectAR value="$form->{selectAR}">
668               </tr>
669               $taxzone
670               $department
671               <tr>
672                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
673                 <td><select name=currency>$form->{selectcurrency}</select></td>
674                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
675                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
676                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
677                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
678                 $exchangerate
679               </tr>
680               <tr>
681                 <th align=right nowrap>| . $locale->text('Shipping Point') . qq|</th>
682                 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
683               </tr>
684               <tr>
685                 <th align=right nowrap>| . $locale->text('Ship via') . qq|</th>
686                 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
687               </tr>|;
688 #               <tr>
689 #                 <td colspan=4>
690 #                   <table>
691 #                     <tr>
692 #                       <td colspan=2>
693 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
694 #                       </td>
695 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
696 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
697 #                     </tr>
698 #                     <tr>
699 #                       <td colspan=2>
700 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
701 #                       </td>
702 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
703 #                       <input size=45 id=delivery_vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
704 #                     </tr>
705 #                   </table>
706 #                 </td>
707 #               </tr>
708 print qq|           </table>
709           </td>
710           <td align=right>
711             <table>
712               <tr>
713                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
714                 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
715                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
716                 <td></td>
717               </tr>|;
718 if ($form->{type} eq "credit_note") {
719 print qq|     <tr>
720                 <th align=right nowrap>| . $locale->text('Credit Note Number') . qq|</th>
721                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
722               </tr>
723               <tr>
724                 <th align=right>| . $locale->text('Credit Note Date') . qq|</th>
725                 $button1
726               </tr>|;
727 } else {
728 print qq|     <tr>
729                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
730                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
731               </tr>
732               <tr>
733                 <th align=right>| . $locale->text('Invoice Date') . qq|</th>
734                 $button1
735               </tr>
736               <tr>
737                 <th align=right>| . $locale->text('Due Date') . qq|</th>
738                 $button2
739               </tr>
740               <tr>
741                 <th align=right>| . $locale->text('Delivery Date') . qq|</th>
742                 $button3
743               </tr>|;
744 }
745 print qq|     <tr>
746                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
747                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
748               </tr>
749               <tr>
750                 <th align=right nowrap>| . $locale->text('Quotation Number') . qq|</th>
751                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
752               </tr>
753               <tr>
754                 <th align=right nowrap>| . $locale->text('Customer Order Number') . qq|</th>
755                 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
756               </tr>
757             </table>
758           </td>
759         </tr>
760       </table>
761     </td>
762   </tr>
763   <tr>
764     <td>
765     </td>
766   </tr>
767
768 $jsscript
769
770 <!-- shipto are in hidden variables -->
771
772 <input type=hidden name=shiptoname value="$form->{shiptoname}">
773 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
774 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
775 <input type=hidden name=shiptocity value="$form->{shiptocity}">
776 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
777 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
778 <input type=hidden name=shiptophone value="$form->{shiptophone}">
779 <input type=hidden name=shiptofax value="$form->{shiptofax}">
780 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
781
782 <!-- email variables -->
783 <input type=hidden name=message value="$form->{message}">
784 <input type=hidden name=email value="$form->{email}">
785 <input type=hidden name=subject value="$form->{subject}">
786 <input type=hidden name=cc value="$form->{cc}">
787 <input type=hidden name=bcc value="$form->{bcc}">
788 <input type=hidden name=webdav value=$webdav>
789 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
790 |;
791
792   foreach $item (split / /, $form->{taxaccounts}) {
793     print qq|
794 <input type=hidden name="${item}_rate" value="$form->{"${item}_rate"}">
795 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
796 <input type=hidden name="${item}_taxnumber" value="$form->{"${item}_taxnumber"}">
797 |;
798   }
799   $lxdebug->leave_sub();
800 }
801
802 sub form_footer {
803   $lxdebug->enter_sub();
804
805   $form->{invtotal} = $form->{invsubtotal};
806
807   if (($rows = $form->numtextrows($form->{notes}, 26, 8)) < 2) {
808     $rows = 2;
809   }
810   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
811     $introws = 2;
812   }
813   $rows = ($rows > $introws) ? $rows : $introws;
814   $notes =
815     qq|<textarea name=notes rows=$rows cols=26 wrap=soft>$form->{notes}</textarea>|;
816   $intnotes =
817     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
818
819   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
820
821   $taxincluded = "";
822   if ($form->{taxaccounts}) {
823     $taxincluded = qq|
824                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
825       . $locale->text('Tax Included') . qq|</b><br><br>|;
826   }
827
828   if (!$form->{taxincluded}) {
829
830     foreach $item (split / /, $form->{taxaccounts}) {
831       if ($form->{"${item}_base"}) {
832         $form->{"${item}_total"} =
833           $form->round_amount(
834                              $form->{"${item}_base"} * $form->{"${item}_rate"},
835                              2);
836         $form->{invtotal} += $form->{"${item}_total"};
837         $form->{"${item}_total"} =
838           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
839
840         $tax .= qq|
841               <tr>
842                 <th align=right>$form->{"${item}_description"}</th>
843                 <td align=right>$form->{"${item}_total"}</td>
844               </tr>
845 |;
846       }
847     }
848
849     $form->{invsubtotal} =
850       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
851
852     $subtotal = qq|
853               <tr>
854                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
855                 <td align=right>$form->{invsubtotal}</td>
856               </tr>
857 |;
858
859   }
860
861   if ($form->{taxincluded}) {
862     foreach $item (split / /, $form->{taxaccounts}) {
863       if ($form->{"${item}_base"}) {
864         $form->{"${item}_total"} =
865           $form->round_amount(
866                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
867                               (1 + $form->{"${item}_rate"})
868                            ),
869                            2);
870         $form->{"${item}_netto"} =
871           $form->round_amount(
872                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
873                           2);
874         $form->{"${item}_total"} =
875           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
876         $form->{"${item}_netto"} =
877           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
878
879         $tax .= qq|
880               <tr>
881                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
882                 <td align=right>$form->{"${item}_total"}</td>
883               </tr>
884               <tr>
885                 <th align=right>Nettobetrag</th>
886                 <td align=right>$form->{"${item}_netto"}</td>
887               </tr>
888 |;
889       }
890     }
891
892   }
893
894   $form->{oldinvtotal} = $form->{invtotal};
895   $form->{invtotal}    =
896     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
897
898   print qq|
899   <tr>
900     <td>
901       <table width=100%>
902         <tr valign=bottom>
903           <td>
904             <table>
905               <tr>
906                 <th align=left>| . $locale->text('Notes') . qq|</th>
907                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
908                 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
909               </tr>
910               <tr valign=top>
911                 <td>$notes</td>
912                 <td>$intnotes</td>
913                 <td><select name=payment_id onChange="set_duedate(['payment_id__' + this.value],['duedate'])">$payment
914                 </select></td>
915               </tr>
916             </table>
917           </td>
918           <td align=right width=100%>
919             $taxincluded
920             <table width=100%>
921               $subtotal
922               $tax
923               <tr>
924                 <th align=right>| . $locale->text('Total') . qq|</th>
925                 <td align=right>$form->{invtotal}</td>
926               </tr>
927             </table>
928           </td>
929         </tr>
930       </table>
931     </td>
932   </tr>
933 |;
934   if ($webdav) {
935     $webdav_list = qq|
936   <tr>
937     <td><hr size=3 noshade></td>
938   </tr>
939   <tr>
940     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
941   </tr>
942     <table width=100%>
943       <td align=left width=30%><b>Dateiname</b></td>
944       <td align=left width=70%><b>Webdavlink</b></td>
945 |;
946     foreach $file (keys %{ $form->{WEBDAV} }) {
947       $webdav_list .= qq|
948       <tr>
949         <td align=left>$file</td>
950         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
951       </tr>
952 |;
953     }
954     $webdav_list .= qq|
955     </table>
956   </tr>
957 |;
958
959     print $webdav_list;
960   }
961 if ($form->{type} eq "credit_note") {
962   print qq|
963   <tr>
964     <td>
965       <table width=100%>
966         <tr class=listheading>
967           <th colspan=6 class=listheading>|
968     . $locale->text('Payments') . qq|</th>
969         </tr>
970 |;
971 } else {
972   print qq|
973   <tr>
974     <td>
975       <table width=100%>
976         <tr class=listheading>
977           <th colspan=6 class=listheading>|
978     . $locale->text('Incoming Payments') . qq|</th>
979         </tr>
980 |;
981 }
982
983   if ($form->{currency} eq $form->{defaultcurrency}) {
984     @column_index = qw(datepaid source memo paid AR_paid);
985   } else {
986     @column_index = qw(datepaid source memo paid exchangerate AR_paid);
987   }
988
989   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
990   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
991   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
992   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
993   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
994   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
995
996   print "
997         <tr>
998 ";
999   map { print "$column_data{$_}\n" } @column_index;
1000   print "
1001         </tr>
1002 ";
1003
1004   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
1005   for $i (1 .. $form->{paidaccounts}) {
1006
1007     print "
1008         <tr>\n";
1009
1010     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
1011     $form->{"selectAR_paid_$i"} =~
1012       s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
1013
1014     # format amounts
1015     $totalpaid += $form->{"paid_$i"};
1016     if ($form->{"paid_$i"}) {
1017       $form->{"paid_$i"} =
1018         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
1019     }
1020     $form->{"exchangerate_$i"} =
1021       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
1022
1023     $exchangerate = qq|&nbsp;|;
1024     if ($form->{currency} ne $form->{defaultcurrency}) {
1025       if ($form->{"forex_$i"}) {
1026         $exchangerate =
1027           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
1028       } else {
1029         $exchangerate =
1030           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
1031       }
1032     }
1033
1034     $exchangerate .= qq|
1035 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
1036 |;
1037
1038     $column_data{"paid_$i"} =
1039       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
1040     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
1041     $column_data{"AR_paid_$i"}      =
1042       qq|<td align=center><select name="AR_paid_$i">$form->{"selectAR_paid_$i"}</select></td>|;
1043     $column_data{"datepaid_$i"} =
1044       qq|<td align=center><input name="datepaid_$i"  size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}></td>|;
1045     $column_data{"source_$i"} =
1046       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
1047     $column_data{"memo_$i"} =
1048       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
1049
1050     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
1051     print "
1052         </tr>\n";
1053   }
1054
1055   print qq|
1056 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
1057 <input type=hidden name=selectAR_paid value="$form->{selectAR_paid}">
1058 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
1059 <input type=hidden name=oldtotalpaid value=$totalpaid>
1060     </table>
1061     </td>
1062   </tr>
1063   <tr>
1064     <td><hr size=3 noshade></td>
1065   </tr>
1066   <tr>
1067     <td>
1068 |;
1069
1070   &print_options;
1071
1072   print qq|
1073     </td>
1074   </tr>
1075 </table>
1076 |;
1077
1078   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
1079   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1080
1081   if ($form->{id}) {
1082     print qq|
1083     <input class=submit type=submit name=action value="|
1084       . $locale->text('Update') . qq|">
1085     <input class=submit type=submit name=action value="|
1086       . $locale->text('Ship to') . qq|">
1087     <input class=submit type=submit name=action value="|
1088       . $locale->text('Print') . qq|">
1089     <input class=submit type=submit name=action value="|
1090       . $locale->text('E-mail') . qq|">|;
1091     print qq|<input class=submit type=submit name=action value="|
1092       . $locale->text('Storno') . qq|">| unless ($form->{storno});
1093     print qq|<input class=submit type=submit name=action value="|
1094       . $locale->text('Post Payment') . qq|">
1095 |;
1096     print qq|<input class=submit type=submit name=action value="|
1097       . $locale->text('Use As Template') . qq|">
1098 |;
1099   if ($form->{id} && !($form->{type} eq "credit_note")) {
1100     print qq|
1101     <input class=submit type=submit name=action value="|
1102       . $locale->text('Credit Note') . qq|">
1103 |;
1104   }
1105     if ($form->{radier}) {
1106     print qq|
1107     <input class=submit type=submit name=action value="|
1108       . $locale->text('Delete') . qq|">
1109 |;
1110   }
1111
1112
1113     if ($invdate > $closedto) {
1114       print qq|
1115       <input class=submit type=submit name=action value="|
1116         . $locale->text('Order') . qq|">
1117 |;
1118     }
1119
1120   } else {
1121     if ($invdate > $closedto) {
1122       print qq|<input class=submit type=submit name=action value="|
1123         . $locale->text('Update') . qq|">
1124       <input class=submit type=submit name=action value="|
1125         . $locale->text('Ship to') . qq|">
1126       <input class=submit type=submit name=action value="|
1127         . $locale->text('Preview') . qq|">
1128       <input class=submit type=submit name=action value="|
1129         . $locale->text('E-mail') . qq|">
1130       <input class=submit type=submit name=action value="|
1131         . $locale->text('Print and Post') . qq|">
1132       <input class=submit type=submit name=action value="|
1133         . $locale->text('Post') . qq|">|;
1134     }
1135   }
1136
1137   if ($form->{menubar}) {
1138     require "$form->{path}/menu.pl";
1139     &menubar;
1140   }
1141
1142   print qq|
1143
1144 <input type=hidden name=rowcount value=$form->{rowcount}>
1145
1146 <input name=callback type=hidden value="$form->{callback}">
1147
1148 <input type=hidden name=path value=$form->{path}>
1149 <input type=hidden name=login value=$form->{login}>
1150 <input type=hidden name=password value=$form->{password}>
1151
1152 </form>
1153
1154 </body>
1155
1156  </html>
1157 |;
1158
1159   $lxdebug->leave_sub();
1160 }
1161
1162 sub update {
1163   $lxdebug->enter_sub();
1164
1165   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1166     qw(exchangerate creditlimit creditremaining);
1167   if ($form->{second_run}) {
1168     $form->{print_and_post} = 0;
1169   }
1170
1171   $form->{update} = 1;
1172
1173   &check_name(customer);
1174
1175   &check_project;
1176
1177   $form->{exchangerate} = $exchangerate
1178     if (
1179         $form->{forex} = (
1180                        $exchangerate =
1181                          $form->check_exchangerate(
1182                          \%myconfig, $form->{currency}, $form->{invdate}, 'buy'
1183                          )));
1184
1185   for $i (1 .. $form->{paidaccounts}) {
1186     if ($form->{"paid_$i"}) {
1187       map {
1188         $form->{"${_}_$i"} =
1189           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1190       } qw(paid exchangerate);
1191
1192       $form->{"exchangerate_$i"} = $exchangerate
1193         if (
1194             $form->{"forex_$i"} = (
1195                  $exchangerate =
1196                    $form->check_exchangerate(
1197                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
1198                    )));
1199     }
1200   }
1201
1202   $i            = $form->{rowcount};
1203   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1204
1205   # if last row empty, check the form otherwise retrieve new item
1206   if (   ($form->{"partnumber_$i"} eq "")
1207       && ($form->{"description_$i"} eq "")
1208       && ($form->{"partsgroup_$i"}  eq "")) {
1209
1210     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1211     &check_form;
1212
1213   } else {
1214
1215     IS->retrieve_item(\%myconfig, \%$form);
1216
1217     $rows = scalar @{ $form->{item_list} };
1218
1219     $form->{"discount_$i"} =
1220       $form->format_amount(\%myconfig, $form->{discount} * 100);
1221
1222     if ($rows) {
1223       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
1224
1225       if ($rows > 1) {
1226
1227         &select_item;
1228         exit;
1229
1230       } else {
1231
1232         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1233
1234         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
1235           qw(partnumber description unit);
1236         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1237           keys %{ $form->{item_list}[0] };
1238         if ($form->{"part_payment_id_$i"} ne "") {
1239           $form->{payment_id} = $form->{"part_payment_id_$i"};
1240         }
1241
1242         if ($form->{"not_discountable_$i"}) {
1243           $form->{"discount_$i"} = 0;
1244         }
1245
1246         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1247         ($dec) = ($s =~ /\.(\d+)/);
1248         $dec           = length $dec;
1249         $decimalplaces = ($dec > 2) ? $dec : 2;
1250
1251         if ($sellprice) {
1252           $form->{"sellprice_$i"} = $sellprice;
1253         } else {
1254
1255           # if there is an exchange rate adjust sellprice
1256           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1257           $form->{"sellprice_$i"} /= $exchangerate;
1258         }
1259
1260         $form->{"listprice_$i"} /= $exchangerate;
1261
1262         $amount =
1263           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1264           (1 - $form->{"discount_$i"} / 100);
1265         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1266         map { $form->{"${_}_base"} += $amount }
1267           (split / /, $form->{"taxaccounts_$i"});
1268         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1269           split / /, $form->{"taxaccounts_$i"}
1270           if !$form->{taxincluded};
1271
1272         $form->{creditremaining} -= $amount;
1273
1274         map {
1275           $form->{"${_}_$i"} =
1276             $form->format_amount(\%myconfig, $form->{"${_}_$i"},
1277                                  $decimalplaces)
1278         } qw(sellprice listprice);
1279
1280         $form->{"qty_$i"} =
1281           $form->format_amount(\%myconfig, $form->{"qty_$i"});
1282
1283         if ($lizenzen) {
1284           if ($form->{"inventory_accno_$i"} ne "") {
1285             $form->{"lizenzen_$i"} = qq|<option></option>|;
1286             foreach $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
1287               $form->{"lizenzen_$i"} .=
1288                 qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
1289             }
1290             $form->{"lizenzen_$i"} .=
1291               qq|<option value=-1>Neue Lizenz</option>|;
1292           }
1293         }
1294
1295         # get pricegroups for parts
1296         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1297
1298         # build up html code for prices_$i
1299         &set_pricegroup($i);
1300       }
1301
1302       &display_form;
1303
1304     } else {
1305
1306       # ok, so this is a new part
1307       # ask if it is a part or service item
1308
1309       if (   $form->{"partsgroup_$i"}
1310           && ($form->{"partsnumber_$i"} eq "")
1311           && ($form->{"description_$i"} eq "")) {
1312         $form->{rowcount}--;
1313         $form->{"discount_$i"} = "";
1314         &display_form;
1315           } else {
1316
1317         $form->{"id_$i"}   = 0;
1318         $form->{"unit_$i"} = $locale->text('ea');
1319
1320         &new_item;
1321
1322       }
1323     }
1324   }
1325   $lxdebug->leave_sub();
1326 }
1327 sub post_payment {
1328   $lxdebug->enter_sub();
1329   for $i (1 .. $form->{paidaccounts}) {
1330     if ($form->{"paid_$i"}) {
1331       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1332
1333       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1334
1335       $form->error($locale->text('Cannot post payment for a closed period!'))
1336         if ($datepaid <= $closedto);
1337
1338       if ($form->{currency} ne $form->{defaultcurrency}) {
1339         $form->{"exchangerate_$i"} = $form->{exchangerate}
1340           if ($invdate == $datepaid);
1341         $form->isblank("exchangerate_$i",
1342                        $locale->text('Exchangerate for payment missing!'));
1343       }
1344     }
1345   }
1346
1347   ($form->{AR})      = split /--/, $form->{AR};
1348   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1349   relink_accounts();
1350   $form->redirect($locale->text(' Payment posted!'))
1351       if (IS->post_payment(\%myconfig, \%$form));
1352     $form->error($locale->text('Cannot post payment!'));
1353
1354
1355   $lxdebug->leave_sub();
1356 }
1357
1358 sub post {
1359   $lxdebug->enter_sub();
1360   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
1361   $form->isblank("customer", $locale->text('Customer missing!'));
1362
1363   # if oldcustomer ne customer redo form
1364   if (&check_name(customer)) {
1365     &update;
1366     exit;
1367   }
1368   if ($form->{second_run}) {
1369     $form->{print_and_post} = 0;
1370   }
1371
1372   &validate_items;
1373
1374   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1375   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
1376
1377   $form->error($locale->text('Cannot post invoice for a closed period!'))
1378     if ($invdate <= $closedto);
1379
1380   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1381     if ($form->{currency} ne $form->{defaultcurrency});
1382
1383   for $i (1 .. $form->{paidaccounts}) {
1384     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1385       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1386
1387       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1388
1389       $form->error($locale->text('Cannot post payment for a closed period!'))
1390         if ($datepaid <= $closedto);
1391
1392       if ($form->{currency} ne $form->{defaultcurrency}) {
1393         $form->{"exchangerate_$i"} = $form->{exchangerate}
1394           if ($invdate == $datepaid);
1395         $form->isblank("exchangerate_$i",
1396                        $locale->text('Exchangerate for payment missing!'));
1397       }
1398     }
1399   }
1400
1401   ($form->{AR})      = split /--/, $form->{AR};
1402   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1403
1404   $form->{label} = $locale->text('Invoice');
1405
1406   $form->{id} = 0 if $form->{postasnew};
1407
1408   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
1409   if (!$form->{invnumber} || $form->{postasnew}) {
1410     if ($form->{type} eq "credit_note") {
1411       $form->{invnumber} = $form->update_defaults(\%myconfig, "cnnumber");
1412     } else {
1413       $form->{invnumber} = $form->update_defaults(\%myconfig, "invnumber");
1414     }
1415   }
1416   relink_accounts();
1417   if ($print_post) {
1418     if (!(IS->post_invoice(\%myconfig, \%$form))) {
1419       $form->error($locale->text('Cannot post invoice!'));
1420     }
1421   } else {
1422     $form->redirect(
1423             $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
1424       if (IS->post_invoice(\%myconfig, \%$form));
1425     $form->error($locale->text('Cannot post invoice!'));
1426   }
1427
1428   $lxdebug->leave_sub();
1429 }
1430
1431 sub print_and_post {
1432   $lxdebug->enter_sub();
1433
1434   $old_form               = new Form;
1435   $print_post             = 1;
1436   $form->{print_and_post} = 1;
1437   &post();
1438
1439   &edit();
1440   $lxdebug->leave_sub();
1441
1442 }
1443
1444 sub use_as_template {
1445   $lxdebug->enter_sub();
1446
1447   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);
1448   $form->{paidaccounts} = 1;
1449   $form->{rowcount}--;
1450   $form->{invdate} = $form->current_date(\%myconfig);
1451   &display_form;
1452
1453   $lxdebug->leave_sub();
1454 }
1455
1456 sub storno {
1457   $lxdebug->enter_sub();
1458
1459   if ($form->{storno}) {
1460     $form->error($locale->text('Cannot storno storno invoice!'));
1461   }
1462
1463   $form->{storno_id} = $form->{id};
1464   $form->{storno} = 1;
1465   $form->{id} = "";
1466   $form->{invnumber} = "Storno zu " . $form->{invnumber};
1467
1468   &post();
1469   $lxdebug->leave_sub();
1470
1471 }
1472
1473 sub preview {
1474   $lxdebug->enter_sub();
1475
1476   $form->{preview} = 1;
1477   $old_form = new Form;
1478   for (keys %$form) { $old_form->{$_} = $form->{$_} }
1479   $old_form->{rowcount}++;
1480
1481   &print_form($old_form);
1482   $lxdebug->leave_sub();
1483
1484 }
1485
1486 sub delete {
1487   $lxdebug->enter_sub();
1488   if ($form->{second_run}) {
1489     $form->{print_and_post} = 0;
1490   }
1491   $form->header;
1492
1493   print qq|
1494 <body>
1495
1496 <form method=post action=$form->{script}>
1497 |;
1498
1499   # delete action variable
1500   map { delete $form->{$_} } qw(action header);
1501
1502   foreach $key (keys %$form) {
1503     $form->{$key} =~ s/\"/&quot;/g;
1504     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1505   }
1506
1507   print qq|
1508 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1509
1510 <h4>|
1511     . $locale->text('Are you sure you want to delete Invoice Number')
1512     . qq| $form->{invnumber}
1513 </h4>
1514
1515 <p>
1516 <input name=action class=submit type=submit value="|
1517     . $locale->text('Yes') . qq|">
1518 </form>
1519 |;
1520
1521   $lxdebug->leave_sub();
1522 }
1523
1524 sub credit_note {
1525   $lxdebug->enter_sub();
1526
1527   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
1528   $form->{duedate} =
1529     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1530
1531   $form->{id}     = '';
1532   $form->{rowcount}--;
1533   $form->{shipto} = 1;
1534
1535
1536   $form->{title}  = $locale->text('Add Credit Note');
1537   $form->{script} = 'is.pl';
1538   $script         = "is";
1539   $buysell        = 'buy';
1540   
1541
1542   # bo creates the id, reset it
1543   map { delete $form->{$_} }
1544     qw(id invnumber subject message cc bcc printed emailed queued);
1545   $form->{ $form->{vc} } =~ s/--.*//g;
1546   $form->{type} = "credit_note";
1547
1548
1549   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1550
1551   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1552     qw(creditlimit creditremaining);
1553
1554   $currency = $form->{currency};
1555   &invoice_links;
1556
1557   $form->{currency}     = $currency;
1558   $form->{exchangerate} = "";
1559   $form->{forex}        = "";
1560   $form->{exchangerate} = $exchangerate
1561     if (
1562         $form->{forex} = (
1563                     $exchangerate =
1564                       $form->check_exchangerate(
1565                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
1566                       )));
1567
1568   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1569
1570   &prepare_invoice;
1571
1572
1573   &display_form;
1574
1575   $lxdebug->leave_sub();
1576 }
1577
1578 sub yes {
1579   $lxdebug->enter_sub();
1580
1581   $form->redirect($locale->text('Invoice deleted!'))
1582     if (IS->delete_invoice(\%myconfig, \%$form, $spool));
1583   $form->error($locale->text('Cannot delete invoice!'));
1584
1585   $lxdebug->leave_sub();
1586 }