c9cb92e0a559d1f4aa85386c2f99f97a37f3d26b
[kivitendo-erp.git] / bin / mozilla / oe.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-2003
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 # Order entry module
31 # Quotation module
32 #======================================================================
33 use Data::Dumper;
34
35 use SL::OE;
36 use SL::IR;
37 use SL::IS;
38 use SL::PE;
39
40 require "bin/mozilla/io.pl";
41 require "bin/mozilla/arap.pl";
42
43 1;
44
45 # end of main
46
47 # For locales.pl:
48 # $locale->text('Edit the purchase_order');
49 # $locale->text('Edit the sales_order');
50 # $locale->text('Edit the request_quotation');
51 # $locale->text('Edit the sales_quotation');
52
53 # $locale->text('Workflow purchase_order');
54 # $locale->text('Workflow sales_order');
55 # $locale->text('Workflow request_quotation');
56 # $locale->text('Workflow sales_quotation');
57
58 sub set_headings {
59   $lxdebug->enter_sub();
60
61   my ($action) = @_;
62
63   if ($form->{type} eq 'purchase_order') {
64     $form->{title}   = $action eq "edit" ?
65       $locale->text('Edit Purchase Order') :
66       $locale->text('Add Purchase Order');
67     $form->{heading} = $locale->text('Purchase Order');
68     $form->{vc}      = 'vendor';
69   }
70   if ($form->{type} eq 'sales_order') {
71     $form->{title}   = $action eq "edit" ?
72       $locale->text('Edit Sales Order') :
73       $locale->text('Add Sales Order');
74     $form->{heading} = $locale->text('Sales Order');
75     $form->{vc}      = 'customer';
76   }
77   if ($form->{type} eq 'request_quotation') {
78     $form->{title}   = $action eq "edit" ?
79       $locale->text('Edit Request for Quotation') :
80       $locale->text('Add Request for Quotation');
81     $form->{heading} = $locale->text('Request for Quotation');
82     $form->{vc}      = 'vendor';
83   }
84   if ($form->{type} eq 'sales_quotation') {
85     $form->{title}   = $action eq "edit" ?
86       $locale->text('Edit Quotation') :
87       $locale->text('Add Quotation');
88     $form->{heading} = $locale->text('Quotation');
89     $form->{vc}      = 'customer';
90   }
91
92   $lxdebug->leave_sub();
93 }
94
95 sub add {
96   $lxdebug->enter_sub();
97
98   set_headings("add");
99
100   $form->{callback} =
101     "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}"
102     unless $form->{callback};
103
104   &order_links;
105   &prepare_order;
106   &display_form;
107
108   $lxdebug->leave_sub();
109 }
110
111 sub edit {
112   $lxdebug->enter_sub();
113   # show history button
114   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
115   #/show hhistory button
116
117   $form->{simple_save} = 0;
118
119   set_headings("edit");
120
121   # editing without stuff to edit? try adding it first
122   if ($form->{rowcount}) {
123     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
124     if (!$id) {
125
126       # reset rowcount
127       undef $form->{rowcount};
128       &add;
129       $lxdebug->leave_sub();
130       return;
131     }
132   } elsif (!$form->{id}) {
133     &add;
134     $lxdebug->leave_sub();
135     return;
136   }
137
138   if ($form->{print_and_save}) {
139     $form->{action}   = "print";
140     $form->{resubmit} = 1;
141     $language_id = $form->{language_id};
142     $printer_id = $form->{printer_id};
143   }
144
145   set_headings("edit");
146
147   &order_links;
148   &prepare_order;
149   if ($form->{print_and_save}) {
150     $form->{language_id} = $language_id;
151     $form->{printer_id} = $printer_id;
152   }
153   &display_form;
154
155   $lxdebug->leave_sub();
156 }
157
158 sub order_links {
159   $lxdebug->enter_sub();
160   # get customer/vendor
161   $form->all_vc(\%myconfig, $form->{vc},
162                 ($form->{vc} eq 'customer') ? "AR" : "AP");
163
164   # retrieve order/quotation
165   $form->{webdav}   = $webdav;
166   $form->{jsscript} = 1;
167
168   my $editing = $form->{id};
169
170   OE->retrieve(\%myconfig, \%$form);
171
172   if ($form->{payment_id}) {
173     $payment_id = $form->{payment_id};
174   }
175   if ($form->{language_id}) {
176     $language_id = $form->{language_id};
177   }
178   if ($form->{taxzone_id}) {
179     $taxzone_id = $form->{taxzone_id};
180   }
181
182   $salesman_id = $form->{salesman_id} if ($editing);
183
184
185   # if multiple rowcounts (== collective order) then check if the
186   # there were more than one customer (in that case OE::retrieve removes
187   # the content from the field)
188   if (   $form->{rowcount}
189       && $form->{type} eq 'sales_order'
190       && defined $form->{customer}
191       && $form->{customer} eq '') {
192
193     #    $main::lxdebug->message(0, "Detected Edit order with concurrent customers");
194     $form->error(
195                  $locale->text(
196                    'Collective Orders only work for orders from one customer!')
197     );
198   }
199
200   $taxincluded = $form->{taxincluded};
201   $form->{shipto} = 1 if $form->{id};
202
203   if ($form->{"all_$form->{vc}"}) {
204     unless ($form->{"$form->{vc}_id"}) {
205       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
206     }
207   }
208
209   $cp_id    = $form->{cp_id};
210   $intnotes = $form->{intnotes};
211
212   # get customer / vendor
213   if ($form->{type} =~ /(purchase_order|request_quotation)/) {
214     IR->get_vendor(\%myconfig, \%$form);
215
216     #quote all_vendor Bug 133
217     foreach $ref (@{ $form->{all_vendor} }) {
218       $ref->{name} = $form->quote($ref->{name});
219     }
220
221   }
222   if ($form->{type} =~ /sales_(order|quotation)/) {
223     IS->get_customer(\%myconfig, \%$form);
224
225     #quote all_vendor Bug 133
226     foreach $ref (@{ $form->{all_customer} }) {
227       $ref->{name} = $form->quote($ref->{name});
228     }
229
230   }
231   $form->{cp_id} = $cp_id;
232
233   if ($payment_id) {
234     $form->{payment_id} = $payment_id;
235   }
236   if ($language_id) {
237     $form->{language_id} = $language_id;
238   }
239   if ($taxzone_id) {
240     $form->{taxzone_id} = $taxzone_id;
241   }
242   $form->{intnotes} = $intnotes if $intnotes;
243   ($form->{ $form->{vc} }) = split /--/, $form->{ $form->{vc} };
244   $form->{"old$form->{vc}"} =
245     qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
246
247   # build the popup menus
248   if (@{ $form->{"all_$form->{vc}"} }) {
249     $form->{ $form->{vc} } =
250       qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
251     map { $form->{"select$form->{vc}"} .=
252 "<option>$_->{name}--$_->{id}</option>\n" }
253       (@{ $form->{"all_$form->{vc}"} });
254   }
255
256   $form->{taxincluded} = $taxincluded if ($form->{id});
257
258   # departments
259   if (@{ $form->{all_departments} }) {
260     $form->{selectdepartment} = "<option>\n";
261     $form->{department}       = "$form->{department}--$form->{department_id}";
262
263     map {
264       $form->{selectdepartment} .=
265         "<option>$_->{description}--$_->{id}</option>\n"
266     } (@{ $form->{all_departments} });
267   }
268
269   $form->{employee} = "$form->{employee}--$form->{employee_id}";
270
271   # forex
272   $form->{forex} = $form->{exchangerate};
273
274   $form->{salesman_id} = $salesman_id if ($editing);
275
276   $lxdebug->leave_sub();
277 }
278
279 sub prepare_order {
280   $lxdebug->enter_sub();
281   $form->{formname} = $form->{type} unless $form->{formname};
282
283   my $i = 0;
284   foreach $ref (@{ $form->{form_details} }) {
285     $form->{rowcount} = ++$i;
286
287     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
288   }
289   for my $i (1 .. $form->{rowcount}) {
290     if ($form->{id}) {
291       $form->{"discount_$i"} =
292         $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
293     } else {
294       $form->{"discount_$i"} =
295         $form->format_amount(\%myconfig, $form->{"discount_$i"});
296     }
297     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
298     $dec           = length $dec;
299     $decimalplaces = ($dec > 2) ? $dec : 2;
300
301     # copy reqdate from deliverydate for invoice -> order conversion
302     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"}
303       unless $form->{"reqdate_$i"};
304
305     $form->{"sellprice_$i"} =
306       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
307                            $decimalplaces);
308
309     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
310     $dec_qty = length $dec_qty;
311     $form->{"qty_$i"} =
312       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
313
314     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
315       qw(partnumber description unit);
316   }
317
318   $lxdebug->leave_sub();
319 }
320
321 sub form_header {
322   $lxdebug->enter_sub();
323
324   my $checkedclosed = $form->{"closed"} ? "checked" : "";
325   my $checkeddelivered = $form->{"delivered"} ? "checked" : "";
326
327   map { $form->{$_} =~ s/\"/&quot;/g }
328     qw(ordnumber quonumber shippingpoint shipvia notes intnotes shiptoname
329        shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact
330        shiptophone shiptofax shiptodepartment_1 shiptodepartment_2);
331
332   # use JavaScript Calendar or not
333   $form->{jsscript} = 1;
334   $jsscript = "";
335
336   $button1 = qq|
337      <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\">
338       <input type=button name=transdate id="trigger1" value=|
339     . $locale->text('button') . qq|></td>
340     |;
341   $button2 = qq|
342      <td width="13"><input name=reqdate id=reqdate size=11 title="$myconfig{dateformat}" value="$form->{reqdate}" onBlur=\"check_right_date_format(this)\">
343       <input type=button name=reqdate name=reqdate id="trigger2" value=|
344     . $locale->text('button') . qq|></td>
345    |;
346
347   #write Trigger
348   $jsscript =
349     Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
350                         "reqdate", "BL", "trigger2");
351
352   my @tmp;
353
354   if (($form->{"type"} eq "sales_order") ||
355       ($form->{"type"} eq "purchase_order")) {
356     push(@tmp, qq|
357           <input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" $checkeddelivered>
358           <label for="delivered">| . $locale->text('Delivered') . qq|</label>|);
359   }
360
361   if ($form->{id}) {
362     push(@tmp, qq|
363           <input name="closed" id="closed" type="checkbox" class="checkbox" value="1" $checkedclosed>
364           <label for="closed">| . $locale->text('Closed') . qq|</label>|);
365   }
366
367   if (@tmp) {
368     $openclosed .= qq|
369       <tr>
370         <td colspan=| . (2 * scalar(@tmp)) . qq| align=center>| . join("\n", @tmp) . qq|
371         </td>
372       </tr>
373 |;
374   }
375
376   # set option selected
377   foreach $item ($form->{vc}, currency, department, ($form->{vc} eq "customer" ? customer : vendor)) {
378     $form->{"select$item"} =~ s/ selected//;
379     $form->{"select$item"} =~
380       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
381   }
382
383   #quote select[customer|vendor] Bug 133
384   $form->{"select$form->{vc}"} = $form->quote($form->{"select$form->{vc}"});
385
386   #substitute \n and \r to \s (bug 543)
387   $form->{"select$form->{vc}"} =~ s/[\n\r]/&nbsp;/g;
388   
389   my @old_project_ids = ($form->{"globalproject_id"});
390   map({ push(@old_project_ids, $form->{"project_id_$_"})
391           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
392
393   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
394   $form->get_lists("contacts" => "ALL_CONTACTS",
395                    "shipto" => "ALL_SHIPTO",
396                    "projects" => { "key" => "ALL_PROJECTS",
397                                    "all" => 0,
398                                    "old_id" => \@old_project_ids },
399                    "employees" => "ALL_EMPLOYEES",
400                    "salesmen" => "ALL_SALESMEN",
401                    "taxzones" => "ALL_TAXZONES",
402                    "payments" => "ALL_PAYMENTS",
403                    "currencies" => "ALL_CURRENCIES",
404                    $vc => "ALL_" . uc($vc));
405
406   my %labels;
407   my @values = (undef);
408   foreach my $item (@{ $form->{"ALL_CONTACTS"} }) {
409     push(@values, $item->{"cp_id"});
410     $labels{$item->{"cp_id"}} = $item->{"cp_name"} .
411       ($item->{"cp_abteilung"} ? " ($item->{cp_abteilung})" : "");
412   }
413
414   my $contact;
415   if (scalar @values > 1) {
416     $contact = qq|
417     <tr>
418       <th align="right">| . $locale->text('Contact Person') . qq|</th>
419       <td>| .
420       NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values, '-style' => 'width: 250px',
421                            '-labels' => \%labels, '-default' => $form->{"cp_id"}))
422       . qq|
423       </td>
424     </tr>|;
425   }
426
427   %labels = ();
428   @values = ();
429
430   foreach my $item (@{ $form->{($form->{vc} eq "customer" ? "ALL_CUSTOMERS" : "ALL_VENDORS")}}) {
431     push(@values, $item->{"name"}.qq|--|.$item->{"id"});
432     $labels{$item->{"name"}.qq|--|.$item->{"id"}} = $item->{name};
433   }
434
435   $vc = qq|
436       <input type="hidden" name="$form->{vc}_id" value="| . H($form->{"$form->{vc}_id"}) . qq|">
437       <input type="hidden" name="old$form->{vc}" value="| . H($form->{"old$form->{vc}"}) . qq|">
438       <th align="right">| . $locale->text(ucfirst($form->{vc})) . qq|</th>
439       <td>| . 
440         (($myconfig{vclimit} <=  scalar(@values)) 
441               ? qq|<input type="text" value="| . H(($form->{"old$form->{vc}"} =~ /^(.*)\-\-.*$/)) . qq|" name="$form->{vc}">| 
442               : (NTI($cgi->popup_menu('-name' => "$form->{vc}", '-default' => $form->{"old$form->{vc}"}, 
443                              '-onChange' => 'document.getElementById(\'update_button\').click();',
444                              '-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')))) . qq|
445         <input type="button" value="?" onclick="show_vc_details('$form->{vc}')">
446       </td><input type=hidden name="select$form->{vc}" value="| .
447     Q($form->{"select$form->{vc}"}) . qq|">|;
448
449   %labels = ();
450   @values = ("");
451   foreach my $item (@{ $form->{"ALL_PAYMENTS"} }) {
452     push(@values, $item->{"id"});
453     $labels{$item->{"id"}} = $item->{"description"};
454   }
455   
456   $payments = qq|
457     <th align="right">| . $locale->text('Payment Terms') . qq|</th>
458     <td>| .
459     NTI($cgi->popup_menu('-name' => 'payment_id', '-values' => \@values, '-style' => 'width: 250px',
460                          '-labels' => \%labels, '-default' => $form->{payment_id}))
461     . qq|</td>|;
462
463   %labels = ();
464   @values = ("");
465   foreach my $item (@{ $form->{"ALL_SHIPTO"} }) {
466     push(@values, $item->{"shipto_id"});
467     $labels{$item->{"shipto_id"}} = join "; ", grep { $_ } map { $item->{"shipto${_}" } } qw(name department_1 street city);
468   }
469
470   my $shipto;
471   if (scalar @values > 1) {
472     $shipto = qq|
473     <tr>
474       <th align="right">| . $locale->text('Shipping Address') . qq|</th>
475       <td>| .
476       NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values, '-style' => 'width: 250px',
477                            '-labels' => \%labels, '-default' => $form->{"shipto_id"}))
478     . qq|</td>|;
479   }
480
481   %labels = ();
482   @values = ("");
483   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
484     push(@values, $item->{"id"});
485     $labels{$item->{"id"}} = $item->{"projectnumber"};
486   }
487   my $globalprojectnumber =
488     NTI($cgi->popup_menu('-name' => 'globalproject_id', '-values' => \@values,
489                          '-labels' => \%labels,
490                          '-default' => $form->{"globalproject_id"}));
491   
492   my $salesmen = "";
493   %labels = ();
494   @values = ();
495   if ($form->{type} =~ /^sales_/) {
496     foreach my $item (@{ $form->{"ALL_SALESMEN"} }) {
497       push(@values, $item->{"id"});
498       $labels{$item->{"id"}} = ($item->{"name"} ne "" ? $item->{"name"} : $item->{"login"});
499     }
500     $salesmen =
501       qq|<tr>
502           <th align="right">| . $locale->text('Salesman') . qq|</th>
503           <td>| .
504       NTI($cgi->popup_menu('-name' => 'salesman_id', '-default' => $form->{"salesman_id"} ? $form->{"salesman_id"} : $form->{"employee_id"},
505                            '-values' => \@values, '-labels' => \%labels))
506       . qq|</td>
507          </tr>|;
508   }
509
510   %labels = ();
511   @values = ();
512   foreach my $item (@{ $form->{"ALL_EMPLOYEES"} }) {
513     push(@values, $item->{"id"});
514     $labels{$item->{"id"}} = $item->{"name"} ne "" ? $item->{"name"} : $item->{"login"};
515   }
516
517   my $employee = qq|
518     <tr>
519       <th align="right">| . $locale->text('Employee') . qq|</th>
520       <td>| .
521         NTI($cgi->popup_menu('-name' => 'employee_id', '-default' => $form->{"employee_id"},
522                              '-values' => \@values, '-labels' => \%labels)) . qq|
523       </td>
524     </tr>|;
525
526   %labels = ();
527   @values = ();
528   foreach my $item (@{ $form->{"ALL_TAXZONES"} }) {
529     push(@values, $item->{"id"});
530     $labels{$item->{"id"}} = $item->{"description"};
531   }
532
533   $taxzone = qq|
534     <tr>
535       <th align="right">| . $locale->text('Steuersatz') . qq|</th>
536       <td>| .
537         NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
538                              '-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')) . qq|
539       </td>
540     </tr>|;
541
542   %labels = ();
543   @values = ();
544   my $i = 0;
545   foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) {
546     push(@values, $item);
547     $labels{$item} = $item;
548   }
549
550   $form->{currency} = $form->{defaultcurrency} unless $form->{currency};
551   my $currencies;
552   if (scalar @values) {
553     $currencies = qq|
554     <tr>
555       <th align="right">| . $locale->text('Currency') . qq|</th>
556       <td>| .
557         NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
558                              '-values' => \@values, '-labels' => \%labels)) . qq|
559       </td>
560     </tr>|;
561   }
562
563   $form->{exchangerate} =
564     $form->format_amount(\%myconfig, $form->{exchangerate});
565
566   if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
567     $creditwarning = 1;
568   } else {
569     $creditwarning = 0;
570   }
571
572   $form->{creditlimit} =
573     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
574   $form->{creditremaining} =
575     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
576
577   $exchangerate = qq|
578 <input type=hidden name=forex value=$form->{forex}>
579 |;
580
581   if ($form->{currency} ne $form->{defaultcurrency}) {
582     if ($form->{forex}) {
583       $exchangerate .=
584           qq|<th align=right>|
585         . $locale->text('Exchangerate')
586         . qq|</th><td>$form->{exchangerate}</td>
587       <input type=hidden name=exchangerate value=$form->{exchangerate}>
588 |;
589     } else {
590       $exchangerate .=
591           qq|<th align=right>|
592         . $locale->text('Exchangerate')
593         . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
594     }
595   }
596
597   if ($form->{business}) {
598     $business = qq|
599               <tr>
600           <th align="right">| . ($form->{vc} eq "customer" ? $locale->text('Customer type') : $locale->text('Vendor type')) . qq|</th>
601           <td>$form->{business}; | . $locale->text('Trade Discount') . qq| |
602       . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
603       . qq| %</td>
604         </tr>
605 |;
606   }
607
608   if ($form->{max_dunning_level}) {
609     $dunning = qq|
610       <tr>
611         <th align="right">| . $locale->text('Max. Dunning Level') . qq|:</th>
612         <td>
613           <b>$form->{max_dunning_level}</b>;
614           | . $locale->text('Dunning Amount') . qq|: <b>|
615         . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
616         . qq|</b>
617         </td>
618       </tr>
619 |;
620   }
621
622   if ($form->{type} !~ /_quotation$/) {
623     $ordnumber = qq|
624               <tr>
625                 <th width=70% align=right nowrap>| . $locale->text('Order Number') . qq|</th>
626                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
627               </tr>
628               <tr>
629                 <th width=70% align=right nowrap>|
630       . $locale->text('Quotation Number') . qq|</th>
631                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
632               </tr>
633               <tr>
634                 <th width=70% align=right nowrap>|
635       . $locale->text('Customer Order Number') . qq|</th>
636                 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
637               </tr>
638               <tr>
639                 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
640                 $button1
641
642               </tr>
643               <tr>
644                 <th align=right nowrap=true>| . $locale->text('Required by') . qq|</th>
645                 $button2
646               </tr>
647 |;
648
649     $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
650
651     $creditremaining = qq|
652         $shipto
653         <tr>
654           <td align="right">| . $locale->text('Credit Limit') . qq|</td>
655           <td>$form->{creditlimit}; | . $locale->text('Remaining') . qq| <span class="plus$n">$form->{creditremaining}</span></td>
656         </tr>
657               </tr>
658 |;
659   } else {
660     $reqlabel =
661       ($form->{type} eq 'sales_quotation')
662       ? $locale->text('Valid until')
663       : $locale->text('Required by');
664     if ($form->{type} eq 'sales_quotation') {
665       $ordnumber = qq|
666               <tr>
667                 <th width=70% align=right nowrap>|
668         . $locale->text('Quotation Number') . qq|</th>
669                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
670                 <input type=hidden name=ordnumber value="$form->{ordnumber}">
671               </tr>
672 |;
673     } else {
674       $ordnumber = qq|
675               <tr>
676                 <th width=70% align=right nowrap>| . $locale->text('RFQ Number') . qq|</th>
677                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
678                 <input type=hidden name=ordnumber value="$form->{ordnumber}">
679               </tr>
680 |;
681
682     }
683
684     $ordnumber .= qq|
685               <tr>
686                 <th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
687                 $button1
688               </tr>
689               <tr>
690                 <th align=right nowrap=true>$reqlabel</th>
691                 $button2
692               </tr>
693 |;
694     $creditremaining = qq| <tr>
695                             <td colspan=4></td>
696                             $shipto
697                           </tr>|;
698   }
699
700   $department = qq|
701               <tr>
702                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
703                 <td colspan=3><select name=department style="width: 250px">$form->{selectdepartment}</select>
704                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
705                 </td>
706               </tr> | if $form->{selectdepartment};
707
708   if ($form->{type} eq 'sales_order') {
709     if ($form->{selectemployee}) {
710       $employee .= qq|
711         <input type="hidden" name="customer_klass" value="$form->{customer_klass}">|;
712     }
713   } else {
714     $employee .= qq|
715       <input type="hidden" name="customer_klass" value="$form->{customer_klass}">|;
716   }
717   if ($form->{resubmit} && ($form->{format} eq "html")) {
718     $onload =
719       qq|window.open('about:blank','Beleg'); document.oe.target = 'Beleg';document.oe.submit()|;
720   } elsif ($form->{resubmit}) {
721     $onload = qq|document.oe.submit()|;
722   } else {
723     $onload = "focus()";
724   }
725
726   $credittext = $locale->text('Credit Limit exceeded!!!');
727   if ($creditwarning) {
728     $onload = qq|alert('$credittext')|;
729   }
730   
731   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
732   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
733   
734   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
735   # show history button js
736   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
737   #/show history button js
738   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_vc_details.js"></script>|;
739
740   $form->header;
741
742   print qq|
743 <body onLoad="$onload">
744
745 <form method=post name=oe action=$form->{script}>
746
747  <script type="text/javascript" src="js/common.js"></script>
748  <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
749  <script type="text/javascript" src="js/vendor_selection.js"></script>
750  <script type="text/javascript" src="js/calculate_qty.js"></script>
751 |;
752
753   $form->hide_form(qw(id action type vc formname media format proforma queued printed emailed
754                       title discount creditlimit creditremaining tradediscount business
755                       max_dunning_level dunning_amount));
756
757   print qq|
758
759 <table width=100%>
760   <tr class=listtop>
761     <th class=listtop>$form->{title}</th>
762   </tr>
763   <tr height="5"></tr>
764   <tr>
765     <td>
766       <table width="100%">
767         <tr valign=top>
768           <td>
769             <table width=100%>
770               <tr>
771         $vc
772         $contact
773               $creditremaining
774               $business
775               $dunning
776               $taxzone
777               $department
778               <tr>
779                 $currencies
780                 $exchangerate
781               </tr>
782               <tr>
783                 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
784                 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
785               </tr>
786               <tr>
787                 <th align=right>| . $locale->text('Ship via') . qq|</th>
788                 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
789               </tr>
790               <tr>
791                 <th align="right">| . $locale->text('Transaction description') . qq|</th>
792                 <td colspan="3"><input name="transaction_description" size="35" value="| . H($form->{transaction_description}) . qq|"></td>
793               </tr>|;
794 #              <tr>
795 #                 <td colspan=4>
796 #                   <table>
797 #                     <tr>
798 #                       <td colspan=2>
799 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
800 #                       </td>
801 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
802 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
803 #                     </tr>
804 #                     <tr>
805 #                       <td colspan=2>
806 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
807 #                       </td>
808 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
809 #                       <input size=45 id=vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
810 #                     </tr>
811 #                   </table>
812 #                 </td>
813 #               </tr>
814 print qq|           </table>
815           </td>
816           <td align=right>
817             <table>
818               $openclosed
819               $employee
820         $salesmen
821               $ordnumber
822               <tr>
823           <th width="70%" align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
824           <td>$globalprojectnumber</td>
825               </tr>
826             </table>
827           </td>
828         </tr>
829       </table>
830     </td>
831   </tr>
832
833 $jsscript
834
835 <!-- shipto are in hidden variables -->
836
837 <input type=hidden name=shiptoname value="$form->{shiptoname}">
838 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
839 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
840 <input type=hidden name=shiptocity value="$form->{shiptocity}">
841 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
842 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
843 <input type=hidden name=shiptophone value="$form->{shiptophone}">
844 <input type=hidden name=shiptofax value="$form->{shiptofax}">
845 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
846 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
847 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
848
849 <!-- email variables -->
850 <input type=hidden name=message value="$form->{message}">
851 <input type=hidden name=email value="$form->{email}">
852 <input type=hidden name=subject value="$form->{subject}">
853 <input type=hidden name=cc value="$form->{cc}">
854 <input type=hidden name=bcc value="$form->{bcc}">
855
856 <input type=hidden name=taxpart value="$form->{taxpart}">
857 <input type=hidden name=taxservice value="$form->{taxservice}">
858
859 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
860 |;
861
862   foreach $item (split / /, $form->{taxaccounts}) {
863     print qq|
864 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
865 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
866 |;
867   }
868   $lxdebug->leave_sub();
869 }
870
871 sub form_footer {
872   $lxdebug->enter_sub();
873
874   $form->{invtotal} = $form->{invsubtotal};
875
876   if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
877     $rows = 2;
878   }
879   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
880     $introws = 2;
881   }
882   $rows = ($rows > $introws) ? $rows : $introws;
883   $notes =
884     qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
885   $intnotes =
886     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
887
888   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
889
890   $taxincluded = "";
891   if ($form->{taxaccounts}) {
892     $taxincluded = qq|
893               <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
894       . $locale->text('Tax Included') . qq|</b><br><br>
895 |;
896   }
897
898   if (!$form->{taxincluded}) {
899
900     foreach $item (split / /, $form->{taxaccounts}) {
901       if ($form->{"${item}_base"}) {
902         $form->{invtotal} += $form->{"${item}_total"} =
903           $form->round_amount(
904                              $form->{"${item}_base"} * $form->{"${item}_rate"},
905                              2);
906         $form->{"${item}_total"} =
907           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
908
909         $tax .= qq|
910               <tr>
911                 <th align=right>$form->{"${item}_description"}&nbsp;|
912                                     . $form->{"${item}_rate"} * 100 .qq|%</th>
913                 <td align=right>$form->{"${item}_total"}</td>
914               </tr>
915 |;
916       }
917     }
918
919     $form->{invsubtotal} =
920       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
921
922     $subtotal = qq|
923               <tr>
924                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
925                 <td align=right>$form->{invsubtotal}</td>
926               </tr>
927 |;
928
929   }
930
931   if ($form->{taxincluded}) {
932     foreach $item (split / /, $form->{taxaccounts}) {
933       if ($form->{"${item}_base"}) {
934         $form->{"${item}_total"} =
935           $form->round_amount(
936                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
937                               (1 + $form->{"${item}_rate"})
938                            ),
939                            2);
940         $form->{"${item}_netto"} =
941           $form->round_amount(
942                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
943                           2);
944         $form->{"${item}_total"} =
945           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
946         $form->{"${item}_netto"} =
947           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
948
949         $tax .= qq|
950               <tr>
951                 <th align=right>Enthaltene $form->{"${item}_description"}&nbsp;|
952                                     . $form->{"${item}_rate"} * 100 .qq|%</th>
953                 <td align=right>$form->{"${item}_total"}</td>
954               </tr>
955               <tr>
956                 <th align=right>Nettobetrag</th>
957                 <td align=right>$form->{"${item}_netto"}</td>
958               </tr>
959 |;
960       }
961     }
962
963   }
964
965   $form->{oldinvtotal} = $form->{invtotal};
966   $form->{invtotal}    =
967     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
968
969   print qq|
970   <tr>
971     <td>
972       <table width=100%>
973         <tr valign=bottom>
974           <td>
975             <table>
976               <tr>
977                 <th align=left>| . $locale->text('Notes') . qq|</th>
978                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
979               </tr>
980               <tr valign=top>
981                 <td>$notes</td>
982                 <td>$intnotes</td>
983               </tr>
984           <tr>
985     $payments
986             </tr>
987       </table>
988           </td>
989           <td align=right width=100%>
990             $taxincluded
991             <table width=100%>
992               $subtotal
993               $tax
994               <tr>
995                 <th align=right>| . $locale->text('Total') . qq|</th>
996                 <td align=right>$form->{invtotal}</td>
997               </tr>
998             </table>
999           </td>
1000         </tr>
1001       </table>
1002     </td>
1003   </tr>
1004 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
1005 <input type=hidden name=oldtotalpaid value=$totalpaid>
1006   <tr>
1007     <td><hr size=3 noshade></td>
1008   </tr>
1009 |;
1010
1011   if ($webdav) {
1012     $webdav_list = qq|
1013
1014   <tr>
1015     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
1016   </tr>
1017     <table width=100%>
1018       <td align=left width=30%><b>Dateiname</b></td>
1019       <td align=left width=70%><b>Webdavlink</b></td>
1020 |;
1021     foreach $file (keys %{ $form->{WEBDAV} }) {
1022       $webdav_list .= qq|
1023       <tr>
1024         <td align=left>$file</td>
1025         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
1026       </tr>
1027 |;
1028     }
1029     $webdav_list .= qq|
1030     </table>
1031   </tr>
1032   <tr>
1033     <td><hr size=3 noshade></td>
1034   </tr>
1035 |;
1036
1037     print $webdav_list;
1038   }
1039
1040   print qq|
1041   <tr>
1042     <td>
1043 |;
1044   print_options();
1045
1046   print qq|
1047     </td>
1048   </tr>
1049 </table>
1050
1051 | . $locale->text("Edit the $form->{type}") . qq|<br>
1052 <input class=submit type=submit name=action id=update_button value="|
1053     . $locale->text('Update') . qq|">
1054 <input class=submit type=submit name=action value="|
1055     . $locale->text('Ship to') . qq|">
1056 <input class=submit type=submit name=action value="|
1057     . $locale->text('Print') . qq|">
1058 <input class=submit type=submit name=action value="|
1059     . $locale->text('E-mail') . qq|">
1060 <input class=submit type=submit name=action value="|
1061     . $locale->text('Save') . qq|">
1062 <input class=submit type=submit name=action value="|
1063     . $locale->text('Save and Close') . qq|">
1064 |;
1065
1066   if (($form->{id})) {
1067     print qq|
1068         <input type="button" class="submit" onclick="set_history_window(|
1069         . Q($form->{id})
1070         . qq|);" name="history" id="history" value="|
1071         . $locale->text('history')
1072         . qq|">
1073
1074 <br>| . $locale->text("Workflow $form->{type}") . qq|<br>
1075 <input class=submit type=submit name=action value="|
1076       . $locale->text('Save as new') . qq|">
1077 <input class=submit type=submit name=action value="|
1078       . $locale->text('Delete') . qq|">|;
1079     if (($form->{type} =~ /sales_quotation$/)) {
1080       print qq|
1081 <input class=submit type=submit name=action value="|
1082         . $locale->text('Sales Order') . qq|">|;
1083     }
1084     if ($form->{type} =~ /request_quotation$/) {
1085       print qq|
1086 <input class=submit type=submit name=action value="|
1087         . $locale->text('Purchase Order') . qq|">|;
1088     }
1089     if (1) {
1090     print qq|
1091 <input class=submit type=submit name=action value="|
1092       . $locale->text('Invoice') . qq|">
1093 |;
1094 }
1095
1096     if ($form->{type} =~ /sales_order$/) {
1097       print qq|
1098 <br>$form->{heading} als neue Vorlage verwenden f&uuml;r<br>
1099 <input class=submit type=submit name=action value="|
1100         . $locale->text('Purchase Order') . qq|">
1101 <input class=submit type=submit name=action value="|
1102         . $locale->text('Quotation') . qq|">
1103 |;
1104
1105     } elsif ($form->{type} =~ /purchase_order$/) {
1106       print qq|
1107 <br>$form->{heading} als neue Vorlage verwenden f&uuml;r<br>
1108 <input class=submit type=submit name=action value="|
1109         . $locale->text('Sales Order') . qq|">
1110 <input class=submit type=submit name=action value="|
1111         . $locale->text('Request for Quotation') . qq|">
1112 |;
1113
1114     } else {
1115       print qq|
1116 <br>$form->{heading} als neue Vorlage verwenden f&uuml;r<br>
1117 <input class=submit type=submit name=action value="|
1118         . $locale->text('Order') . qq|">
1119 |;
1120     }
1121   } elsif ($form->{type} =~ /sales_order$/ && $form->{rowcount} && !$form->{proforma}) {
1122     print qq|
1123 <br>Workflow  $form->{heading}<br>
1124 <input class=submit type=submit name=action value="|
1125       . $locale->text('Save as new') . qq|">
1126 <input class=submit type=submit name=action value="|
1127       . $locale->text('Invoice') . qq|">
1128 |;
1129   }
1130
1131   $form->hide_form("saved_xyznumber");
1132
1133   print qq|
1134
1135 <input type=hidden name=rowcount value=$form->{rowcount}>
1136
1137 <input name=callback type=hidden value="$form->{callback}">
1138
1139 <input type=hidden name=login value=$form->{login}>
1140 <input type=hidden name=password value=$form->{password}>
1141
1142 </form>
1143
1144 </body>
1145 </html>
1146 |;
1147   $lxdebug->leave_sub();
1148 }
1149
1150 sub update {
1151   $lxdebug->enter_sub();
1152
1153   set_headings($form->{"id"} ? "edit" : "add");
1154
1155   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1156     qw(exchangerate creditlimit creditremaining);
1157   $form->{update} = 1;
1158       
1159   if($form->{payment_id}) { 
1160     $payment_id = $form->{payment_id};
1161   }
1162   
1163   &check_name($form->{vc});
1164   
1165   if($form->{payment_id} eq "") { 
1166     $form->{payment_id} = $payment_id;
1167   }
1168   
1169   $buysell              = 'buy';
1170   $buysell              = 'sell' if ($form->{vc} eq 'vendor');
1171   $form->{exchangerate} = $exchangerate
1172     if (
1173         $form->{forex} = (
1174                   $exchangerate =
1175                     $form->check_exchangerate(
1176                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1177                     )));
1178
1179   # for pricegroups
1180   $i = $form->{rowcount};
1181
1182   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1183
1184   if (   ($form->{"partnumber_$i"} eq "")
1185       && ($form->{"description_$i"} eq "")
1186       && ($form->{"partsgroup_$i"}  eq "")) {
1187
1188     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1189     &check_form;
1190
1191   } else {
1192
1193     if (   $form->{type} eq 'purchase_order'
1194         || $form->{type} eq 'request_quotation') {
1195       IR->retrieve_item(\%myconfig, \%$form);
1196     }
1197     if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
1198       IS->retrieve_item(\%myconfig, \%$form);
1199     }
1200
1201     my $rows = scalar @{ $form->{item_list} };
1202
1203     $form->{"discount_$i"} =
1204       $form->format_amount(\%myconfig, $form->{discount} * 100);
1205
1206     if ($rows) {
1207       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
1208
1209       if ($rows > 1) {
1210
1211         &select_item;
1212         exit;
1213
1214       } else {
1215
1216         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1217         if ($form->{"not_discountable_$i"}) {
1218           $form->{"discount_$i"} = 0;
1219         }
1220         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }
1221           qw(partnumber description unit);
1222         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1223           keys %{ $form->{item_list}[0] };
1224         if ($form->{"part_payment_id_$i"} ne "") {
1225           $form->{payment_id} = $form->{"part_payment_id_$i"};
1226         }
1227
1228         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1229
1230         ($dec) = ($s =~ /\.(\d+)/);
1231         $dec           = length $dec;
1232         $decimalplaces = ($dec > 2) ? $dec : 2;
1233
1234         if ($sellprice) {
1235           $form->{"sellprice_$i"} = $sellprice;
1236         } else {
1237
1238           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1239
1240           # if there is an exchange rate adjust sellprice
1241           $form->{"sellprice_$i"} /= $exchangerate;
1242         }
1243
1244         $amount =
1245           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1246           (1 - $form->{"discount_$i"} / 100);
1247         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1248         map { $form->{"${_}_base"} += $amount }
1249           (split / /, $form->{"taxaccounts_$i"});
1250         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1251           split / /, $form->{taxaccounts}
1252           if !$form->{taxincluded};
1253
1254         $form->{creditremaining} -= $amount;
1255
1256         $form->{"sellprice_$i"} =
1257           $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1258                                $decimalplaces);
1259         $form->{"qty_$i"} =
1260           $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1261
1262         # get pricegroups for parts
1263         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1264
1265         # build up html code for prices_$i
1266         &set_pricegroup($i);
1267       }
1268
1269       &display_form;
1270
1271     } else {
1272
1273       # ok, so this is a new part
1274       # ask if it is a part or service item
1275
1276       if (   $form->{"partsgroup_$i"}
1277           && ($form->{"partsnumber_$i"} eq "")
1278           && ($form->{"description_$i"} eq "")) {
1279         $form->{rowcount}--;
1280         $form->{"discount_$i"} = "";
1281         &display_form;
1282       } else {
1283
1284         $form->{"id_$i"}   = 0;
1285         $form->{"unit_$i"} = $locale->text('ea');
1286
1287         &new_item;
1288
1289       }
1290     }
1291   }
1292
1293   $lxdebug->leave_sub();
1294 }
1295
1296 sub search {
1297   $lxdebug->enter_sub();
1298
1299   if ($form->{type} eq 'purchase_order') {
1300     $form->{title} = $locale->text('Purchase Orders');
1301     $form->{vc}    = 'vendor';
1302     $ordlabel      = $locale->text('Order Number');
1303     $ordnumber     = 'ordnumber';
1304     $employee      = $locale->text('Employee');
1305   }
1306
1307   if ($form->{type} eq 'request_quotation') {
1308     $form->{title} = $locale->text('Request for Quotations');
1309     $form->{vc}    = 'vendor';
1310     $ordlabel      = $locale->text('RFQ Number');
1311     $ordnumber     = 'quonumber';
1312     $employee      = $locale->text('Employee');
1313   }
1314
1315   if ($form->{type} eq 'sales_order') {
1316     $form->{title} = $locale->text('Sales Orders');
1317     $form->{vc}    = 'customer';
1318     $ordlabel      = $locale->text('Order Number');
1319     $ordnumber     = 'ordnumber';
1320     $employee      = $locale->text('Employee');
1321   }
1322
1323   if ($form->{type} eq 'sales_quotation') {
1324     $form->{title} = $locale->text('Quotations');
1325     $form->{vc}    = 'customer';
1326     $ordlabel      = $locale->text('Quotation Number');
1327     $ordnumber     = 'quonumber';
1328     $employee      = $locale->text('Employee');
1329   }
1330
1331   # setup vendor / customer selection
1332   $form->all_vc(\%myconfig, $form->{vc},
1333                 ($form->{vc} eq 'customer') ? "AR" : "AP");
1334
1335   # departments
1336   if (@{ $form->{all_departments} }) {
1337     $form->{selectdepartment} = "<option>\n";
1338
1339     map {
1340       $form->{selectdepartment} .=
1341         "<option>$_->{description}--$_->{id}</option>\n"
1342     } (@{ $form->{all_departments} });
1343   }
1344
1345   $department = qq|
1346         <tr>
1347           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1348           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1349         </tr>
1350 | if $form->{selectdepartment};
1351
1352   my $delivered;
1353   if (($form->{"type"} eq "sales_order") ||
1354       ($form->{"type"} eq "purchase_order")) {
1355     $delivered = qq|
1356         <tr>
1357           <td><input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
1358             <label for="notdelivered">|. $locale->text('Not delivered') . qq|</label></td>
1359           <td><input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
1360             <label for="delivered">| . $locale->text('Delivered') . qq|</label></td>
1361         </tr>
1362 |;
1363   }
1364
1365   # use JavaScript Calendar or not
1366   $form->{jsscript} = 1;
1367   $jsscript = "";
1368
1369   $button1 = qq|
1370      <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
1371      <input type=button name=transdatefrom id="trigger3" value=|
1372     . $locale->text('button') . qq|></td>
1373     |;
1374   $button2 = qq|
1375      <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
1376      <input type=button name=transdateto name=transdateto id="trigger4" value=|
1377     . $locale->text('button') . qq|></td>
1378    |;
1379
1380   #write Trigger
1381   $jsscript =
1382     Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger3",
1383                         "transdateto", "BL", "trigger4");
1384
1385   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
1386
1387   $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
1388                                    "all" => 1 },
1389                    "employees" => "ALL_EMPLOYEES",
1390                    $vc => "ALL_" . uc($vc));
1391
1392   my %labels = ();
1393   my @values = ("");
1394   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
1395     push(@values, $item->{"id"});
1396     $labels{$item->{"id"}} = $item->{"projectnumber"};
1397   }
1398   my $projectnumber =
1399     NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
1400                          '-labels' => \%labels));
1401
1402   #employees
1403   %labels = ();
1404   @values = ("");
1405   foreach my $item (@{ $form->{"ALL_EMPLOYEES"} }) {
1406     push(@values, $item->{"id"});
1407     $labels{$item->{"id"}} = $item->{"name"} ne "" ? $item->{"name"} : $item->{"login"};
1408   }
1409
1410   my $employee_block = qq|
1411     <tr>
1412       <th align="right">| . $locale->text('Employee') . qq|</th>
1413       <td>| .
1414         NTI($cgi->popup_menu('-name'   => 'employee_id',
1415                              '-values' => \@values,
1416                              '-labels' => \%labels)) . qq|
1417       </td>
1418     </tr>|;
1419
1420   %labels = ();
1421   @values = ("");
1422
1423   foreach my $item (@{ $form->{($form->{vc} eq "customer" ? "ALL_CUSTOMERS" : "ALL_VENDORS")}}) {
1424     push(@values, $item->{name}.qq|--|.$item->{"id"});
1425     $labels{$item->{name}.qq|--|.$item->{"id"}} = $item->{"name"};
1426   }
1427
1428   my $vc_label = $form->{vc} eq "customer" ? $locale->text('Customer') : $locale->text('Vendor');
1429   $vc =
1430     $myconfig{vclimit} <=  scalar(@values)
1431     ? qq|<input type="text" value="| . H(($form->{"old$form->{vc}"} =~ /^(.*)\-\-.*$/)) . qq|" name="$form->{vc}">| 
1432     : NTI($cgi->popup_menu('-name' => "$form->{vc}",
1433                            '-default' => $form->{"old$form->{vc}"},
1434                            '-onChange' => 'document.getElementById(\'update_button\').click();',
1435                            '-values' => \@values,
1436                            '-labels' => \%labels));
1437   $form->header;
1438
1439   print qq|
1440 <body>
1441
1442 <form method=post action=$form->{script}>
1443
1444 <table width=100%>
1445   <tr>
1446     <th class=listtop>$form->{title}</th>
1447   </tr>
1448   <tr height="5"></tr>
1449   <tr>
1450     <td>
1451       <table>
1452         <tr>
1453           <th align=right>$vc_label</th>
1454           <td colspan=3>$vc</td>
1455         </tr>
1456         $department
1457         <tr>
1458           <th align=right>$ordlabel</th>
1459           <td colspan=3><input name="$ordnumber" size=20></td>
1460         </tr>
1461   $employee_block
1462         <tr>
1463           <th align="right">| . $locale->text('Transaction description') . qq|</th>
1464           <td colspan="3"><input name="transaction_description" size=20></td>
1465         </tr>
1466         <tr>
1467           <th align="right">| . $locale->text("Project Number") . qq|</th>
1468           <td colspan="3">$projectnumber</td>
1469         </tr>
1470         <tr>
1471           <th align=right>| . $locale->text('From') . qq|</th>
1472           $button1
1473           <th align=right>| . $locale->text('Bis') . qq|</th>
1474           $button2
1475         </tr>
1476         <input type=hidden name=sort value=transdate>
1477         <tr>
1478           <th align=right>| . $locale->text('Include in Report') . qq|</th>
1479           <td colspan=5>
1480             <table>
1481         <tr>
1482           <td><input type="checkbox" name="open" value="1" id="open" checked>
1483             <label for="open">| . $locale->text("Open") . qq|</td>
1484           <td><input type="checkbox" name="closed" value="1" id="closed">
1485             <label for="closed">| . $locale->text("Closed") . qq|</td>
1486         </tr>
1487         $delivered
1488               <tr>
1489                 <td><input name="l_id" class=checkbox type=checkbox value=Y>
1490                 | . $locale->text('ID') . qq|</td>
1491                 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
1492                 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
1493     . $locale->text('Date') . qq|</td>
1494                 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
1495     . $locale->text('Required by') . qq|</td>
1496               </tr>
1497               <tr>
1498                 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vc_label</td>
1499                 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1500                 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
1501     . $locale->text('Ship via') . qq|</td>
1502                 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1503               </tr>
1504               <tr>
1505                 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
1506     . $locale->text('Amount') . qq|</td>
1507                 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
1508     . $locale->text('Tax') . qq|</td>
1509                 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
1510     . $locale->text('Total') . qq|</td>
1511               </tr>
1512               <tr>
1513           <td><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y> |
1514           . $locale->text('Project Number') . qq|</td>
1515           <td><input name="l_transaction_description" class=checkbox type=checkbox value=Y> |
1516           . $locale->text('Transaction description') . qq|</td>
1517               </tr>
1518               <tr>
1519                 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
1520     . $locale->text('Subtotal') . qq|</td>
1521               </tr>
1522             </table>
1523           </td>
1524         </tr>
1525       </table>
1526     </td>
1527   </tr>
1528   <tr><td colspan=4><hr size=3 noshade></td></tr>
1529 </table>
1530
1531 $jsscript
1532
1533 <br>
1534 <input type=hidden name=nextsub value=orders>
1535 <input type=hidden name=login value=$form->{login}>
1536 <input type=hidden name=password value=$form->{password}>
1537 <input type=hidden name=vc value=$form->{vc}>
1538 <input type=hidden name=type value=$form->{type}>
1539
1540 <input class=submit type=submit name=action value="|
1541     . $locale->text('Continue') . qq|">
1542 </form>
1543
1544 </body>
1545 </html>
1546 |;
1547
1548   $lxdebug->leave_sub();
1549 }
1550
1551 sub orders {
1552   $lxdebug->enter_sub();
1553
1554   $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1555
1556   # construct href
1557   my @fields =
1558     qw(type vc login password transdatefrom transdateto
1559        open closed notdelivered delivered department
1560        transaction_description);
1561   push @fields, $form->{vc};
1562   $href = "$form->{script}?action=orders&"
1563     . join("&", map { "${_}=" . E($form->{$_}) } @fields)
1564     . "&${ordnumber}=" . E($form->{$ordnumber});
1565   $callback = $href;
1566
1567   # split vendor / customer
1568   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) =
1569     split(/--/, $form->{ $form->{vc} });
1570
1571   OE->transactions(\%myconfig, \%$form);
1572
1573   @columns = (
1574     "transdate",               "reqdate",
1575     "id",                      "$ordnumber",
1576     "name",                    "netamount",
1577     "tax",                     "amount",
1578     "curr",                    "employee",
1579     "shipvia",                 "globalprojectnumber",
1580     "transaction_description", "open",
1581     "closed",                  "delivered"
1582   );
1583
1584   $form->{l_open} = $form->{l_closed} = "Y"
1585     if ($form->{open} && $form->{closed});
1586
1587   $form->{"l_delivered"} = "Y"
1588     if ($form->{"delivered"} && $form->{"notdelivered"});
1589
1590   foreach $item (@columns) {
1591     if ($form->{"l_$item"} eq "Y") {
1592       push @column_index, $item;
1593
1594       # add column to href and callback
1595       $callback .= "&l_$item=Y";
1596       $href     .= "&l_$item=Y";
1597     }
1598   }
1599
1600   # only show checkboxes if gotten here via sales_order form.
1601   if ($form->{type} =~ /sales_order/) {
1602     unshift @column_index, "ids";
1603   }
1604
1605   if ($form->{l_subtotal} eq 'Y') {
1606     $callback .= "&l_subtotal=Y";
1607     $href     .= "&l_subtotal=Y";
1608   }
1609
1610   if ($form->{vc} eq 'vendor') {
1611     if ($form->{type} eq 'purchase_order') {
1612       $form->{title} = $locale->text('Purchase Orders');
1613     } else {
1614       $form->{title} = $locale->text('Request for Quotations');
1615     }
1616     $name     = $locale->text('Vendor');
1617     $employee = $locale->text('Employee');
1618   }
1619   if ($form->{vc} eq 'customer') {
1620     if ($form->{type} eq 'sales_order') {
1621       $form->{title} = $locale->text('Sales Orders');
1622     } else {
1623       $form->{title} = $locale->text('Quotations');
1624     }
1625     $employee = $locale->text('Employee');
1626     $name = $locale->text('Customer');
1627   }
1628
1629   $column_header{id} =
1630       qq|<th><a class=listheading href=$href&sort=id>|
1631     . $locale->text('ID')
1632     . qq|</a></th>|;
1633   $column_header{transdate} =
1634       qq|<th><a class=listheading href=$href&sort=transdate>|
1635     . $locale->text('Date')
1636     . qq|</a></th>|;
1637   $column_header{reqdate} =
1638       qq|<th><a class=listheading href=$href&sort=reqdate>|
1639     . $locale->text('Required by')
1640     . qq|</a></th>|;
1641   $column_header{ordnumber} =
1642       qq|<th><a class=listheading href=$href&sort=ordnumber>|
1643     . $locale->text('Order')
1644     . qq|</a></th>|;
1645   $column_header{quonumber} =
1646       qq|<th><a class=listheading href=$href&sort=quonumber>|
1647     . ($form->{"type"} eq "request_quotation" ?
1648        $locale->text('RFQ') :
1649        $locale->text('Quotation'))
1650     . qq|</a></th>|;
1651   $column_header{name} =
1652     qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|;
1653   $column_header{netamount} =
1654     qq|<th class=listheading>| . $locale->text('Amount') . qq|</th>|;
1655   $column_header{tax} =
1656     qq|<th class=listheading>| . $locale->text('Tax') . qq|</th>|;
1657   $column_header{amount} =
1658     qq|<th class=listheading>| . $locale->text('Total') . qq|</th>|;
1659   $column_header{curr} =
1660     qq|<th class=listheading>| . $locale->text('Curr') . qq|</th>|;
1661   $column_header{shipvia} =
1662       qq|<th><a class=listheading href=$href&sort=shipvia>|
1663     . $locale->text('Ship via')
1664     . qq|</a></th>|;
1665   $column_header{globalprojectnumber} =
1666     qq|<th class="listheading">| . $locale->text('Project Number') . qq|</th>|;
1667   $column_header{open} =
1668     qq|<th class=listheading>| . $locale->text('O') . qq|</th>|;
1669   $column_header{closed} =
1670     qq|<th class=listheading>| . $locale->text('C') . qq|</th>|;
1671   $column_header{"delivered"} =
1672     qq|<th class="listheading">| . $locale->text("Delivered") . qq|</th>|;
1673
1674   $column_header{employee} =
1675     qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|;
1676   $column_header{transaction_description} =
1677     qq|<th><a class=listheading href="$href&sort=transaction_description">|
1678     . $locale->text("Transaction description") . qq|</a></th>|;
1679
1680   $column_header{ids} = qq|<th></th>|;
1681
1682   if ($form->{ $form->{vc} }) {
1683     $option = $locale->text(ucfirst $form->{vc});
1684     $option .= " : $form->{$form->{vc}}";
1685   }
1686   if ($form->{department}) {
1687     $option .= "\n<br>" if ($option);
1688     ($department) = split /--/, $form->{department};
1689     $option .= $locale->text('Department') . " : $department";
1690   }
1691   if ($form->{transdatefrom}) {
1692     $option .= "\n<br>"
1693       . $locale->text('From') . " "
1694       . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1695   }
1696   if ($form->{transdateto}) {
1697     $option .= "\n<br>"
1698       . $locale->text('Bis') . " "
1699       . $locale->date(\%myconfig, $form->{transdateto}, 1);
1700   }
1701   if ($form->{open}) {
1702     $option .= "\n<br>" if ($option);
1703     $option .= $locale->text('Open');
1704   }
1705   if ($form->{closed}) {
1706     $option .= "\n<br>" if ($option);
1707     $option .= $locale->text('Closed');
1708   }
1709
1710   $form->header;
1711
1712   print qq|
1713 <body>
1714
1715 <form method="post" action="oe.pl">
1716 <table width=100%>
1717   <tr>
1718     <th class=listtop>$form->{title}</th>
1719   </tr>
1720   <tr height="5"></tr>
1721   <tr>
1722     <td>$option</td>
1723   </tr>
1724   <tr>
1725     <td>
1726       <table width=100%>
1727         <tr class=listheading>|;
1728
1729   map { print "\n$column_header{$_}" } @column_index;
1730
1731   print qq|
1732         </tr>
1733 |;
1734
1735   # add sort and escape callback
1736   $callback_escaped = $form->escape($callback . "&sort=$form->{sort}");
1737
1738   if (@{ $form->{OE} }) {
1739     $sameitem = $form->{OE}->[0]->{ $form->{sort} };
1740   }
1741
1742   $action = "edit";
1743
1744   foreach $oe (@{ $form->{OE} }) {
1745     $form->{rowcount} = ++$j;
1746
1747     if ($form->{l_subtotal} eq 'Y') {
1748       if ($sameitem ne $oe->{ $form->{sort} }) {
1749         &subtotal;
1750         $sameitem = $oe->{ $form->{sort} };
1751       }
1752     }
1753
1754     map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount));
1755
1756     $column_data{netamount} =
1757         "<td align=right>"
1758       . $form->format_amount(\%myconfig, $oe->{netamount}, 2, "&nbsp;")
1759       . "</td>";
1760     $column_data{tax} = "<td align=right>"
1761       . $form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount},
1762                              2, "&nbsp;")
1763       . "</td>";
1764     $column_data{amount} =
1765       "<td align=right>"
1766       . $form->format_amount(\%myconfig, $oe->{amount}, 2, "&nbsp;") . "</td>";
1767
1768     $totalnetamount += $oe->{netamount};
1769     $totalamount    += $oe->{amount};
1770
1771     $subtotalnetamount += $oe->{netamount};
1772     $subtotalamount    += $oe->{amount};
1773
1774     $column_data{ids} =
1775       qq|<td><input name="multi_id_$j" class=checkbox type=checkbox><input type="hidden" name="trans_id_$j" value="$oe->{id}"></td>|;
1776     $column_data{id}        = "<td>$oe->{id}</td>";
1777     $column_data{transdate} = "<td>$oe->{transdate}&nbsp;</td>";
1778     $column_data{reqdate}   = "<td>$oe->{reqdate}&nbsp;</td>";
1779
1780     $column_data{$ordnumber} =
1781       "<td><a href=oe.pl?action=$action&type=$form->{type}&id=$oe->{id}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&callback=$callback_escaped>$oe->{$ordnumber}</a></td>";
1782     $column_data{name} = "<td>$oe->{name}</td>";
1783
1784     $column_data{employee} = "<td>$oe->{employee}&nbsp;</td>";
1785     $column_data{shipvia}  = "<td>$oe->{shipvia}&nbsp;</td>";
1786     $column_data{globalprojectnumber}  = "<td>" . H($oe->{globalprojectnumber}) . "</td>";
1787
1788     if ($oe->{closed}) {
1789       $column_data{closed} = "<td align=center>X</td>";
1790       $column_data{open}   = "<td>&nbsp;</td>";
1791     } else {
1792       $column_data{closed} = "<td>&nbsp;</td>";
1793       $column_data{open}   = "<td align=center>X</td>";
1794     }
1795     $column_data{"delivered"} = "<td>" .
1796       ($oe->{"delivered"} ? $locale->text("Yes") : $locale->text("No")) .
1797       "</td>";
1798     $column_data{transaction_description} = "<td>" . H($oe->{transaction_description}) . "</td>";
1799
1800     $i++;
1801     $i %= 2;
1802     print "
1803         <tr class=listrow$i>";
1804
1805     map { print "\n$column_data{$_}" } @column_index;
1806
1807     print qq|
1808         </tr>
1809 |;
1810
1811   }
1812
1813   if ($form->{l_subtotal} eq 'Y') {
1814     &subtotal;
1815   }
1816
1817   # print totals
1818   print qq|
1819         <tr class=listtotal>|;
1820
1821   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
1822
1823   $column_data{netamount} =
1824     "<th class=listtotal align=right>"
1825     . $form->format_amount(\%myconfig, $totalnetamount, 2, "&nbsp;") . "</th>";
1826   $column_data{tax} = "<th class=listtotal align=right>"
1827     . $form->format_amount(\%myconfig, $totalamount - $totalnetamount,
1828                            2, "&nbsp;")
1829     . "</th>";
1830   $column_data{amount} =
1831     "<th class=listtotal align=right>"
1832     . $form->format_amount(\%myconfig, $totalamount, 2, "&nbsp;") . "</th>";
1833
1834   map { print "\n$column_data{$_}" } @column_index;
1835
1836   print qq|
1837         </tr>
1838       </td>
1839     </table>
1840   </tr>
1841   <tr>
1842     <td><hr size=3 noshade></td>
1843   </tr>
1844 </table>|;
1845
1846   # multiple invoice edit button only if gotten there via sales_order form.
1847
1848   if ($form->{type} =~ /sales_order/) {
1849     print qq|
1850   <input class"submit" type="submit" name="action" value="|
1851       . $locale->text('Continue') . qq|">
1852   <input type="hidden" name="nextsub" value="edit">
1853   <input type="hidden" name="type" value="$form->{type}">
1854   <input type="hidden" name="vc" value="$form->{vc}">
1855   <input type="hidden" name="login" value="$form->{login}">
1856   <input type="hidden" name="password" value="$form->{password}">
1857   <input type="hidden" name="callback" value="$callback">
1858   <input type="hidden" name="rowcount" value="$form->{rowcount}">|;
1859   }
1860
1861   print qq|
1862 </form>
1863
1864 <br>
1865 <form method=post action=$form->{script}>
1866
1867 <input name=callback type=hidden value="$form->{callback}">
1868
1869 <input type=hidden name=type value=$form->{type}>
1870 <input type=hidden name=vc value=$form->{vc}>
1871
1872 <input type=hidden name=login value=$form->{login}>
1873 <input type=hidden name=password value=$form->{password}>
1874
1875 </form>
1876
1877 </body>
1878 </html>
1879 |;
1880
1881   $lxdebug->leave_sub();
1882 }
1883
1884 sub subtotal {
1885   $lxdebug->enter_sub();
1886
1887   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
1888
1889   $column_data{netamount} =
1890       "<th class=listsubtotal align=right>"
1891     . $form->format_amount(\%myconfig, $subtotalnetamount, 2, "&nbsp;")
1892     . "</th>";
1893   $column_data{tax} = "<td class=listsubtotal align=right>"
1894     . $form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount,
1895                            2, "&nbsp;")
1896     . "</th>";
1897   $column_data{amount} =
1898     "<th class=listsubtotal align=right>"
1899     . $form->format_amount(\%myconfig, $subtotalamount, 2, "&nbsp;") . "</th>";
1900
1901   $subtotalnetamount = 0;
1902   $subtotalamount    = 0;
1903
1904   print "
1905         <tr class=listsubtotal>
1906 ";
1907
1908   map { print "\n$column_data{$_}" } @column_index;
1909
1910   print qq|
1911         </tr>
1912 |;
1913
1914   $lxdebug->leave_sub();
1915 }
1916
1917 sub save_and_close {
1918   $lxdebug->enter_sub();
1919
1920   if ($form->{type} =~ /_order$/) {
1921     $form->isblank("transdate", $locale->text('Order Date missing!'));
1922   } else {
1923     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1924   }
1925
1926   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1927   $form->{$idx} =~ s/^\s*//g;
1928   $form->{$idx} =~ s/\s*$//g;
1929
1930   $msg = ucfirst $form->{vc};
1931   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1932
1933   # $locale->text('Customer missing!');
1934   # $locale->text('Vendor missing!');
1935
1936   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1937     if ($form->{currency} ne $form->{defaultcurrency});
1938
1939   &validate_items;
1940   
1941   if($form->{payment_id}) { 
1942     $payment_id = $form->{payment_id};
1943   }
1944   
1945   # if the name changed get new values
1946   if (&check_name($form->{vc})) {
1947     if($form->{payment_id} eq "") { 
1948       $form->{payment_id} = $payment_id;
1949     }
1950     &update;
1951     exit;
1952   }
1953
1954   $form->{id} = 0 if $form->{saveasnew};
1955
1956   # this is for the internal notes section for the [email] Subject
1957   if ($form->{type} =~ /_order$/) {
1958     if ($form->{type} eq 'sales_order') {
1959       $form->{label} = $locale->text('Sales Order');
1960
1961       $numberfld = "sonumber";
1962       $ordnumber = "ordnumber";
1963     } else {
1964       $form->{label} = $locale->text('Purchase Order');
1965
1966       $numberfld = "ponumber";
1967       $ordnumber = "ordnumber";
1968     }
1969
1970     $err = $locale->text('Cannot save order!');
1971
1972   } else {
1973     if ($form->{type} eq 'sales_quotation') {
1974       $form->{label} = $locale->text('Quotation');
1975
1976       $numberfld = "sqnumber";
1977       $ordnumber = "quonumber";
1978     } else {
1979       $form->{label} = $locale->text('Request for Quotation');
1980
1981       $numberfld = "rfqnumber";
1982       $ordnumber = "quonumber";
1983     }
1984
1985     $err = $locale->text('Cannot save quotation!');
1986
1987   }
1988
1989   # get new number in sequence if no number is given or if saveasnew was requested
1990   if (!$form->{$ordnumber} || $form->{saveasnew}) {
1991     $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1992   }
1993
1994   relink_accounts();
1995
1996   $form->error($err) if (!OE->save(\%myconfig, \%$form));
1997
1998   # saving the history
1999   if(!exists $form->{addition}) {
2000     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2001         $form->{addition} = "SAVED";
2002         $form->save_history($form->dbconnect(\%myconfig));
2003   }
2004   # /saving the history
2005
2006   $form->redirect($form->{label} . " $form->{$ordnumber} " .
2007                   $locale->text('saved!'));
2008
2009   $lxdebug->leave_sub();
2010 }
2011
2012 sub save {
2013   $lxdebug->enter_sub();
2014
2015   if ($form->{type} =~ /_order$/) {
2016     $form->isblank("transdate", $locale->text('Order Date missing!'));
2017   } else {
2018     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2019   }
2020
2021   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
2022   $form->{$idx} =~ s/^\s*//g;
2023   $form->{$idx} =~ s/\s*$//g;
2024
2025   $msg = ucfirst $form->{vc};
2026   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
2027
2028   # $locale->text('Customer missing!');
2029   # $locale->text('Vendor missing!');
2030
2031   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
2032     if ($form->{currency} ne $form->{defaultcurrency});
2033
2034   &validate_items;
2035   
2036   if($form->{payment_id}) { 
2037     $payment_id = $form->{payment_id};
2038   }
2039   
2040   # if the name changed get new values
2041   if (&check_name($form->{vc})) {
2042     if($form->{payment_id} eq "") { 
2043       $form->{payment_id} = $payment_id;
2044     }
2045     &update;
2046     exit;
2047   }
2048
2049   $form->{id} = 0 if $form->{saveasnew};
2050
2051   # this is for the internal notes section for the [email] Subject
2052   if ($form->{type} =~ /_order$/) {
2053     if ($form->{type} eq 'sales_order') {
2054       $form->{label} = $locale->text('Sales Order');
2055
2056       $numberfld = "sonumber";
2057       $ordnumber = "ordnumber";
2058     } else {
2059       $form->{label} = $locale->text('Purchase Order');
2060
2061       $numberfld = "ponumber";
2062       $ordnumber = "ordnumber";
2063     }
2064
2065     $err = $locale->text('Cannot save order!');
2066
2067   } else {
2068     if ($form->{type} eq 'sales_quotation') {
2069       $form->{label} = $locale->text('Quotation');
2070
2071       $numberfld = "sqnumber";
2072       $ordnumber = "quonumber";
2073     } else {
2074       $form->{label} = $locale->text('Request for Quotation');
2075
2076       $numberfld = "rfqnumber";
2077       $ordnumber = "quonumber";
2078     }
2079
2080     $err = $locale->text('Cannot save quotation!');
2081
2082   }
2083
2084   $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
2085     unless $form->{$ordnumber};
2086
2087   relink_accounts();
2088
2089   OE->save(\%myconfig, \%$form);
2090
2091   # saving the history
2092   if(!exists $form->{addition}) {
2093     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2094         $form->{addition} = "SAVED";
2095         $form->save_history($form->dbconnect(\%myconfig));
2096   }
2097   # /saving the history 
2098
2099   $form->{simple_save} = 1;
2100   if(!$form->{print_and_save}) {
2101     set_headings("edit");
2102     &update;
2103     exit;
2104   }
2105   $lxdebug->leave_sub();
2106 }
2107
2108 sub delete {
2109   $lxdebug->enter_sub();
2110
2111   $form->header;
2112
2113   if ($form->{type} =~ /_order$/) {
2114     $msg       = $locale->text('Are you sure you want to delete Order Number');
2115     $ordnumber = 'ordnumber';
2116   } else {
2117     $msg = $locale->text('Are you sure you want to delete Quotation Number');
2118     $ordnumber = 'quonumber';
2119   }
2120
2121   print qq|
2122 <body>
2123
2124 <form method=post action=$form->{script}>
2125 |;
2126
2127   # delete action variable
2128   map { delete $form->{$_} } qw(action header);
2129
2130   foreach $key (keys %$form) {
2131     $form->{$key} =~ s/\"/&quot;/g;
2132     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2133   }
2134
2135   print qq|
2136 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
2137
2138 <h4>$msg $form->{$ordnumber}</h4>
2139 <p>
2140 <input type="hidden" name="yes_nextsub" value="delete_order_quotation">
2141 <input name=action class=submit type=submit value="|
2142     . $locale->text('Yes') . qq|">
2143 <input name=action class=submit type=submit onclick="history.back()" value="|
2144     . $locale->text('No') . qq|">
2145 </form>
2146
2147 </body>
2148 </html>
2149 |;
2150
2151   $lxdebug->leave_sub();
2152 }
2153
2154 sub delete_order_quotation {
2155   $lxdebug->enter_sub();
2156
2157   if ($form->{type} =~ /_order$/) {
2158     $msg = $locale->text('Order deleted!');
2159     $err = $locale->text('Cannot delete order!');
2160   } else {
2161     $msg = $locale->text('Quotation deleted!');
2162     $err = $locale->text('Cannot delete quotation!');
2163   }
2164   if (OE->delete(\%myconfig, \%$form, $spool)){
2165     # saving the history
2166     if(!exists $form->{addition}) {
2167       $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2168           $form->{addition} = "DELETED";
2169           $form->save_history($form->dbconnect(\%myconfig));
2170     }
2171     # /saving the history 
2172     $form->info($msg);
2173     exit();
2174   }
2175   $form->error($err);
2176
2177   $lxdebug->leave_sub();
2178 }
2179
2180 sub invoice {
2181   $lxdebug->enter_sub();
2182
2183   if ($form->{type} =~ /_order$/) {
2184
2185     # these checks only apply if the items don't bring their own ordnumbers/transdates.
2186     # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
2187     $form->isblank("ordnumber", $locale->text('Order Number missing!'))
2188       if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
2189     $form->isblank("transdate", $locale->text('Order Date missing!'))
2190       if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
2191
2192     # also copy deliverydate from the order
2193     $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
2194     $form->{orddate} = $form->{transdate};
2195   } else {
2196     $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
2197     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2198     $form->{ordnumber} = "";
2199     $form->{quodate} = $form->{transdate};
2200   }
2201   
2202   if($form->{payment_id}) { 
2203     $payment_id = $form->{payment_id};
2204   }
2205   
2206   # if the name changed get new values
2207   if (&check_name($form->{vc})) {
2208     if($form->{payment_id} eq "") { 
2209       $form->{payment_id} = $payment_id;
2210     }
2211     &update;
2212     exit;
2213   }
2214
2215   $form->{cp_id} *= 1;
2216
2217   for $i (1 .. $form->{rowcount}) {
2218     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2219                                                      $form->{"${_}_${i}"})
2220             if ($form->{"${_}_${i}"}) }
2221         qw(ship qty sellprice listprice basefactor));
2222   }
2223
2224   if (   $form->{type} =~ /_order/
2225       && $form->{currency} ne $form->{defaultcurrency}) {
2226
2227     # check if we need a new exchangerate
2228     $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
2229
2230     $orddate      = $form->current_date(\%myconfig);
2231     $exchangerate =
2232       $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
2233                                 $buysell);
2234
2235     if (!$exchangerate) {
2236       &backorder_exchangerate($orddate, $buysell);
2237       exit;
2238     }
2239   }
2240
2241   # close orders/quotations
2242   $form->{closed} = 1;
2243
2244   # save order if one ordnumber has been given
2245   # if not it's most likely a collective order, which can't be saved back
2246   # so they just have to be closed
2247   if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
2248     OE->close_order(\%myconfig, \%$form);
2249   } else {
2250     OE->close_orders(\%myconfig, \%$form);
2251   }
2252
2253   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
2254   $form->{duedate} =
2255     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
2256
2257   $form->{id}     = '';
2258   $form->{closed} = 0;
2259   $form->{rowcount}--;
2260   $form->{shipto} = 1;
2261
2262   if ($form->{type} =~ /_order$/) {
2263     $form->{exchangerate} = $exchangerate;
2264     &create_backorder;
2265   }
2266
2267   if (   $form->{type} eq 'purchase_order'
2268       || $form->{type} eq 'request_quotation') {
2269     $form->{title}  = $locale->text('Add Vendor Invoice');
2270     $form->{script} = 'ir.pl';
2271     $script         = "ir";
2272     $buysell        = 'sell';
2273   }
2274   if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
2275     $form->{title}  = $locale->text('Add Sales Invoice');
2276     $form->{script} = 'is.pl';
2277     $script         = "is";
2278     $buysell        = 'buy';
2279   }
2280
2281   # bo creates the id, reset it
2282   map { delete $form->{$_} }
2283     qw(id subject message cc bcc printed emailed queued);
2284   $form->{ $form->{vc} } =~ s/--.*//g;
2285   $form->{type} = "invoice";
2286
2287   # locale messages
2288   $locale = new Locale "$myconfig{countrycode}", "$script";
2289
2290   require "bin/mozilla/$form->{script}";
2291
2292   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
2293
2294   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
2295     qw(creditlimit creditremaining);
2296
2297   $currency = $form->{currency};
2298   &invoice_links;
2299
2300   $form->{currency}     = $currency;
2301   $form->{exchangerate} = "";
2302   $form->{forex}        = "";
2303   $form->{exchangerate} = $exchangerate
2304     if (
2305         $form->{forex} = (
2306                     $exchangerate =
2307                       $form->check_exchangerate(
2308                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
2309                       )));
2310
2311   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
2312
2313   &prepare_invoice;
2314
2315   # format amounts
2316   for $i (1 .. $form->{rowcount}) {
2317     $form->{"discount_$i"} =
2318       $form->format_amount(\%myconfig, $form->{"discount_$i"});
2319
2320     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
2321     $dec           = length $dec;
2322     $decimalplaces = ($dec > 2) ? $dec : 2;
2323
2324     # copy delivery date from reqdate for order -> invoice conversion
2325     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
2326       unless $form->{"deliverydate_$i"};
2327
2328     $form->{"sellprice_$i"} =
2329       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
2330                            $decimalplaces);
2331
2332     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
2333     $dec_qty = length $dec_qty;
2334     $form->{"qty_$i"} =
2335       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
2336
2337     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
2338       qw(partnumber description unit);
2339
2340   }
2341
2342   &display_form;
2343
2344   $lxdebug->leave_sub();
2345 }
2346
2347 sub backorder_exchangerate {
2348   $lxdebug->enter_sub();
2349   my ($orddate, $buysell) = @_;
2350
2351   $form->header;
2352
2353   print qq|
2354 <body>
2355
2356 <form method=post action=$form->{script}>
2357 |;
2358
2359   # delete action variable
2360   map { delete $form->{$_} } qw(action header exchangerate);
2361
2362   foreach $key (keys %$form) {
2363     $form->{$key} =~ s/\"/&quot;/g;
2364     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2365   }
2366
2367   $form->{title} = $locale->text('Add Exchangerate');
2368
2369   print qq|
2370
2371 <input type=hidden name=login value=$form->{login}>
2372 <input type=hidden name=password value=$form->{password}>
2373
2374 <input type=hidden name=exchangeratedate value=$orddate>
2375 <input type=hidden name=buysell value=$buysell>
2376
2377 <table width=100%>
2378   <tr><th class=listtop>$form->{title}</th></tr>
2379   <tr height="5"></tr>
2380   <tr>
2381     <td>
2382       <table>
2383         <tr>
2384           <th align=right>| . $locale->text('Currency') . qq|</th>
2385           <td>$form->{currency}</td>
2386         </tr>
2387         <tr>
2388           <th align=right>| . $locale->text('Date') . qq|</th>
2389           <td>$orddate</td>
2390         </tr>
2391         <tr>
2392           <th align=right>| . $locale->text('Exchangerate') . qq|</th>
2393           <td><input name=exchangerate size=11></td>
2394         </tr>
2395       </table>
2396     </td>
2397   </tr>
2398 </table>
2399
2400 <hr size=3 noshade>
2401
2402 <br>
2403 <input type=hidden name=nextsub value=save_exchangerate>
2404
2405 <input name=action class=submit type=submit value="|
2406     . $locale->text('Continue') . qq|">
2407
2408 </form>
2409
2410 </body>
2411 </html>
2412 |;
2413
2414   $lxdebug->leave_sub();
2415 }
2416
2417 sub save_exchangerate {
2418   $lxdebug->enter_sub();
2419
2420   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
2421   $form->{exchangerate} =
2422     $form->parse_amount(\%myconfig, $form->{exchangerate});
2423   $form->save_exchangerate(\%myconfig, $form->{currency},
2424                            $form->{exchangeratedate},
2425                            $form->{exchangerate}, $form->{buysell});
2426
2427   &invoice;
2428
2429   $lxdebug->leave_sub();
2430 }
2431
2432 sub create_backorder {
2433   $lxdebug->enter_sub();
2434
2435   $form->{shipped} = 1;
2436
2437   # figure out if we need to create a backorder
2438   # items aren't saved if qty != 0
2439
2440   for $i (1 .. $form->{rowcount}) {
2441     $totalqty  += $qty  = $form->{"qty_$i"};
2442     $totalship += $ship = $form->{"ship_$i"};
2443
2444     $form->{"qty_$i"} = $qty - $ship;
2445   }
2446
2447   if ($totalship == 0) {
2448     map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
2449     $form->{ordtotal} = 0;
2450     $form->{shipped}  = 0;
2451     return;
2452   }
2453
2454   if ($totalqty == $totalship) {
2455     map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
2456     $form->{ordtotal} = 0;
2457     return;
2458   }
2459
2460   @flds = (
2461     qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
2462   );
2463
2464   for $i (1 .. $form->{rowcount}) {
2465     map {
2466       $form->{"${_}_$i"} =
2467         $form->format_amount(\%myconfig, $form->{"${_}_$i"})
2468     } qw(sellprice discount);
2469   }
2470
2471   relink_accounts();
2472
2473   OE->save(\%myconfig, \%$form);
2474
2475   # rebuild rows for invoice
2476   @a     = ();
2477   $count = 0;
2478
2479   for $i (1 .. $form->{rowcount}) {
2480     $form->{"qty_$i"} = $form->{"ship_$i"};
2481
2482     if ($form->{"qty_$i"}) {
2483       push @a, {};
2484       $j = $#a;
2485       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2486       $count++;
2487     }
2488   }
2489
2490   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2491   $form->{rowcount} = $count;
2492
2493   $lxdebug->leave_sub();
2494 }
2495
2496 sub save_as_new {
2497   $lxdebug->enter_sub();
2498
2499   $form->{saveasnew} = 1;
2500   $form->{closed}    = 0;
2501   map { delete $form->{$_} } qw(printed emailed queued);
2502
2503   # Let Lx-Office assign a new order number if the user hasn't changed the
2504   # previous one. If it has been changed manually then use it as-is.
2505   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
2506   $form->{$idx} =~ s/^\s*//g;
2507   $form->{$idx} =~ s/\s*$//g;
2508   if ($form->{saved_xyznumber} &&
2509       ($form->{saved_xyznumber} eq $form->{$idx})) {
2510     delete($form->{$idx});
2511   }
2512
2513   &save;
2514
2515   $lxdebug->leave_sub();
2516 }
2517
2518 sub check_for_direct_delivery_yes {
2519   $lxdebug->enter_sub();
2520
2521   $form->{direct_delivery_checked} = 1;
2522   delete @{$form}{grep /^shipto/, keys %{ $form }};
2523   map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
2524   $form->{shipto} = 1;
2525   purchase_order();
2526   $lxdebug->leave_sub();
2527 }
2528
2529 sub check_for_direct_delivery_no {
2530   $lxdebug->enter_sub();
2531
2532   $form->{direct_delivery_checked} = 1;
2533   delete @{$form}{grep /^shipto/, keys %{ $form }};
2534   purchase_order();
2535
2536   $lxdebug->leave_sub();
2537 }
2538
2539 sub check_for_direct_delivery {
2540   $lxdebug->enter_sub();
2541
2542   if ($form->{direct_delivery_checked}
2543       || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
2544     $lxdebug->leave_sub();
2545     return;
2546   }
2547
2548   if ($form->{shipto_id}) {
2549     Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
2550
2551   } else {
2552     map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
2553   }
2554
2555   delete $form->{action};
2556   $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ref $_ eq "" } keys %{ $form } ];
2557
2558   $form->header();
2559   print $form->parse_html_template("oe/check_for_direct_delivery");
2560
2561   $lxdebug->leave_sub();
2562
2563   exit 0;
2564 }
2565
2566 sub purchase_order {
2567   $lxdebug->enter_sub();
2568
2569   if ($form->{type} eq 'sales_order') {
2570     check_for_direct_delivery();
2571   }
2572
2573   if (   $form->{type} eq 'sales_quotation'
2574       || $form->{type} eq 'request_quotation') {
2575     OE->close_order(\%myconfig, \%$form);
2576   }
2577
2578   if ($form->{type} =~ /^sales_/) {
2579     delete($form->{ordnumber});
2580   }
2581
2582   $form->{cp_id} *= 1;
2583
2584   $form->{title} = $locale->text('Add Purchase Order');
2585   $form->{vc}    = "vendor";
2586   $form->{type}  = "purchase_order";
2587
2588   &poso;
2589
2590   $lxdebug->leave_sub();
2591 }
2592
2593 sub sales_order {
2594   $lxdebug->enter_sub();
2595
2596   if (   $form->{type} eq 'sales_quotation'
2597       || $form->{type} eq 'request_quotation') {
2598     OE->close_order(\%myconfig, $form);
2599   }
2600
2601   if ($form->{type} eq "purchase_order") {
2602     delete($form->{ordnumber});
2603   }
2604
2605   $form->{cp_id} *= 1;
2606
2607   $form->{title} = $locale->text('Add Sales Order');
2608   $form->{vc}    = "customer";
2609   $form->{type}  = "sales_order";
2610
2611   &poso;
2612
2613   $lxdebug->leave_sub();
2614 }
2615
2616 sub poso {
2617   $lxdebug->enter_sub();
2618
2619   $form->{transdate} = $form->current_date(\%myconfig);
2620   delete $form->{duedate};
2621
2622   $form->{closed} = 0;
2623
2624   # reset
2625   map { delete $form->{$_} }
2626     qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
2627
2628   for $i (1 .. $form->{rowcount}) {
2629     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2630                                                      $form->{"${_}_${i}"})
2631             if ($form->{"${_}_${i}"}) }
2632         qw(ship qty sellprice listprice basefactor));
2633   }
2634
2635   &order_links;
2636
2637   &prepare_order;
2638
2639   # format amounts
2640   for $i (1 .. $form->{rowcount} - 1) {
2641     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
2642       qw(partnumber description unit);
2643   }
2644
2645   map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
2646     qw(creditlimit creditremaining);
2647
2648   &update;
2649
2650   $lxdebug->leave_sub();
2651 }
2652
2653 sub e_mail {
2654   $lxdebug->enter_sub();
2655
2656   $form->{print_and_save} = 1;
2657
2658   if (!$form->{id}) {
2659     $print_post = 1;
2660
2661     my $saved_form = save_form();
2662
2663     save();
2664
2665     my %saved_vars;
2666     map({ $saved_vars{$_} = $form->{$_}; } qw(id ordnumber quonumber));
2667     restore_form($saved_form);
2668     map({ $form->{$_} = $saved_vars{$_}; } qw(id ordnumber quonumber));
2669   }
2670
2671   edit_e_mail();
2672
2673   $lxdebug->leave_sub();
2674 }
2675
2676 sub yes {
2677   call_sub($form->{yes_nextsub});
2678 }
2679
2680 sub no {
2681   call_sub($form->{no_nextsub});
2682 }