e2b99cb7418b1cbebbe0972a1012263ca965229c
[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} = 1;
571   $jsscript = "";
572   if ($form->{type} eq "credit_note") {
573     $button1 = qq|
574       <td><input name="invdate" id="invdate" size="11" title="$myconfig{dateformat}" value="$form->{invdate}" onBlur=\"check_right_date_format(this)\">
575        <input type="button" name="invdate" id="trigger1" value="|
576       . $locale->text('button') . qq|"></td>|;
577
578     #write Trigger
579     $jsscript =
580       Form->write_trigger(\%myconfig,     "1",
581                           "invdate",      "BL",
582                           "trigger1");
583   } else {
584     $button1 = qq|
585       <td><input name="invdate" id="invdate" size="11" title="$myconfig{dateformat}" value="$form->{invdate}" onBlur=\"check_right_date_format(this)\">
586        <input type="button" name="invdate" id="trigger1" value="|
587       . $locale->text('button') . qq|"></td>
588       |;
589     $button2 = qq|
590       <td width="13"><input name="duedate" id="duedate" size="11" title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\">
591        <input type="button" name="duedate" id="trigger2" value="|
592       . $locale->text('button') . qq|"></td></td>
593     |;
594     $button3 = qq|
595       <td width="13"><input name="deliverydate" id="deliverydate" size="11" title="$myconfig{dateformat}" value="$form->{deliverydate}" onBlur=\"check_right_date_format(this)\">
596        <input type="button" name="deliverydate" id="trigger3" value="|
597       . $locale->text('button') . qq|"></td></td>
598     |;
599
600     #write Trigger
601     $jsscript =
602       Form->write_trigger(\%myconfig,     "3",
603                           "invdate",      "BL",
604                           "trigger1",     "duedate",
605                           "BL",           "trigger2",
606                           "deliverydate", "BL",
607                           "trigger3");
608   }
609
610   if ($form->{resubmit} && ($form->{format} eq "html")) {
611     $onload =
612       qq|window.open('about:blank','Beleg'); document.invoice.target = 'Beleg';document.invoice.submit()|;
613   } elsif ($form->{resubmit}) {
614     $onload = qq|document.invoice.submit()|;
615   } else {
616     $onload = "focus()";
617   }
618   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
619   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
620   $credittext = $locale->text('Credit Limit exceeded!!!');
621   if ($creditwarning) {
622     $onload = qq|alert('$credittext')|;
623   }
624
625   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
626
627   $jsscript .=
628     $form->write_trigger(\%myconfig, 2,
629                          "orddate", "BL", "trigger_orddate",
630                          "quodate", "BL", "trigger_quodate");
631   # show history button js
632   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
633   #/show history button js
634   $form->header;
635
636   print qq|
637 <body onLoad="$onload">
638 <script type="text/javascript" src="js/common.js"></script>
639 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
640 <script type="text/javascript" src="js/vendor_selection.js"></script>
641 <script type="text/javascript" src="js/calculate_qty.js"></script>
642
643 <form method="post" name="invoice" action="$form->{script}">
644 | ;
645 map({print $cgi->hidden("-name" => $_ , "-value" => $form->{$_});} 
646      qw(id action type media format queued printed emailed title vc discount 
647         creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id)) ;
648 print ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") ;
649 print qq|
650
651 <input type="hidden" name="lizenzen" value="$lizenzen">
652
653 <div class="listtop" width="100%">$form->{title}</div>
654
655 <table width="100%">
656   <tr>
657     <td valign="top">
658       <table>
659         <tr>
660           $customers
661           <input type="hidden" name="customer_klass" value="$form->{customer_klass}">
662           <input type="hidden" name="customer_id" value="$form->{customer_id}">
663           <input type="hidden" name="oldcustomer" value="$form->{oldcustomer}">
664           <input type="hidden" name="selectcustomer" value="1">
665         </tr>
666         $contact
667         $shipto
668         <tr>
669           <td align="right">| . $locale->text('Credit Limit') . qq|</td>
670           <td>$form->{creditlimit}; | . $locale->text('Remaining') . qq| <span class="plus$n">$form->{creditremaining}</span></td>
671         </tr>
672         $dunning
673         $business
674               <tr>
675                 <th align="right" nowrap>| . $locale->text('Record in') . qq|</th>
676                 <td colspan="3"><select name="AR" style="width:280px;">$form->{selectAR}</select></td>
677                 <input type="hidden" name="selectAR" value="$form->{selectAR}">
678               </tr>
679               $taxzone
680               $department
681               <tr>
682     $currencies
683                 <input type="hidden" name="fxgain_accno" value="$form->{fxgain_accno}">
684                 <input type="hidden" name="fxloss_accno" value="$form->{fxloss_accno}">
685                 $exchangerate
686               </tr>
687               <tr>
688                 <th align="right" nowrap>| . $locale->text('Shipping Point') . qq|</th>
689                 <td colspan="3"> | .
690                 $cgi->textfield("-name" => "shippingpoint", "-size" => 35, "-value" => $form->{shippingpoint}) .
691           qq|</tr>
692               <tr>
693                 <th align="right" nowrap>| . $locale->text('Ship via') . qq|</th>
694                 <td colspan="3"><input name="shipvia" size="35" value="$form->{shipvia}"></td>
695               </tr>
696               <tr>
697                 <th align="right">| . $locale->text('Transaction description') . qq|</th>
698                 <td colspan="3">| . $cgi->textfield("-name" => "transaction_description", "-size" => 35, "-value" => $form->{transaction_description}) . qq|</td>
699               </tr>|;
700 #               <tr>
701 #                 <td colspan=4>
702 #                   <table>
703 #                     <tr>
704 #                       <td colspan=2>
705 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
706 #                       </td>
707 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
708 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
709 #                     </tr>
710 #                     <tr>
711 #                       <td colspan=2>
712 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
713 #                       </td>
714 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
715 #                       <input size=45 id=delivery_vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
716 #                     </tr>
717 #                   </table>
718 #                 </td>
719 #               </tr>
720 print qq|           </table>
721           </td>
722           <td align="right" valign="top">
723             <table>
724               $employees
725         $salesman
726 |;
727 if ($form->{type} eq "credit_note") {
728 print qq|     <tr>
729                 <th align="right" nowrap>| . $locale->text('Credit Note Number') . qq|</th>
730                 <td><input name="invnumber" size="11" value="$form->{invnumber}"></td>
731               </tr>
732               <tr>
733                 <th align="right">| . $locale->text('Credit Note Date') . qq|</th>
734                 $button1
735               </tr>|;
736 } else {
737 print qq|     <tr>
738                 <th align="right" nowrap>| . $locale->text('Invoice Number') . qq|</th>
739                 <td><input name="invnumber" size="11" value="$form->{invnumber}"></td>
740               </tr>
741               <tr>
742                 <th align="right">| . $locale->text('Invoice Date') . qq|</th>
743                 $button1
744               </tr>
745               <tr>
746                 <th align="right">| . $locale->text('Due Date') . qq|</th>
747                 $button2
748               </tr>
749               <tr>
750                 <th align="right">| . $locale->text('Delivery Date') . qq|</th>
751                 $button3
752               </tr>|;
753 }
754 print qq|     <tr>
755                 <th align="right" nowrap>| . $locale->text('Order Number') . qq|</th>
756                 <td><input name="ordnumber" size="11" value="$form->{ordnumber}"></td>
757               </tr>
758         <tr>
759           <th align="right" nowrap>| . $locale->text('Order Date') . qq|</th>
760           <td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|" onBlur=\"check_right_date_format(this)\">
761            <input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
762         </tr>
763               <tr>
764                 <th align="right" nowrap>| . $locale->text('Quotation Number') . qq|</th>
765                 <td><input name="quonumber" size="11" value="$form->{quonumber}"></td>
766               </tr>
767         <tr>
768           <th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th>
769           <td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|" onBlur=\"check_right_date_format(this)\">
770            <input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
771         </tr>
772               <tr>
773                 <th align="right" nowrap>| . $locale->text('Customer Order Number') . qq|</th>
774                 <td><input name="cusordnumber" size="11" value="$form->{cusordnumber}"></td>
775               </tr>
776               <tr>
777           <th align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
778           <td>$globalprojectnumber</td>
779               </tr>
780             </table>
781           </td>
782         </tr>
783       </table>
784     </td>
785   </tr>
786   <tr>
787     <td>
788     </td>
789   </tr>
790 | . 
791 $jsscript
792 . qq|
793 <!-- shipto are in hidden variables -->
794 | ;
795 map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } 
796        qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry  shiptocontact shiptophone shiptofax shiptoemail shiptodepartment_1 shiptodepartment_2));
797 print qq|<!-- email variables --> |;
798 map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } 
799     qw(message email subject cc bcc taxaccounts));
800 print qq|<input type="hidden" name="webdav" value="| . $webdav . qq|">|;
801
802   foreach $item (split(/ /, $form->{taxaccounts})) {
803     map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } 
804     ("${item}_rate", "${item}_description", "${item}_taxnumber"));
805   }
806   $lxdebug->leave_sub();
807 }
808
809 sub form_footer {
810   $lxdebug->enter_sub();
811
812   $form->{invtotal} = $form->{invsubtotal};
813
814   if (($rows = $form->numtextrows($form->{notes}, 26, 8)) < 2) {
815     $rows = 2;
816   }
817   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
818     $introws = 2;
819   }
820   $rows = ($rows > $introws) ? $rows : $introws;
821   $notes =
822     qq|<textarea name="notes" rows="$rows" cols="26" wrap="soft">$form->{notes}</textarea>|;
823   $intnotes =
824     qq|<textarea name="intnotes" rows="$rows" cols="35" wrap="soft">$form->{intnotes}</textarea>|;
825  
826   $form->{taxincluded} = ($form->{taxincluded} ? "checked" : "");
827
828   $taxincluded = "";
829   if ($form->{taxaccounts}) {
830     $taxincluded = qq|
831                 <input name="taxincluded" class="checkbox" type="checkbox" $form->{taxincluded}> <b>|
832       . $locale->text('Tax Included') . qq|</b><br><br>|;
833   }
834
835   if (!$form->{taxincluded}) {
836
837     foreach $item (split / /, $form->{taxaccounts}) {
838       if ($form->{"${item}_base"}) {
839         $form->{"${item}_total"} =
840           $form->round_amount(
841                              $form->{"${item}_base"} * $form->{"${item}_rate"},
842                              2);
843         $form->{invtotal} += $form->{"${item}_total"};
844         $form->{"${item}_total"} =
845           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
846
847         $tax .= qq|
848               <tr>
849                 <th align="right">$form->{"${item}_description"}&nbsp;|
850                                     . $form->{"${item}_rate"} * 100 .qq|%</th>
851                 <td align="right">$form->{"${item}_total"}</td>
852               </tr>
853 |;
854       }
855     }
856
857     $form->{invsubtotal} =
858       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
859
860     $subtotal = qq|
861               <tr>
862                 <th align="right">| . $locale->text('Subtotal') . qq|</th>
863                 <td align="right">$form->{invsubtotal}</td>
864               </tr>
865 |;
866
867   }
868
869   if ($form->{taxincluded}) {
870     foreach $item (split / /, $form->{taxaccounts}) {
871       if ($form->{"${item}_base"}) {
872         $form->{"${item}_total"} =
873           $form->round_amount(
874                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
875                               (1 + $form->{"${item}_rate"})
876                            ),
877                            2);
878         $form->{"${item}_netto"} =
879           $form->round_amount(
880                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
881                           2);
882         $form->{"${item}_total"} =
883           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
884         $form->{"${item}_netto"} =
885           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
886
887         $tax .= qq|
888               <tr>
889                 <th align="right">Enthaltene $form->{"${item}_description"}&nbsp;|
890                                     . $form->{"${item}_rate"} * 100 .qq|%</th>
891                 <td align="right">$form->{"${item}_total"}</td>
892               </tr>
893               <tr>
894                 <th align="right">Nettobetrag</th>
895                 <td align="right">$form->{"${item}_netto"}</td>
896               </tr>
897 |;
898       }
899     }
900
901   }
902
903   $form->{oldinvtotal} = $form->{invtotal};
904   $form->{invtotal}    =
905     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
906
907   print qq|
908   <tr>
909     <td>
910       <table width="100%">
911         <tr valign="bottom">
912           <td>
913             <table>
914               <tr>
915                 <th align="left">| . $locale->text('Notes') . qq|</th>
916                 <th align="left">| . $locale->text('Internal Notes') . qq|</th>
917                 <th align="right">| . $locale->text('Payment Terms') . qq|</th>
918               </tr>
919               <tr valign="top">
920                 <td>$notes</td>
921                 <td>$intnotes</td>
922                 <td><select name="payment_id" onChange="if (this.value) set_duedate(['payment_id__' + this.value],['duedate'])">$payment
923                 </select></td>
924               </tr>
925             </table>
926           </td>
927           <td align="right" width="100%">
928             $taxincluded
929             <table width="100%">
930               $subtotal
931               $tax
932               <tr>
933                 <th align="right">| . $locale->text('Total') . qq|</th>
934                 <td align="right">$form->{invtotal}</td>
935               </tr>
936             </table>
937           </td>
938         </tr>
939       </table>
940     </td>
941   </tr>
942 |;
943   if ($webdav) {
944     $webdav_list = qq|
945   <tr>
946     <td><hr size="3" noshade></td>
947   </tr>
948   <tr>
949     <th class="listtop" align="left">Dokumente im Webdav-Repository</th>
950   </tr>
951     <table width="100%">
952       <td align="left" width="30%"><b>Dateiname</b></td>
953       <td align="left" width="70%"><b>Webdavlink</b></td>
954 |;
955     foreach $file (keys %{ $form->{WEBDAV} }) {
956       $webdav_list .= qq|
957       <tr>
958         <td align="left">$file</td>
959         <td align="left"><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
960       </tr>
961 |;
962     }
963     $webdav_list .= qq|
964     </table>
965   </tr>
966 |;
967
968     print $webdav_list;
969   }
970 if ($form->{type} eq "credit_note") {
971   print qq|
972   <tr>
973     <td>
974       <table width="100%">
975         <tr class="listheading">
976           <th colspan="6" class="listheading">|
977     . $locale->text('Payments') . qq|</th>
978         </tr>
979 |;
980 } else {
981   print qq|
982   <tr>
983     <td>
984       <table width="100%">
985         <tr class="listheading">
986           <th colspan="6" class="listheading">|
987     . $locale->text('Incoming Payments') . qq|</th>
988         </tr>
989 |;
990 }
991
992   if ($form->{currency} eq $form->{defaultcurrency}) {
993     @column_index = qw(datepaid source memo paid AR_paid);
994   } else {
995     @column_index = qw(datepaid source memo paid exchangerate AR_paid);
996   }
997
998   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
999   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
1000   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
1001   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
1002   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
1003   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
1004
1005   print "
1006         <tr>
1007 ";
1008   map { print "$column_data{$_}\n" } @column_index;
1009   print "
1010         </tr>
1011 ";
1012
1013   my @triggers = ();
1014
1015   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
1016   for $i (1 .. $form->{paidaccounts}) {
1017
1018     print "
1019         <tr>\n";
1020
1021     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
1022     $form->{"selectAR_paid_$i"} =~
1023       s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
1024
1025     # format amounts
1026     $totalpaid += $form->{"paid_$i"};
1027     if ($form->{"paid_$i"}) {
1028       $form->{"paid_$i"} =
1029         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
1030     }
1031     $form->{"exchangerate_$i"} =
1032       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
1033
1034     $exchangerate = qq|&nbsp;|;
1035     if ($form->{currency} ne $form->{defaultcurrency}) {
1036       if ($form->{"forex_$i"}) {
1037         $exchangerate = qq|<input type="hidden" name="exchangerate_$i" value="$form->{"exchangerate_$i"}">$form->{"exchangerate_$i"}|;
1038       } else {
1039         $exchangerate = qq|<input name="exchangerate_$i" size="10" value="$form->{"exchangerate_$i"}">|;
1040       }
1041     }
1042
1043     $exchangerate .= qq|<input type="hidden" name="forex_$i" value="$form->{"forex_$i"}">|;
1044
1045     $column_data{"paid_$i"} =
1046       qq|<td align="center"><input name="paid_$i" size="11" value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
1047     $column_data{"exchangerate_$i"} = qq|<td align="center">$exchangerate</td>|;
1048     $column_data{"AR_paid_$i"}      =
1049       qq|<td align="center"><select name="AR_paid_$i">$form->{"selectAR_paid_$i"}</select></td>|;
1050     $column_data{"datepaid_$i"} =
1051       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)\">
1052          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
1053     $column_data{"source_$i"} =
1054       qq|<td align=center><input name="source_$i" size="11" value="$form->{"source_$i"}"></td>|;
1055     $column_data{"memo_$i"} =
1056       qq|<td align="center"><input name="memo_$i" size="11" value="$form->{"memo_$i"}"></td>|;
1057
1058     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
1059     print "
1060         </tr>\n";
1061     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
1062   }
1063
1064   map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } qw(paidaccounts selectAR_paid oldinvtotal)); 
1065   print qq|<input type="hidden" name="oldtotalpaid" value="$totalpaid">
1066     </table>
1067     </td>
1068   </tr>
1069   <tr>
1070     <td><hr size="3" noshade></td>
1071   </tr>
1072   <tr>
1073     <td>
1074 |;
1075
1076   print_options();
1077
1078   print qq|
1079     </td>
1080   </tr>
1081 </table>
1082 |;
1083
1084   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
1085   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1086
1087   if ($form->{id}) {
1088     my $show_storno = !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar");
1089
1090     print qq|
1091     <input class="submit" type="submit" accesskey="u" name="action" id="update_button" value="|
1092       . $locale->text('Update') . qq|">
1093     <input class="submit" type="submit" name="action" value="|
1094       . $locale->text('Ship to') . qq|">
1095     <input class="submit" type="submit" name="action" value="|
1096       . $locale->text('Print') . qq|">
1097     <input class="submit" type="submit" name="action" value="|
1098       . $locale->text('E-mail') . qq|"> |;
1099     print qq|<input class="submit" type="submit" name="action" value="|
1100       . $locale->text('Storno') . qq|"> | if ($show_storno);
1101     print qq|<input class="submit" type="submit" name="action" value="|
1102       . $locale->text('Post Payment') . qq|">
1103 |;
1104     print qq|<input class="submit" type="submit" name="action" value="|
1105       . $locale->text('Use As Template') . qq|">
1106 |;
1107   if ($form->{id} && !($form->{type} eq "credit_note")) {
1108     print qq|
1109     <input class="submit" type="submit" name="action" value="|
1110       . $locale->text('Credit Note') . qq|">
1111 |;
1112   }
1113     if ($form->{radier}) {
1114     print qq|
1115     <input class="submit" type="submit" name="action" value="|
1116       . $locale->text('Delete') . qq|">
1117 |;
1118   }
1119
1120
1121     if ($invdate > $closedto) {
1122       print qq|
1123       <input class="submit" type="submit" name="action" value="|
1124         . $locale->text('Order') . qq|">
1125 |;
1126     }
1127
1128   } else {
1129     if ($invdate > $closedto) {
1130       print qq|<input class="submit" type="submit" name="action" id="update_button" value="|
1131         . $locale->text('Update') . qq|">
1132       <input class="submit" type="submit" name="action" value="|
1133         . $locale->text('Ship to') . qq|">
1134       <input class="submit" type="submit" name="action" value="|
1135         . $locale->text('Preview') . qq|">
1136       <input class="submit" type="submit" name="action" value="|
1137         . $locale->text('E-mail') . qq|">
1138       <input class="submit" type="submit" name="action" value="|
1139         . $locale->text('Print and Post') . qq|">
1140       <input class="submit" type="submit" name="action" value="|
1141         . $locale->text('Post') . qq|"> | .
1142         NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'),
1143                          '-class' => 'submit'));
1144     }
1145   }
1146
1147   # button for saving history
1148   if($form->{id} ne "") {
1149     print qq|
1150           <input type="button" class="submit" onclick="set_history_window(|
1151           . Q($form->{id})
1152           . qq|);" name="history" id="history" value="|
1153           . $locale->text('history')
1154           . qq|">|;
1155   }
1156   # /button for saving history
1157
1158
1159   print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
1160     qq|
1161
1162 <input type="hidden" name="rowcount" value="$form->{rowcount}">
1163 | .
1164 $cgi->hidden("-name" => "callback", "-value" => $form->{callback}) 
1165 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
1166 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}]);
1167 map({ print $cgi->hidden("-name" => $_ , "-value" => $form->{$_});} qw(login password));
1168 print qq|
1169 </form>
1170
1171 </body>
1172
1173  </html>
1174 |;
1175
1176   $lxdebug->leave_sub();
1177 }
1178
1179 sub update {
1180   $lxdebug->enter_sub();
1181
1182   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1183     qw(exchangerate creditlimit creditremaining);
1184   if ($form->{second_run}) {
1185     $form->{print_and_post} = 0;
1186   }
1187
1188   
1189   if($form->{taxincluded}) {
1190     $taxincluded = "checked";
1191   }
1192   $form->{update} = 1;
1193
1194   &check_name(customer);
1195
1196   if(!$form->{taxincluded}) {
1197     $form->{taxincluded} = $taxincluded;
1198   }
1199
1200
1201   $form->{exchangerate} = $exchangerate
1202     if (
1203         $form->{forex} = (
1204                        $exchangerate =
1205                          $form->check_exchangerate(
1206                          \%myconfig, $form->{currency}, $form->{invdate}, 'buy'
1207                          )));
1208
1209   for $i (1 .. $form->{paidaccounts}) {
1210     if ($form->{"paid_$i"}) {
1211       map {
1212         $form->{"${_}_$i"} =
1213           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1214       } qw(paid exchangerate);
1215
1216       $form->{"exchangerate_$i"} = $exchangerate
1217         if (
1218             $form->{"forex_$i"} = (
1219                  $exchangerate =
1220                    $form->check_exchangerate(
1221                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
1222                    )));
1223     }
1224   }
1225
1226   $i            = $form->{rowcount};
1227   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1228
1229   # if last row empty, check the form otherwise retrieve new item
1230   if (   ($form->{"partnumber_$i"} eq "")
1231       && ($form->{"description_$i"} eq "")
1232       && ($form->{"partsgroup_$i"}  eq "")) {
1233
1234     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1235     &check_form;
1236
1237   } else {
1238
1239     IS->retrieve_item(\%myconfig, \%$form);
1240
1241     $rows = scalar @{ $form->{item_list} };
1242
1243     $form->{"discount_$i"} =
1244       $form->format_amount(\%myconfig, $form->{discount} * 100);
1245
1246     if ($rows) {
1247       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
1248
1249       if ($rows > 1) {
1250
1251         &select_item;
1252         exit;
1253
1254       } else {
1255
1256         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1257
1258         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
1259           qw(partnumber description unit);
1260         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1261           keys %{ $form->{item_list}[0] };
1262         if ($form->{"part_payment_id_$i"} ne "") {
1263           $form->{payment_id} = $form->{"part_payment_id_$i"};
1264         }
1265
1266         if ($form->{"not_discountable_$i"}) {
1267           $form->{"discount_$i"} = 0;
1268         }
1269
1270         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1271         ($dec) = ($s =~ /\.(\d+)/);
1272         $dec           = length $dec;
1273         $decimalplaces = ($dec > 2) ? $dec : 2;
1274
1275         if ($sellprice) {
1276           $form->{"sellprice_$i"} = $sellprice;
1277         } else {
1278
1279           # if there is an exchange rate adjust sellprice
1280           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1281           $form->{"sellprice_$i"} /= $exchangerate;
1282         }
1283
1284         $form->{"listprice_$i"} /= $exchangerate;
1285
1286         $amount =
1287           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1288           (1 - $form->{"discount_$i"} / 100);
1289         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1290         map { $form->{"${_}_base"} += $amount }
1291           (split / /, $form->{"taxaccounts_$i"});
1292         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1293           split / /, $form->{"taxaccounts_$i"}
1294           if !$form->{taxincluded};
1295
1296         $form->{creditremaining} -= $amount;
1297
1298         map {
1299           $form->{"${_}_$i"} =
1300             $form->format_amount(\%myconfig, $form->{"${_}_$i"},
1301                                  $decimalplaces)
1302         } qw(sellprice listprice);
1303
1304         $form->{"qty_$i"} =
1305           $form->format_amount(\%myconfig, $form->{"qty_$i"});
1306
1307         if ($lizenzen) {
1308           if ($form->{"inventory_accno_$i"} ne "") {
1309             $form->{"lizenzen_$i"} = qq|<option></option>|;
1310             foreach $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
1311               $form->{"lizenzen_$i"} .=
1312                 qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
1313             }
1314             $form->{"lizenzen_$i"} .=
1315               qq|<option value=-1>Neue Lizenz</option>|;
1316           }
1317         }
1318
1319         # get pricegroups for parts
1320         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1321
1322         # build up html code for prices_$i
1323         &set_pricegroup($i);
1324       }
1325
1326       &display_form;
1327
1328     } else {
1329
1330       # ok, so this is a new part
1331       # ask if it is a part or service item
1332
1333       if (   $form->{"partsgroup_$i"}
1334           && ($form->{"partsnumber_$i"} eq "")
1335           && ($form->{"description_$i"} eq "")) {
1336         $form->{rowcount}--;
1337         $form->{"discount_$i"} = "";
1338         &display_form;
1339           } else {
1340
1341         $form->{"id_$i"}   = 0;
1342         $form->{"unit_$i"} = $locale->text('ea');
1343
1344         &new_item;
1345
1346       }
1347     }
1348   }
1349   $lxdebug->leave_sub();
1350 }
1351
1352 sub post_payment {
1353   $lxdebug->enter_sub();
1354   for $i (1 .. $form->{paidaccounts}) {
1355     if ($form->{"paid_$i"}) {
1356       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1357
1358       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1359
1360       $form->error($locale->text('Cannot post payment for a closed period!'))
1361         if ($datepaid <= $closedto);
1362
1363       if ($form->{currency} ne $form->{defaultcurrency}) {
1364         $form->{"exchangerate_$i"} = $form->{exchangerate}
1365           if ($invdate == $datepaid);
1366         $form->isblank("exchangerate_$i",
1367                        $locale->text('Exchangerate for payment missing!'));
1368       }
1369     }
1370   }
1371
1372   ($form->{AR})      = split /--/, $form->{AR};
1373   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1374   relink_accounts();
1375   $form->redirect($locale->text(' Payment posted!'))
1376       if (IS->post_payment(\%myconfig, \%$form));
1377     $form->error($locale->text('Cannot post payment!'));
1378
1379
1380   $lxdebug->leave_sub();
1381 }
1382
1383 sub post {
1384   $lxdebug->enter_sub();
1385   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
1386   $form->isblank("customer", $locale->text('Customer missing!'));
1387
1388   $form->{invnumber} =~ s/^\s*//g;
1389   $form->{invnumber} =~ s/\s*$//g;
1390
1391   # if oldcustomer ne customer redo form
1392   if (&check_name(customer)) {
1393     &update;
1394     exit;
1395   }
1396   if ($form->{second_run}) {
1397     $form->{print_and_post} = 0;
1398   }
1399
1400   &validate_items;
1401
1402   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1403   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
1404
1405   $form->error($locale->text('Cannot post invoice for a closed period!'))
1406     if ($invdate <= $closedto);
1407
1408   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1409     if ($form->{currency} ne $form->{defaultcurrency});
1410
1411   for $i (1 .. $form->{paidaccounts}) {
1412     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1413       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1414
1415       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1416
1417       $form->error($locale->text('Cannot post payment for a closed period!'))
1418         if ($datepaid <= $closedto);
1419
1420       if ($form->{currency} ne $form->{defaultcurrency}) {
1421         $form->{"exchangerate_$i"} = $form->{exchangerate}
1422           if ($invdate == $datepaid);
1423         $form->isblank("exchangerate_$i",
1424                        $locale->text('Exchangerate for payment missing!'));
1425       }
1426     }
1427   }
1428
1429   ($form->{AR})      = split /--/, $form->{AR};
1430   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1431
1432   $form->{label} = $locale->text('Invoice');
1433
1434   $form->{id} = 0 if $form->{postasnew};
1435
1436   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
1437   if ($form->{postasnew}) {
1438     if ($form->{type} eq "credit_note") {
1439       undef($form->{cnnumber});
1440     } else {
1441       undef($form->{invnumber});
1442     }
1443   }
1444
1445   relink_accounts();
1446   $form->error($locale->text('Cannot post invoice!'))
1447     unless IS->post_invoice(\%myconfig, \%$form);
1448   remove_draft() if $form->{remove_draft};
1449
1450   if(!exists $form->{addition}) {
1451     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1452     $form->{addition} = $print_post     ? "PRINTED AND POSTED" :
1453                         $form->{storno} ? "STORNO"             :
1454                                           "POSTED";
1455     $form->save_history($form->dbconnect(\%myconfig));
1456   }
1457   
1458   $form->redirect( $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
1459     unless $print_post;
1460
1461   $lxdebug->leave_sub();
1462 }
1463
1464 sub print_and_post {
1465   $lxdebug->enter_sub();
1466
1467   $old_form               = new Form;
1468   $print_post             = 1;
1469   $form->{print_and_post} = 1;
1470   &post();
1471
1472   &edit();
1473   $lxdebug->leave_sub();
1474
1475 }
1476
1477 sub use_as_template {
1478   $lxdebug->enter_sub();
1479
1480   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);
1481   $form->{paidaccounts} = 1;
1482   $form->{rowcount}--;
1483   $form->{invdate} = $form->current_date(\%myconfig);
1484   &display_form;
1485
1486   $lxdebug->leave_sub();
1487 }
1488
1489 sub storno {
1490   $lxdebug->enter_sub();
1491
1492   if ($form->{storno}) {
1493     $form->error($locale->text('Cannot storno storno invoice!'));
1494   }
1495
1496   if (IS->has_storno(\%myconfig, $form, "ar")) {
1497     $form->error($locale->text("Invoice has already been storno'd!"));
1498   }
1499
1500   map({ my $key = $_; delete($form->{$key})
1501           unless (grep({ $key eq $_ } qw(login password id stylesheet type))); }
1502       keys(%{ $form }));
1503
1504   invoice_links();
1505   prepare_invoice();
1506   relink_accounts();
1507
1508   # Payments must not be recorded for the new storno invoice.
1509   $form->{paidaccounts} = 0;
1510   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
1511
1512   $form->{storno_id} = $form->{id};
1513   $form->{storno} = 1;
1514   $form->{id} = "";
1515   $form->{invnumber} = "Storno zu " . $form->{invnumber};
1516   $form->{rowcount}++;
1517
1518   post();
1519   $lxdebug->leave_sub();
1520 }
1521
1522 sub preview {
1523   $lxdebug->enter_sub();
1524
1525   $form->{preview} = 1;
1526   $old_form = new Form;
1527   for (keys %$form) { $old_form->{$_} = $form->{$_} }
1528   $old_form->{rowcount}++;
1529
1530   &print_form($old_form);
1531   $lxdebug->leave_sub();
1532
1533 }
1534
1535 sub delete {
1536   $lxdebug->enter_sub();
1537   if ($form->{second_run}) {
1538     $form->{print_and_post} = 0;
1539   }
1540   $form->header;
1541
1542   print qq|
1543 <body>
1544
1545 <form method="post" action="$form->{script}">
1546 |;
1547
1548   # delete action variable
1549   map { delete $form->{$_} } qw(action header);
1550
1551   foreach $key (keys %$form) {
1552     $form->{$key} =~ s/\"/&quot;/g;
1553     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
1554   }
1555
1556   print qq|
1557 <h2 class="confirm">| . $locale->text('Confirm!') . qq|</h2>
1558
1559 <h4>|
1560     . $locale->text('Are you sure you want to delete Invoice Number')
1561     . qq| $form->{invnumber}
1562 </h4>
1563
1564 <p>
1565 <input name="action" class="submit" type="submit" value="|
1566     . $locale->text('Yes') . qq|">
1567 </form>
1568 |;
1569
1570   $lxdebug->leave_sub();
1571 }
1572
1573 sub credit_note {
1574   $lxdebug->enter_sub();
1575
1576   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
1577   $form->{duedate} =
1578     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1579
1580   $form->{id}     = '';
1581   $form->{rowcount}--;
1582   $form->{shipto} = 1;
1583
1584
1585   $form->{title}  = $locale->text('Add Credit Note');
1586   $form->{script} = 'is.pl';
1587   $script         = "is";
1588   $buysell        = 'buy';
1589   
1590
1591   # bo creates the id, reset it
1592   map { delete $form->{$_} }
1593     qw(id invnumber subject message cc bcc printed emailed queued);
1594   $form->{ $form->{vc} } =~ s/--.*//g;
1595   $form->{type} = "credit_note";
1596
1597
1598   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1599
1600   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1601     qw(creditlimit creditremaining);
1602
1603   $currency = $form->{currency};
1604   &invoice_links;
1605
1606   $form->{currency}     = $currency;
1607   $form->{exchangerate} = "";
1608   $form->{forex}        = "";
1609   $form->{exchangerate} = $exchangerate
1610     if (
1611         $form->{forex} = (
1612                     $exchangerate =
1613                       $form->check_exchangerate(
1614                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
1615                       )));
1616
1617   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1618
1619   &prepare_invoice;
1620
1621
1622   &display_form;
1623
1624   $lxdebug->leave_sub();
1625 }
1626
1627 sub yes {
1628   $lxdebug->enter_sub();
1629   if (IS->delete_invoice(\%myconfig, \%$form, $spool)) {
1630     # saving the history
1631         if(!exists $form->{addition}) {
1632     $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; 
1633           $form->{addition} = "DELETED";
1634           $form->save_history($form->dbconnect(\%myconfig));
1635     }
1636     # /saving the history 
1637     $form->redirect($locale->text('Invoice deleted!')); 
1638   }
1639   $form->error($locale->text('Cannot delete invoice!'));
1640
1641   $lxdebug->leave_sub();
1642 }
1643
1644 sub e_mail {
1645   $lxdebug->enter_sub();
1646
1647   if (!$form->{id}) {
1648     $print_post = 1;
1649
1650     my $saved_form = save_form();
1651
1652     post();
1653
1654     my %saved_vars;
1655     map({ $saved_vars{$_} = $form->{$_}; } qw(id invnumber));
1656     restore_form($saved_form);
1657     map({ $form->{$_} = $saved_vars{$_}; } qw(id invnumber));
1658   }
1659
1660   edit_e_mail();
1661
1662   $lxdebug->leave_sub();
1663 }