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