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