ccc9ef1736b55ea58e54b32ee83a1bc22e906f16
[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->{"id"}} = $item->{name}.qq|--|.$item->{"id"};
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                    $vc => "ALL_" . uc($vc));
1390
1391   my %labels = ();
1392   my @values = ("");
1393   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
1394     push(@values, $item->{"id"});
1395     $labels{$item->{"id"}} = $item->{"projectnumber"};
1396   }
1397   my $projectnumber =
1398     NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
1399                          '-labels' => \%labels));
1400
1401   %labels = ();
1402   @values = ("");
1403
1404   foreach my $item (@{ $form->{($form->{vc} eq "customer" ? "ALL_CUSTOMERS" : "ALL_VENDORS")}}) {
1405     push(@values, $item->{name}.qq|--|.$item->{"id"});
1406     $labels{$item->{"id"}} = $item->{name}.qq|--|.$item->{"id"};
1407   }
1408
1409   my $vc_label = $form->{vc} eq "customer" ? $locale->text('Customer') : $locale->text('Vendor');
1410   $vc =
1411     $myconfig{vclimit} <=  scalar(@values)
1412     ? qq|<input type="text" value="| . H($form->{"old$form->{vc}"}) . qq|" name="$form->{vc}">|
1413     : NTI($cgi->popup_menu('-name' => "$form->{vc}",
1414                            '-default' => $form->{"old$form->{vc}"},
1415                            '-onChange' => 'document.getElementById(\'update_button\').click();',
1416                            '-values' => \@values,
1417                            '-labels' => \%labels));
1418
1419   $form->header;
1420
1421   print qq|
1422 <body>
1423
1424 <form method=post action=$form->{script}>
1425
1426 <table width=100%>
1427   <tr>
1428     <th class=listtop>$form->{title}</th>
1429   </tr>
1430   <tr height="5"></tr>
1431   <tr>
1432     <td>
1433       <table>
1434         <tr>
1435           <th align=right>$vc_label</th>
1436           <td colspan=3>$vc</td>
1437         </tr>
1438         $department
1439         <tr>
1440           <th align=right>$ordlabel</th>
1441           <td colspan=3><input name="$ordnumber" size=20></td>
1442         </tr>
1443         <tr>
1444           <th align="right">| . $locale->text('Transaction description') . qq|</th>
1445           <td colspan="3"><input name="transaction_description" size=20></td>
1446         </tr>
1447         <tr>
1448           <th align="right">| . $locale->text("Project Number") . qq|</th>
1449           <td colspan="3">$projectnumber</td>
1450         </tr>
1451         <tr>
1452           <th align=right>| . $locale->text('From') . qq|</th>
1453           $button1
1454           <th align=right>| . $locale->text('Bis') . qq|</th>
1455           $button2
1456         </tr>
1457         <input type=hidden name=sort value=transdate>
1458         <tr>
1459           <th align=right>| . $locale->text('Include in Report') . qq|</th>
1460           <td colspan=5>
1461             <table>
1462         <tr>
1463           <td><input type="checkbox" name="open" value="1" id="open" checked>
1464             <label for="open">| . $locale->text("Open") . qq|</td>
1465           <td><input type="checkbox" name="closed" value="1" id="closed">
1466             <label for="closed">| . $locale->text("Closed") . qq|</td>
1467         </tr>
1468         $delivered
1469               <tr>
1470                 <td><input name="l_id" class=checkbox type=checkbox value=Y>
1471                 | . $locale->text('ID') . qq|</td>
1472                 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
1473                 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
1474     . $locale->text('Date') . qq|</td>
1475                 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
1476     . $locale->text('Required by') . qq|</td>
1477               </tr>
1478               <tr>
1479                 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> ucfirst($form->{vc})</td>
1480                 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1481                 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
1482     . $locale->text('Ship via') . qq|</td>
1483                 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1484               </tr>
1485               <tr>
1486                 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
1487     . $locale->text('Amount') . qq|</td>
1488                 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
1489     . $locale->text('Tax') . qq|</td>
1490                 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
1491     . $locale->text('Total') . qq|</td>
1492               </tr>
1493               <tr>
1494           <td><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y> |
1495           . $locale->text('Project Number') . qq|</td>
1496           <td><input name="l_transaction_description" class=checkbox type=checkbox value=Y> |
1497           . $locale->text('Transaction description') . qq|</td>
1498               </tr>
1499               <tr>
1500                 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
1501     . $locale->text('Subtotal') . qq|</td>
1502               </tr>
1503             </table>
1504           </td>
1505         </tr>
1506       </table>
1507     </td>
1508   </tr>
1509   <tr><td colspan=4><hr size=3 noshade></td></tr>
1510 </table>
1511
1512 $jsscript
1513
1514 <br>
1515 <input type=hidden name=nextsub value=orders>
1516 <input type=hidden name=login value=$form->{login}>
1517 <input type=hidden name=password value=$form->{password}>
1518 <input type=hidden name=vc value=$form->{vc}>
1519 <input type=hidden name=type value=$form->{type}>
1520
1521 <input class=submit type=submit name=action value="|
1522     . $locale->text('Continue') . qq|">
1523 </form>
1524
1525 </body>
1526 </html>
1527 |;
1528
1529   $lxdebug->leave_sub();
1530 }
1531
1532 sub orders {
1533   $lxdebug->enter_sub();
1534
1535   $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1536
1537   # construct href
1538   my @fields =
1539     qw(type vc login password transdatefrom transdateto
1540        open closed notdelivered delivered department
1541        transaction_description);
1542   push @fields, $form->{vc};
1543   $href = "$form->{script}?action=orders&"
1544     . join("&", map { "${_}=" . E($form->{$_}) } @fields)
1545     . "&${ordnumber}=" . E($form->{$ordnumber});
1546   $callback = $href;
1547
1548   # split vendor / customer
1549   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) =
1550     split(/--/, $form->{ $form->{vc} });
1551
1552   OE->transactions(\%myconfig, \%$form);
1553
1554   @columns = (
1555     "transdate",               "reqdate",
1556     "id",                      "$ordnumber",
1557     "name",                    "netamount",
1558     "tax",                     "amount",
1559     "curr",                    "employee",
1560     "shipvia",                 "globalprojectnumber",
1561     "transaction_description", "open",
1562     "closed",                  "delivered"
1563   );
1564
1565   $form->{l_open} = $form->{l_closed} = "Y"
1566     if ($form->{open} && $form->{closed});
1567
1568   $form->{"l_delivered"} = "Y"
1569     if ($form->{"delivered"} && $form->{"notdelivered"});
1570
1571   foreach $item (@columns) {
1572     if ($form->{"l_$item"} eq "Y") {
1573       push @column_index, $item;
1574
1575       # add column to href and callback
1576       $callback .= "&l_$item=Y";
1577       $href     .= "&l_$item=Y";
1578     }
1579   }
1580
1581   # only show checkboxes if gotten here via sales_order form.
1582   if ($form->{type} =~ /sales_order/) {
1583     unshift @column_index, "ids";
1584   }
1585
1586   if ($form->{l_subtotal} eq 'Y') {
1587     $callback .= "&l_subtotal=Y";
1588     $href     .= "&l_subtotal=Y";
1589   }
1590
1591   if ($form->{vc} eq 'vendor') {
1592     if ($form->{type} eq 'purchase_order') {
1593       $form->{title} = $locale->text('Purchase Orders');
1594     } else {
1595       $form->{title} = $locale->text('Request for Quotations');
1596     }
1597     $name     = $locale->text('Vendor');
1598     $employee = $locale->text('Employee');
1599   }
1600   if ($form->{vc} eq 'customer') {
1601     if ($form->{type} eq 'sales_order') {
1602       $form->{title} = $locale->text('Sales Orders');
1603     } else {
1604       $form->{title} = $locale->text('Quotations');
1605     }
1606     $employee = $locale->text('Employee');
1607     $name = $locale->text('Customer');
1608   }
1609
1610   $column_header{id} =
1611       qq|<th><a class=listheading href=$href&sort=id>|
1612     . $locale->text('ID')
1613     . qq|</a></th>|;
1614   $column_header{transdate} =
1615       qq|<th><a class=listheading href=$href&sort=transdate>|
1616     . $locale->text('Date')
1617     . qq|</a></th>|;
1618   $column_header{reqdate} =
1619       qq|<th><a class=listheading href=$href&sort=reqdate>|
1620     . $locale->text('Required by')
1621     . qq|</a></th>|;
1622   $column_header{ordnumber} =
1623       qq|<th><a class=listheading href=$href&sort=ordnumber>|
1624     . $locale->text('Order')
1625     . qq|</a></th>|;
1626   $column_header{quonumber} =
1627       qq|<th><a class=listheading href=$href&sort=quonumber>|
1628     . ($form->{"type"} eq "request_quotation" ?
1629        $locale->text('RFQ') :
1630        $locale->text('Quotation'))
1631     . qq|</a></th>|;
1632   $column_header{name} =
1633     qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|;
1634   $column_header{netamount} =
1635     qq|<th class=listheading>| . $locale->text('Amount') . qq|</th>|;
1636   $column_header{tax} =
1637     qq|<th class=listheading>| . $locale->text('Tax') . qq|</th>|;
1638   $column_header{amount} =
1639     qq|<th class=listheading>| . $locale->text('Total') . qq|</th>|;
1640   $column_header{curr} =
1641     qq|<th class=listheading>| . $locale->text('Curr') . qq|</th>|;
1642   $column_header{shipvia} =
1643       qq|<th><a class=listheading href=$href&sort=shipvia>|
1644     . $locale->text('Ship via')
1645     . qq|</a></th>|;
1646   $column_header{globalprojectnumber} =
1647     qq|<th class="listheading">| . $locale->text('Project Number') . qq|</th>|;
1648   $column_header{open} =
1649     qq|<th class=listheading>| . $locale->text('O') . qq|</th>|;
1650   $column_header{closed} =
1651     qq|<th class=listheading>| . $locale->text('C') . qq|</th>|;
1652   $column_header{"delivered"} =
1653     qq|<th class="listheading">| . $locale->text("Delivered") . qq|</th>|;
1654
1655   $column_header{employee} =
1656     qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|;
1657   $column_header{transaction_description} =
1658     qq|<th><a class=listheading href="$href&sort=transaction_description">|
1659     . $locale->text("Transaction description") . qq|</a></th>|;
1660
1661   $column_header{ids} = qq|<th></th>|;
1662
1663   if ($form->{ $form->{vc} }) {
1664     $option = $locale->text(ucfirst $form->{vc});
1665     $option .= " : $form->{$form->{vc}}";
1666   }
1667   if ($form->{department}) {
1668     $option .= "\n<br>" if ($option);
1669     ($department) = split /--/, $form->{department};
1670     $option .= $locale->text('Department') . " : $department";
1671   }
1672   if ($form->{transdatefrom}) {
1673     $option .= "\n<br>"
1674       . $locale->text('From') . " "
1675       . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1676   }
1677   if ($form->{transdateto}) {
1678     $option .= "\n<br>"
1679       . $locale->text('Bis') . " "
1680       . $locale->date(\%myconfig, $form->{transdateto}, 1);
1681   }
1682   if ($form->{open}) {
1683     $option .= "\n<br>" if ($option);
1684     $option .= $locale->text('Open');
1685   }
1686   if ($form->{closed}) {
1687     $option .= "\n<br>" if ($option);
1688     $option .= $locale->text('Closed');
1689   }
1690
1691   $form->header;
1692
1693   print qq|
1694 <body>
1695
1696 <form method="post" action="oe.pl">
1697 <table width=100%>
1698   <tr>
1699     <th class=listtop>$form->{title}</th>
1700   </tr>
1701   <tr height="5"></tr>
1702   <tr>
1703     <td>$option</td>
1704   </tr>
1705   <tr>
1706     <td>
1707       <table width=100%>
1708         <tr class=listheading>|;
1709
1710   map { print "\n$column_header{$_}" } @column_index;
1711
1712   print qq|
1713         </tr>
1714 |;
1715
1716   # add sort and escape callback
1717   $callback_escaped = $form->escape($callback . "&sort=$form->{sort}");
1718
1719   if (@{ $form->{OE} }) {
1720     $sameitem = $form->{OE}->[0]->{ $form->{sort} };
1721   }
1722
1723   $action = "edit";
1724
1725   foreach $oe (@{ $form->{OE} }) {
1726     $form->{rowcount} = ++$j;
1727
1728     if ($form->{l_subtotal} eq 'Y') {
1729       if ($sameitem ne $oe->{ $form->{sort} }) {
1730         &subtotal;
1731         $sameitem = $oe->{ $form->{sort} };
1732       }
1733     }
1734
1735     map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount));
1736
1737     $column_data{netamount} =
1738         "<td align=right>"
1739       . $form->format_amount(\%myconfig, $oe->{netamount}, 2, "&nbsp;")
1740       . "</td>";
1741     $column_data{tax} = "<td align=right>"
1742       . $form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount},
1743                              2, "&nbsp;")
1744       . "</td>";
1745     $column_data{amount} =
1746       "<td align=right>"
1747       . $form->format_amount(\%myconfig, $oe->{amount}, 2, "&nbsp;") . "</td>";
1748
1749     $totalnetamount += $oe->{netamount};
1750     $totalamount    += $oe->{amount};
1751
1752     $subtotalnetamount += $oe->{netamount};
1753     $subtotalamount    += $oe->{amount};
1754
1755     $column_data{ids} =
1756       qq|<td><input name="multi_id_$j" class=checkbox type=checkbox><input type="hidden" name="trans_id_$j" value="$oe->{id}"></td>|;
1757     $column_data{id}        = "<td>$oe->{id}</td>";
1758     $column_data{transdate} = "<td>$oe->{transdate}&nbsp;</td>";
1759     $column_data{reqdate}   = "<td>$oe->{reqdate}&nbsp;</td>";
1760
1761     $column_data{$ordnumber} =
1762       "<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>";
1763     $column_data{name} = "<td>$oe->{name}</td>";
1764
1765     $column_data{employee} = "<td>$oe->{employee}&nbsp;</td>";
1766     $column_data{shipvia}  = "<td>$oe->{shipvia}&nbsp;</td>";
1767     $column_data{globalprojectnumber}  = "<td>" . H($oe->{globalprojectnumber}) . "</td>";
1768
1769     if ($oe->{closed}) {
1770       $column_data{closed} = "<td align=center>X</td>";
1771       $column_data{open}   = "<td>&nbsp;</td>";
1772     } else {
1773       $column_data{closed} = "<td>&nbsp;</td>";
1774       $column_data{open}   = "<td align=center>X</td>";
1775     }
1776     $column_data{"delivered"} = "<td>" .
1777       ($oe->{"delivered"} ? $locale->text("Yes") : $locale->text("No")) .
1778       "</td>";
1779     $column_data{transaction_description} = "<td>" . H($oe->{transaction_description}) . "</td>";
1780
1781     $i++;
1782     $i %= 2;
1783     print "
1784         <tr class=listrow$i>";
1785
1786     map { print "\n$column_data{$_}" } @column_index;
1787
1788     print qq|
1789         </tr>
1790 |;
1791
1792   }
1793
1794   if ($form->{l_subtotal} eq 'Y') {
1795     &subtotal;
1796   }
1797
1798   # print totals
1799   print qq|
1800         <tr class=listtotal>|;
1801
1802   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
1803
1804   $column_data{netamount} =
1805     "<th class=listtotal align=right>"
1806     . $form->format_amount(\%myconfig, $totalnetamount, 2, "&nbsp;") . "</th>";
1807   $column_data{tax} = "<th class=listtotal align=right>"
1808     . $form->format_amount(\%myconfig, $totalamount - $totalnetamount,
1809                            2, "&nbsp;")
1810     . "</th>";
1811   $column_data{amount} =
1812     "<th class=listtotal align=right>"
1813     . $form->format_amount(\%myconfig, $totalamount, 2, "&nbsp;") . "</th>";
1814
1815   map { print "\n$column_data{$_}" } @column_index;
1816
1817   print qq|
1818         </tr>
1819       </td>
1820     </table>
1821   </tr>
1822   <tr>
1823     <td><hr size=3 noshade></td>
1824   </tr>
1825 </table>|;
1826
1827   # multiple invoice edit button only if gotten there via sales_order form.
1828
1829   if ($form->{type} =~ /sales_order/) {
1830     print qq|
1831   <input class"submit" type="submit" name="action" value="|
1832       . $locale->text('Continue') . qq|">
1833   <input type="hidden" name="nextsub" value="edit">
1834   <input type="hidden" name="type" value="$form->{type}">
1835   <input type="hidden" name="vc" value="$form->{vc}">
1836   <input type="hidden" name="login" value="$form->{login}">
1837   <input type="hidden" name="password" value="$form->{password}">
1838   <input type="hidden" name="callback" value="$callback">
1839   <input type="hidden" name="rowcount" value="$form->{rowcount}">|;
1840   }
1841
1842   print qq|
1843 </form>
1844
1845 <br>
1846 <form method=post action=$form->{script}>
1847
1848 <input name=callback type=hidden value="$form->{callback}">
1849
1850 <input type=hidden name=type value=$form->{type}>
1851 <input type=hidden name=vc value=$form->{vc}>
1852
1853 <input type=hidden name=login value=$form->{login}>
1854 <input type=hidden name=password value=$form->{password}>
1855
1856 </form>
1857
1858 </body>
1859 </html>
1860 |;
1861
1862   $lxdebug->leave_sub();
1863 }
1864
1865 sub subtotal {
1866   $lxdebug->enter_sub();
1867
1868   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
1869
1870   $column_data{netamount} =
1871       "<th class=listsubtotal align=right>"
1872     . $form->format_amount(\%myconfig, $subtotalnetamount, 2, "&nbsp;")
1873     . "</th>";
1874   $column_data{tax} = "<td class=listsubtotal align=right>"
1875     . $form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount,
1876                            2, "&nbsp;")
1877     . "</th>";
1878   $column_data{amount} =
1879     "<th class=listsubtotal align=right>"
1880     . $form->format_amount(\%myconfig, $subtotalamount, 2, "&nbsp;") . "</th>";
1881
1882   $subtotalnetamount = 0;
1883   $subtotalamount    = 0;
1884
1885   print "
1886         <tr class=listsubtotal>
1887 ";
1888
1889   map { print "\n$column_data{$_}" } @column_index;
1890
1891   print qq|
1892         </tr>
1893 |;
1894
1895   $lxdebug->leave_sub();
1896 }
1897
1898 sub save_and_close {
1899   $lxdebug->enter_sub();
1900
1901   if ($form->{type} =~ /_order$/) {
1902     $form->isblank("transdate", $locale->text('Order Date missing!'));
1903   } else {
1904     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1905   }
1906
1907   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1908   $form->{$idx} =~ s/^\s*//g;
1909   $form->{$idx} =~ s/\s*$//g;
1910
1911   $msg = ucfirst $form->{vc};
1912   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1913
1914   # $locale->text('Customer missing!');
1915   # $locale->text('Vendor missing!');
1916
1917   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1918     if ($form->{currency} ne $form->{defaultcurrency});
1919
1920   &validate_items;
1921   
1922   if($form->{payment_id}) { 
1923     $payment_id = $form->{payment_id};
1924   }
1925   
1926   # if the name changed get new values
1927   if (&check_name($form->{vc})) {
1928     if($form->{payment_id} eq "") { 
1929       $form->{payment_id} = $payment_id;
1930     }
1931     &update;
1932     exit;
1933   }
1934
1935   $form->{id} = 0 if $form->{saveasnew};
1936
1937   # this is for the internal notes section for the [email] Subject
1938   if ($form->{type} =~ /_order$/) {
1939     if ($form->{type} eq 'sales_order') {
1940       $form->{label} = $locale->text('Sales Order');
1941
1942       $numberfld = "sonumber";
1943       $ordnumber = "ordnumber";
1944     } else {
1945       $form->{label} = $locale->text('Purchase Order');
1946
1947       $numberfld = "ponumber";
1948       $ordnumber = "ordnumber";
1949     }
1950
1951     $err = $locale->text('Cannot save order!');
1952
1953   } else {
1954     if ($form->{type} eq 'sales_quotation') {
1955       $form->{label} = $locale->text('Quotation');
1956
1957       $numberfld = "sqnumber";
1958       $ordnumber = "quonumber";
1959     } else {
1960       $form->{label} = $locale->text('Request for Quotation');
1961
1962       $numberfld = "rfqnumber";
1963       $ordnumber = "quonumber";
1964     }
1965
1966     $err = $locale->text('Cannot save quotation!');
1967
1968   }
1969
1970   # get new number in sequence if no number is given or if saveasnew was requested
1971   if (!$form->{$ordnumber} || $form->{saveasnew}) {
1972     $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1973   }
1974
1975   relink_accounts();
1976
1977   $form->error($err) if (!OE->save(\%myconfig, \%$form));
1978
1979   # saving the history
1980   if(!exists $form->{addition}) {
1981     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1982         $form->{addition} = "SAVED";
1983         $form->save_history($form->dbconnect(\%myconfig));
1984   }
1985   # /saving the history
1986
1987   $form->redirect($form->{label} . " $form->{$ordnumber} " .
1988                   $locale->text('saved!'));
1989
1990   $lxdebug->leave_sub();
1991 }
1992
1993 sub save {
1994   $lxdebug->enter_sub();
1995
1996   if ($form->{type} =~ /_order$/) {
1997     $form->isblank("transdate", $locale->text('Order Date missing!'));
1998   } else {
1999     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2000   }
2001
2002   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
2003   $form->{$idx} =~ s/^\s*//g;
2004   $form->{$idx} =~ s/\s*$//g;
2005
2006   $msg = ucfirst $form->{vc};
2007   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
2008
2009   # $locale->text('Customer missing!');
2010   # $locale->text('Vendor missing!');
2011
2012   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
2013     if ($form->{currency} ne $form->{defaultcurrency});
2014
2015   &validate_items;
2016   
2017   if($form->{payment_id}) { 
2018     $payment_id = $form->{payment_id};
2019   }
2020   
2021   # if the name changed get new values
2022   if (&check_name($form->{vc})) {
2023     if($form->{payment_id} eq "") { 
2024       $form->{payment_id} = $payment_id;
2025     }
2026     &update;
2027     exit;
2028   }
2029
2030   $form->{id} = 0 if $form->{saveasnew};
2031
2032   # this is for the internal notes section for the [email] Subject
2033   if ($form->{type} =~ /_order$/) {
2034     if ($form->{type} eq 'sales_order') {
2035       $form->{label} = $locale->text('Sales Order');
2036
2037       $numberfld = "sonumber";
2038       $ordnumber = "ordnumber";
2039     } else {
2040       $form->{label} = $locale->text('Purchase Order');
2041
2042       $numberfld = "ponumber";
2043       $ordnumber = "ordnumber";
2044     }
2045
2046     $err = $locale->text('Cannot save order!');
2047
2048   } else {
2049     if ($form->{type} eq 'sales_quotation') {
2050       $form->{label} = $locale->text('Quotation');
2051
2052       $numberfld = "sqnumber";
2053       $ordnumber = "quonumber";
2054     } else {
2055       $form->{label} = $locale->text('Request for Quotation');
2056
2057       $numberfld = "rfqnumber";
2058       $ordnumber = "quonumber";
2059     }
2060
2061     $err = $locale->text('Cannot save quotation!');
2062
2063   }
2064
2065   $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
2066     unless $form->{$ordnumber};
2067
2068   relink_accounts();
2069
2070   OE->save(\%myconfig, \%$form);
2071
2072   # saving the history
2073   if(!exists $form->{addition}) {
2074     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2075         $form->{addition} = "SAVED";
2076         $form->save_history($form->dbconnect(\%myconfig));
2077   }
2078   # /saving the history 
2079
2080   $form->{simple_save} = 1;
2081   if(!$form->{print_and_save}) {
2082     set_headings("edit");
2083     &update;
2084     exit;
2085   }
2086   $lxdebug->leave_sub();
2087 }
2088
2089 sub delete {
2090   $lxdebug->enter_sub();
2091
2092   $form->header;
2093
2094   if ($form->{type} =~ /_order$/) {
2095     $msg       = $locale->text('Are you sure you want to delete Order Number');
2096     $ordnumber = 'ordnumber';
2097   } else {
2098     $msg = $locale->text('Are you sure you want to delete Quotation Number');
2099     $ordnumber = 'quonumber';
2100   }
2101
2102   print qq|
2103 <body>
2104
2105 <form method=post action=$form->{script}>
2106 |;
2107
2108   # delete action variable
2109   map { delete $form->{$_} } qw(action header);
2110
2111   foreach $key (keys %$form) {
2112     $form->{$key} =~ s/\"/&quot;/g;
2113     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2114   }
2115
2116   print qq|
2117 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
2118
2119 <h4>$msg $form->{$ordnumber}</h4>
2120 <p>
2121 <input type="hidden" name="yes_nextsub" value="delete_order_quotation">
2122 <input name=action class=submit type=submit value="|
2123     . $locale->text('Yes') . qq|">
2124 <input name=action class=submit type=submit onclick="history.back()" value="|
2125     . $locale->text('No') . qq|">
2126 </form>
2127
2128 </body>
2129 </html>
2130 |;
2131
2132   $lxdebug->leave_sub();
2133 }
2134
2135 sub delete_order_quotation {
2136   $lxdebug->enter_sub();
2137
2138   if ($form->{type} =~ /_order$/) {
2139     $msg = $locale->text('Order deleted!');
2140     $err = $locale->text('Cannot delete order!');
2141   } else {
2142     $msg = $locale->text('Quotation deleted!');
2143     $err = $locale->text('Cannot delete quotation!');
2144   }
2145   if (OE->delete(\%myconfig, \%$form, $spool)){
2146     # saving the history
2147     if(!exists $form->{addition}) {
2148       $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2149           $form->{addition} = "DELETED";
2150           $form->save_history($form->dbconnect(\%myconfig));
2151     }
2152     # /saving the history 
2153     $form->info($msg);
2154     exit();
2155   }
2156   $form->error($err);
2157
2158   $lxdebug->leave_sub();
2159 }
2160
2161 sub invoice {
2162   $lxdebug->enter_sub();
2163
2164   if ($form->{type} =~ /_order$/) {
2165
2166     # these checks only apply if the items don't bring their own ordnumbers/transdates.
2167     # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
2168     $form->isblank("ordnumber", $locale->text('Order Number missing!'))
2169       if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
2170     $form->isblank("transdate", $locale->text('Order Date missing!'))
2171       if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
2172
2173     # also copy deliverydate from the order
2174     $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
2175     $form->{orddate} = $form->{transdate};
2176   } else {
2177     $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
2178     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2179     $form->{ordnumber} = "";
2180     $form->{quodate} = $form->{transdate};
2181   }
2182   
2183   if($form->{payment_id}) { 
2184     $payment_id = $form->{payment_id};
2185   }
2186   
2187   # if the name changed get new values
2188   if (&check_name($form->{vc})) {
2189     if($form->{payment_id} eq "") { 
2190       $form->{payment_id} = $payment_id;
2191     }
2192     &update;
2193     exit;
2194   }
2195
2196   $form->{cp_id} *= 1;
2197
2198   for $i (1 .. $form->{rowcount}) {
2199     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2200                                                      $form->{"${_}_${i}"})
2201             if ($form->{"${_}_${i}"}) }
2202         qw(ship qty sellprice listprice basefactor));
2203   }
2204
2205   if (   $form->{type} =~ /_order/
2206       && $form->{currency} ne $form->{defaultcurrency}) {
2207
2208     # check if we need a new exchangerate
2209     $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
2210
2211     $orddate      = $form->current_date(\%myconfig);
2212     $exchangerate =
2213       $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
2214                                 $buysell);
2215
2216     if (!$exchangerate) {
2217       &backorder_exchangerate($orddate, $buysell);
2218       exit;
2219     }
2220   }
2221
2222   # close orders/quotations
2223   $form->{closed} = 1;
2224
2225   # save order if one ordnumber has been given
2226   # if not it's most likely a collective order, which can't be saved back
2227   # so they just have to be closed
2228   if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
2229     OE->close_order(\%myconfig, \%$form);
2230   } else {
2231     OE->close_orders(\%myconfig, \%$form);
2232   }
2233
2234   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
2235   $form->{duedate} =
2236     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
2237
2238   $form->{id}     = '';
2239   $form->{closed} = 0;
2240   $form->{rowcount}--;
2241   $form->{shipto} = 1;
2242
2243   if ($form->{type} =~ /_order$/) {
2244     $form->{exchangerate} = $exchangerate;
2245     &create_backorder;
2246   }
2247
2248   if (   $form->{type} eq 'purchase_order'
2249       || $form->{type} eq 'request_quotation') {
2250     $form->{title}  = $locale->text('Add Vendor Invoice');
2251     $form->{script} = 'ir.pl';
2252     $script         = "ir";
2253     $buysell        = 'sell';
2254   }
2255   if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
2256     $form->{title}  = $locale->text('Add Sales Invoice');
2257     $form->{script} = 'is.pl';
2258     $script         = "is";
2259     $buysell        = 'buy';
2260   }
2261
2262   # bo creates the id, reset it
2263   map { delete $form->{$_} }
2264     qw(id subject message cc bcc printed emailed queued);
2265   $form->{ $form->{vc} } =~ s/--.*//g;
2266   $form->{type} = "invoice";
2267
2268   # locale messages
2269   $locale = new Locale "$myconfig{countrycode}", "$script";
2270
2271   require "bin/mozilla/$form->{script}";
2272
2273   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
2274
2275   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
2276     qw(creditlimit creditremaining);
2277
2278   $currency = $form->{currency};
2279   &invoice_links;
2280
2281   $form->{currency}     = $currency;
2282   $form->{exchangerate} = "";
2283   $form->{forex}        = "";
2284   $form->{exchangerate} = $exchangerate
2285     if (
2286         $form->{forex} = (
2287                     $exchangerate =
2288                       $form->check_exchangerate(
2289                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
2290                       )));
2291
2292   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
2293
2294   &prepare_invoice;
2295
2296   # format amounts
2297   for $i (1 .. $form->{rowcount}) {
2298     $form->{"discount_$i"} =
2299       $form->format_amount(\%myconfig, $form->{"discount_$i"});
2300
2301     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
2302     $dec           = length $dec;
2303     $decimalplaces = ($dec > 2) ? $dec : 2;
2304
2305     # copy delivery date from reqdate for order -> invoice conversion
2306     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
2307       unless $form->{"deliverydate_$i"};
2308
2309     $form->{"sellprice_$i"} =
2310       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
2311                            $decimalplaces);
2312
2313     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
2314     $dec_qty = length $dec_qty;
2315     $form->{"qty_$i"} =
2316       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
2317
2318     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
2319       qw(partnumber description unit);
2320
2321   }
2322
2323   &display_form;
2324
2325   $lxdebug->leave_sub();
2326 }
2327
2328 sub backorder_exchangerate {
2329   $lxdebug->enter_sub();
2330   my ($orddate, $buysell) = @_;
2331
2332   $form->header;
2333
2334   print qq|
2335 <body>
2336
2337 <form method=post action=$form->{script}>
2338 |;
2339
2340   # delete action variable
2341   map { delete $form->{$_} } qw(action header exchangerate);
2342
2343   foreach $key (keys %$form) {
2344     $form->{$key} =~ s/\"/&quot;/g;
2345     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2346   }
2347
2348   $form->{title} = $locale->text('Add Exchangerate');
2349
2350   print qq|
2351
2352 <input type=hidden name=login value=$form->{login}>
2353 <input type=hidden name=password value=$form->{password}>
2354
2355 <input type=hidden name=exchangeratedate value=$orddate>
2356 <input type=hidden name=buysell value=$buysell>
2357
2358 <table width=100%>
2359   <tr><th class=listtop>$form->{title}</th></tr>
2360   <tr height="5"></tr>
2361   <tr>
2362     <td>
2363       <table>
2364         <tr>
2365           <th align=right>| . $locale->text('Currency') . qq|</th>
2366           <td>$form->{currency}</td>
2367         </tr>
2368         <tr>
2369           <th align=right>| . $locale->text('Date') . qq|</th>
2370           <td>$orddate</td>
2371         </tr>
2372         <tr>
2373           <th align=right>| . $locale->text('Exchangerate') . qq|</th>
2374           <td><input name=exchangerate size=11></td>
2375         </tr>
2376       </table>
2377     </td>
2378   </tr>
2379 </table>
2380
2381 <hr size=3 noshade>
2382
2383 <br>
2384 <input type=hidden name=nextsub value=save_exchangerate>
2385
2386 <input name=action class=submit type=submit value="|
2387     . $locale->text('Continue') . qq|">
2388
2389 </form>
2390
2391 </body>
2392 </html>
2393 |;
2394
2395   $lxdebug->leave_sub();
2396 }
2397
2398 sub save_exchangerate {
2399   $lxdebug->enter_sub();
2400
2401   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
2402   $form->{exchangerate} =
2403     $form->parse_amount(\%myconfig, $form->{exchangerate});
2404   $form->save_exchangerate(\%myconfig, $form->{currency},
2405                            $form->{exchangeratedate},
2406                            $form->{exchangerate}, $form->{buysell});
2407
2408   &invoice;
2409
2410   $lxdebug->leave_sub();
2411 }
2412
2413 sub create_backorder {
2414   $lxdebug->enter_sub();
2415
2416   $form->{shipped} = 1;
2417
2418   # figure out if we need to create a backorder
2419   # items aren't saved if qty != 0
2420
2421   for $i (1 .. $form->{rowcount}) {
2422     $totalqty  += $qty  = $form->{"qty_$i"};
2423     $totalship += $ship = $form->{"ship_$i"};
2424
2425     $form->{"qty_$i"} = $qty - $ship;
2426   }
2427
2428   if ($totalship == 0) {
2429     map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
2430     $form->{ordtotal} = 0;
2431     $form->{shipped}  = 0;
2432     return;
2433   }
2434
2435   if ($totalqty == $totalship) {
2436     map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
2437     $form->{ordtotal} = 0;
2438     return;
2439   }
2440
2441   @flds = (
2442     qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
2443   );
2444
2445   for $i (1 .. $form->{rowcount}) {
2446     map {
2447       $form->{"${_}_$i"} =
2448         $form->format_amount(\%myconfig, $form->{"${_}_$i"})
2449     } qw(sellprice discount);
2450   }
2451
2452   relink_accounts();
2453
2454   OE->save(\%myconfig, \%$form);
2455
2456   # rebuild rows for invoice
2457   @a     = ();
2458   $count = 0;
2459
2460   for $i (1 .. $form->{rowcount}) {
2461     $form->{"qty_$i"} = $form->{"ship_$i"};
2462
2463     if ($form->{"qty_$i"}) {
2464       push @a, {};
2465       $j = $#a;
2466       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2467       $count++;
2468     }
2469   }
2470
2471   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2472   $form->{rowcount} = $count;
2473
2474   $lxdebug->leave_sub();
2475 }
2476
2477 sub save_as_new {
2478   $lxdebug->enter_sub();
2479
2480   $form->{saveasnew} = 1;
2481   $form->{closed}    = 0;
2482   map { delete $form->{$_} } qw(printed emailed queued);
2483
2484   # Let Lx-Office assign a new order number if the user hasn't changed the
2485   # previous one. If it has been changed manually then use it as-is.
2486   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
2487   $form->{$idx} =~ s/^\s*//g;
2488   $form->{$idx} =~ s/\s*$//g;
2489   if ($form->{saved_xyznumber} &&
2490       ($form->{saved_xyznumber} eq $form->{$idx})) {
2491     delete($form->{$idx});
2492   }
2493
2494   &save;
2495
2496   $lxdebug->leave_sub();
2497 }
2498
2499 sub check_for_direct_delivery_yes {
2500   $lxdebug->enter_sub();
2501
2502   $form->{direct_delivery_checked} = 1;
2503   delete @{$form}{grep /^shipto/, keys %{ $form }};
2504   map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
2505   $form->{shipto} = 1;
2506   purchase_order();
2507   $lxdebug->leave_sub();
2508 }
2509
2510 sub check_for_direct_delivery_no {
2511   $lxdebug->enter_sub();
2512
2513   $form->{direct_delivery_checked} = 1;
2514   delete @{$form}{grep /^shipto/, keys %{ $form }};
2515   purchase_order();
2516
2517   $lxdebug->leave_sub();
2518 }
2519
2520 sub check_for_direct_delivery {
2521   $lxdebug->enter_sub();
2522
2523   if ($form->{direct_delivery_checked}
2524       || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
2525     $lxdebug->leave_sub();
2526     return;
2527   }
2528
2529   if ($form->{shipto_id}) {
2530     Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
2531
2532   } else {
2533     map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
2534   }
2535
2536   delete $form->{action};
2537   $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ref $_ eq "" } keys %{ $form } ];
2538
2539   $form->header();
2540   print $form->parse_html_template("oe/check_for_direct_delivery");
2541
2542   $lxdebug->leave_sub();
2543
2544   exit 0;
2545 }
2546
2547 sub purchase_order {
2548   $lxdebug->enter_sub();
2549
2550   if ($form->{type} eq 'sales_order') {
2551     check_for_direct_delivery();
2552   }
2553
2554   if (   $form->{type} eq 'sales_quotation'
2555       || $form->{type} eq 'request_quotation') {
2556     OE->close_order(\%myconfig, \%$form);
2557   }
2558
2559   if ($form->{type} =~ /^sales_/) {
2560     delete($form->{ordnumber});
2561   }
2562
2563   $form->{cp_id} *= 1;
2564
2565   $form->{title} = $locale->text('Add Purchase Order');
2566   $form->{vc}    = "vendor";
2567   $form->{type}  = "purchase_order";
2568
2569   &poso;
2570
2571   $lxdebug->leave_sub();
2572 }
2573
2574 sub sales_order {
2575   $lxdebug->enter_sub();
2576
2577   if (   $form->{type} eq 'sales_quotation'
2578       || $form->{type} eq 'request_quotation') {
2579     OE->close_order(\%myconfig, $form);
2580   }
2581
2582   if ($form->{type} eq "purchase_order") {
2583     delete($form->{ordnumber});
2584   }
2585
2586   $form->{cp_id} *= 1;
2587
2588   $form->{title} = $locale->text('Add Sales Order');
2589   $form->{vc}    = "customer";
2590   $form->{type}  = "sales_order";
2591
2592   &poso;
2593
2594   $lxdebug->leave_sub();
2595 }
2596
2597 sub poso {
2598   $lxdebug->enter_sub();
2599
2600   $form->{transdate} = $form->current_date(\%myconfig);
2601   delete $form->{duedate};
2602
2603   $form->{closed} = 0;
2604
2605   # reset
2606   map { delete $form->{$_} }
2607     qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
2608
2609   for $i (1 .. $form->{rowcount}) {
2610     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2611                                                      $form->{"${_}_${i}"})
2612             if ($form->{"${_}_${i}"}) }
2613         qw(ship qty sellprice listprice basefactor));
2614   }
2615
2616   &order_links;
2617
2618   &prepare_order;
2619
2620   # format amounts
2621   for $i (1 .. $form->{rowcount} - 1) {
2622     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
2623       qw(partnumber description unit);
2624   }
2625
2626   map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
2627     qw(creditlimit creditremaining);
2628
2629   &update;
2630
2631   $lxdebug->leave_sub();
2632 }
2633
2634 sub e_mail {
2635   $lxdebug->enter_sub();
2636
2637   $form->{print_and_save} = 1;
2638
2639   if (!$form->{id}) {
2640     $print_post = 1;
2641
2642     my $saved_form = save_form();
2643
2644     save();
2645
2646     my %saved_vars;
2647     map({ $saved_vars{$_} = $form->{$_}; } qw(id ordnumber quonumber));
2648     restore_form($saved_form);
2649     map({ $form->{$_} = $saved_vars{$_}; } qw(id ordnumber quonumber));
2650   }
2651
2652   edit_e_mail();
2653
2654   $lxdebug->leave_sub();
2655 }
2656
2657 sub yes {
2658   call_sub($form->{yes_nextsub});
2659 }
2660
2661 sub no {
2662   call_sub($form->{no_nextsub});
2663 }