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