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