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