0b4c0e5d1046066d6f4dc5472bfd785fb8ba40d2
[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 $form->{"Watchdog::taxincluded"} = 1;
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} == 1 ? "checked" : "");
850
851   $taxincluded = "";
852   if ($form->{taxaccounts}) {
853     $taxincluded = qq|
854                 <input name="taxincluded" class="checkbox" type="checkbox" value="1" $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   
1212   if($form->{taxincluded}) {
1213     $taxincluded = "checked";
1214   }
1215   $form->{update} = 1;
1216
1217   &check_name(customer);
1218
1219   if(!$form->{taxincluded}) {
1220     $form->{taxincluded} = $taxincluded;
1221   }
1222
1223
1224   $form->{exchangerate} = $exchangerate
1225     if (
1226         $form->{forex} = (
1227                        $exchangerate =
1228                          $form->check_exchangerate(
1229                          \%myconfig, $form->{currency}, $form->{invdate}, 'buy'
1230                          )));
1231
1232   for $i (1 .. $form->{paidaccounts}) {
1233     if ($form->{"paid_$i"}) {
1234       map {
1235         $form->{"${_}_$i"} =
1236           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1237       } qw(paid exchangerate);
1238
1239       $form->{"exchangerate_$i"} = $exchangerate
1240         if (
1241             $form->{"forex_$i"} = (
1242                  $exchangerate =
1243                    $form->check_exchangerate(
1244                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
1245                    )));
1246     }
1247   }
1248
1249   $i            = $form->{rowcount};
1250   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1251
1252   # if last row empty, check the form otherwise retrieve new item
1253   if (   ($form->{"partnumber_$i"} eq "")
1254       && ($form->{"description_$i"} eq "")
1255       && ($form->{"partsgroup_$i"}  eq "")) {
1256
1257     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1258     &check_form;
1259
1260   } else {
1261
1262     IS->retrieve_item(\%myconfig, \%$form);
1263
1264     $rows = scalar @{ $form->{item_list} };
1265
1266     $form->{"discount_$i"} =
1267       $form->format_amount(\%myconfig, $form->{discount} * 100);
1268
1269     if ($rows) {
1270       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
1271
1272       if ($rows > 1) {
1273
1274         &select_item;
1275         exit;
1276
1277       } else {
1278
1279         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1280
1281         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
1282           qw(partnumber description unit);
1283         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1284           keys %{ $form->{item_list}[0] };
1285         if ($form->{"part_payment_id_$i"} ne "") {
1286           $form->{payment_id} = $form->{"part_payment_id_$i"};
1287         }
1288
1289         if ($form->{"not_discountable_$i"}) {
1290           $form->{"discount_$i"} = 0;
1291         }
1292
1293         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1294         ($dec) = ($s =~ /\.(\d+)/);
1295         $dec           = length $dec;
1296         $decimalplaces = ($dec > 2) ? $dec : 2;
1297
1298         if ($sellprice) {
1299           $form->{"sellprice_$i"} = $sellprice;
1300         } else {
1301
1302           # if there is an exchange rate adjust sellprice
1303           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1304           $form->{"sellprice_$i"} /= $exchangerate;
1305         }
1306
1307         $form->{"listprice_$i"} /= $exchangerate;
1308
1309         $amount =
1310           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1311           (1 - $form->{"discount_$i"} / 100);
1312         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1313         map { $form->{"${_}_base"} += $amount }
1314           (split / /, $form->{"taxaccounts_$i"});
1315         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1316           split / /, $form->{"taxaccounts_$i"}
1317           if !$form->{taxincluded};
1318
1319         $form->{creditremaining} -= $amount;
1320
1321         map {
1322           $form->{"${_}_$i"} =
1323             $form->format_amount(\%myconfig, $form->{"${_}_$i"},
1324                                  $decimalplaces)
1325         } qw(sellprice listprice);
1326
1327         $form->{"qty_$i"} =
1328           $form->format_amount(\%myconfig, $form->{"qty_$i"});
1329
1330         if ($lizenzen) {
1331           if ($form->{"inventory_accno_$i"} ne "") {
1332             $form->{"lizenzen_$i"} = qq|<option></option>|;
1333             foreach $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
1334               $form->{"lizenzen_$i"} .=
1335                 qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
1336             }
1337             $form->{"lizenzen_$i"} .=
1338               qq|<option value=-1>Neue Lizenz</option>|;
1339           }
1340         }
1341
1342         # get pricegroups for parts
1343         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1344
1345         # build up html code for prices_$i
1346         &set_pricegroup($i);
1347       }
1348
1349       &display_form;
1350
1351     } else {
1352
1353       # ok, so this is a new part
1354       # ask if it is a part or service item
1355
1356       if (   $form->{"partsgroup_$i"}
1357           && ($form->{"partsnumber_$i"} eq "")
1358           && ($form->{"description_$i"} eq "")) {
1359         $form->{rowcount}--;
1360         $form->{"discount_$i"} = "";
1361         &display_form;
1362           } else {
1363
1364         $form->{"id_$i"}   = 0;
1365         $form->{"unit_$i"} = $locale->text('ea');
1366
1367         &new_item;
1368
1369       }
1370     }
1371   }
1372   $lxdebug->leave_sub();
1373 }
1374
1375 sub post_payment {
1376   $lxdebug->enter_sub();
1377   for $i (1 .. $form->{paidaccounts}) {
1378     if ($form->{"paid_$i"}) {
1379       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1380
1381       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1382
1383       $form->error($locale->text('Cannot post payment for a closed period!'))
1384         if ($datepaid <= $closedto);
1385
1386       if ($form->{currency} ne $form->{defaultcurrency}) {
1387         $form->{"exchangerate_$i"} = $form->{exchangerate}
1388           if ($invdate == $datepaid);
1389         $form->isblank("exchangerate_$i",
1390                        $locale->text('Exchangerate for payment missing!'));
1391       }
1392     }
1393   }
1394
1395   ($form->{AR})      = split /--/, $form->{AR};
1396   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1397   relink_accounts();
1398   $form->redirect($locale->text(' Payment posted!'))
1399       if (IS->post_payment(\%myconfig, \%$form));
1400     $form->error($locale->text('Cannot post payment!'));
1401
1402
1403   $lxdebug->leave_sub();
1404 }
1405
1406 sub post {
1407   $lxdebug->enter_sub();
1408   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
1409   $form->isblank("customer", $locale->text('Customer missing!'));
1410
1411   # if oldcustomer ne customer redo form
1412   if (&check_name(customer)) {
1413     &update;
1414     exit;
1415   }
1416   if ($form->{second_run}) {
1417     $form->{print_and_post} = 0;
1418   }
1419
1420   &validate_items;
1421
1422   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
1423   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
1424
1425   $form->error($locale->text('Cannot post invoice for a closed period!'))
1426     if ($invdate <= $closedto);
1427
1428   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1429     if ($form->{currency} ne $form->{defaultcurrency});
1430
1431   for $i (1 .. $form->{paidaccounts}) {
1432     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
1433       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
1434
1435       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1436
1437       $form->error($locale->text('Cannot post payment for a closed period!'))
1438         if ($datepaid <= $closedto);
1439
1440       if ($form->{currency} ne $form->{defaultcurrency}) {
1441         $form->{"exchangerate_$i"} = $form->{exchangerate}
1442           if ($invdate == $datepaid);
1443         $form->isblank("exchangerate_$i",
1444                        $locale->text('Exchangerate for payment missing!'));
1445       }
1446     }
1447   }
1448
1449   ($form->{AR})      = split /--/, $form->{AR};
1450   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
1451
1452   $form->{label} = $locale->text('Invoice');
1453
1454   $form->{id} = 0 if $form->{postasnew};
1455
1456   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
1457   if ($form->{postasnew}) {
1458     if ($form->{type} eq "credit_note") {
1459       undef($form->{cnnumber});
1460     } else {
1461       undef($form->{invnumber});
1462     }
1463   }
1464
1465   relink_accounts();
1466   $form->error($locale->text('Cannot post invoice!'))
1467     unless IS->post_invoice(\%myconfig, \%$form);
1468   remove_draft() if $form->{remove_draft};
1469
1470   if(!exists $form->{addition}) {
1471     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1472     $form->{addition} = $print_post     ? "PRINTED AND POSTED" :
1473                         $form->{storno} ? "STORNO"             :
1474                                           "POSTED";
1475     $form->save_history($form->dbconnect(\%myconfig));
1476   }
1477   
1478   $form->redirect( $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
1479     unless $print_post;
1480
1481   $lxdebug->leave_sub();
1482 }
1483
1484 sub print_and_post {
1485   $lxdebug->enter_sub();
1486
1487   $old_form               = new Form;
1488   $print_post             = 1;
1489   $form->{print_and_post} = 1;
1490   &post();
1491
1492   &edit();
1493   $lxdebug->leave_sub();
1494
1495 }
1496
1497 sub use_as_template {
1498   $lxdebug->enter_sub();
1499
1500   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);
1501   $form->{paidaccounts} = 1;
1502   $form->{rowcount}--;
1503   $form->{invdate} = $form->current_date(\%myconfig);
1504   &display_form;
1505
1506   $lxdebug->leave_sub();
1507 }
1508
1509 sub storno {
1510   $lxdebug->enter_sub();
1511
1512   if ($form->{storno}) {
1513     $form->error($locale->text('Cannot storno storno invoice!'));
1514   }
1515
1516   if (IS->has_storno(\%myconfig, $form, "ar")) {
1517     $form->error($locale->text("Invoice has already been storno'd!"));
1518   }
1519
1520   map({ my $key = $_; delete($form->{$key})
1521           unless (grep({ $key eq $_ } qw(login password id type))); }
1522       keys(%{ $form }));
1523
1524   &invoice_links;
1525   &prepare_invoice;
1526   relink_accounts();
1527
1528   $form->{storno_id} = $form->{id};
1529   $form->{storno} = 1;
1530   $form->{id} = "";
1531   $form->{invnumber} = "Storno zu " . $form->{invnumber};
1532
1533   &post();
1534   $lxdebug->leave_sub();
1535
1536 }
1537
1538 sub preview {
1539   $lxdebug->enter_sub();
1540
1541   $form->{preview} = 1;
1542   $old_form = new Form;
1543   for (keys %$form) { $old_form->{$_} = $form->{$_} }
1544   $old_form->{rowcount}++;
1545
1546   &print_form($old_form);
1547   $lxdebug->leave_sub();
1548
1549 }
1550
1551 sub delete {
1552   $lxdebug->enter_sub();
1553   if ($form->{second_run}) {
1554     $form->{print_and_post} = 0;
1555   }
1556   $form->header;
1557
1558   print qq|
1559 <body>
1560
1561 <form method="post" action="$form->{script}">
1562 |;
1563
1564   # delete action variable
1565   map { delete $form->{$_} } qw(action header);
1566
1567   foreach $key (keys %$form) {
1568     $form->{$key} =~ s/\"/&quot;/g;
1569     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
1570   }
1571
1572   print qq|
1573 <h2 class="confirm">| . $locale->text('Confirm!') . qq|</h2>
1574
1575 <h4>|
1576     . $locale->text('Are you sure you want to delete Invoice Number')
1577     . qq| $form->{invnumber}
1578 </h4>
1579
1580 <p>
1581 <input name="action" class="submit" type="submit" value="|
1582     . $locale->text('Yes') . qq|">
1583 </form>
1584 |;
1585
1586   $lxdebug->leave_sub();
1587 }
1588
1589 sub credit_note {
1590   $lxdebug->enter_sub();
1591
1592   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
1593   $form->{duedate} =
1594     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1595
1596   $form->{id}     = '';
1597   $form->{rowcount}--;
1598   $form->{shipto} = 1;
1599
1600
1601   $form->{title}  = $locale->text('Add Credit Note');
1602   $form->{script} = 'is.pl';
1603   $script         = "is";
1604   $buysell        = 'buy';
1605   
1606
1607   # bo creates the id, reset it
1608   map { delete $form->{$_} }
1609     qw(id invnumber subject message cc bcc printed emailed queued);
1610   $form->{ $form->{vc} } =~ s/--.*//g;
1611   $form->{type} = "credit_note";
1612
1613
1614   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1615
1616   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1617     qw(creditlimit creditremaining);
1618
1619   $currency = $form->{currency};
1620   &invoice_links;
1621
1622   $form->{currency}     = $currency;
1623   $form->{exchangerate} = "";
1624   $form->{forex}        = "";
1625   $form->{exchangerate} = $exchangerate
1626     if (
1627         $form->{forex} = (
1628                     $exchangerate =
1629                       $form->check_exchangerate(
1630                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
1631                       )));
1632
1633   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1634
1635   &prepare_invoice;
1636
1637
1638   &display_form;
1639
1640   $lxdebug->leave_sub();
1641 }
1642
1643 sub yes {
1644   $lxdebug->enter_sub();
1645   if (IS->delete_invoice(\%myconfig, \%$form, $spool)) {
1646     # saving the history
1647         if(!exists $form->{addition}) {
1648     $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; 
1649           $form->{addition} = "DELETED";
1650           $form->save_history($form->dbconnect(\%myconfig));
1651     }
1652     # /saving the history 
1653     $form->redirect($locale->text('Invoice deleted!')); 
1654   }
1655   $form->error($locale->text('Cannot delete invoice!'));
1656
1657   $lxdebug->leave_sub();
1658 }
1659
1660 sub e_mail {
1661   $lxdebug->enter_sub();
1662
1663   if (!$form->{id}) {
1664     $print_post = 1;
1665
1666     my $saved_form = save_form();
1667
1668     post();
1669
1670     my %saved_vars;
1671     map({ $saved_vars{$_} = $form->{$_}; } qw(id invnumber));
1672     restore_form($saved_form);
1673     map({ $form->{$_} = $saved_vars{$_}; } qw(id invnumber));
1674   }
1675
1676   edit_e_mail();
1677
1678   $lxdebug->leave_sub();
1679 }