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