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