6629cb873d936a00bd1bc833c899bba1f3a69a51
[kivitendo-erp.git] / bin / mozilla / io.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 # Veraendert 2005-01-05 - Marco Welter <mawe@linux-studio.de> - Neue Optik  #
8 #############################################################################
9 # SQL-Ledger, Accounting
10 # Copyright (c) 1998-2002
11 #
12 #  Author: Dieter Simader
13 #   Email: dsimader@sql-ledger.org
14 #     Web: http://www.sql-ledger.org
15 #
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #
30 #######################################################################
31 #
32 # common routines used in is, ir, oe
33 #
34 #######################################################################
35
36 use SL::Common;
37 use SL::CT;
38 use SL::IC;
39 use CGI::Ajax;
40 use CGI;
41
42 require "bin/mozilla/common.pl";
43
44 # any custom scripts for this one
45 if (-f "bin/mozilla/custom_io.pl") {
46   eval { require "bin/mozilla/custom_io.pl"; };
47 }
48 if (-f "bin/mozilla/$form->{login}_io.pl") {
49   eval { require "bin/mozilla/$form->{login}_io.pl"; };
50 }
51
52 1;
53
54 # end of main
55
56 # this is for our long dates
57 # $locale->text('January')
58 # $locale->text('February')
59 # $locale->text('March')
60 # $locale->text('April')
61 # $locale->text('May ')
62 # $locale->text('June')
63 # $locale->text('July')
64 # $locale->text('August')
65 # $locale->text('September')
66 # $locale->text('October')
67 # $locale->text('November')
68 # $locale->text('December')
69
70 # this is for our short month
71 # $locale->text('Jan')
72 # $locale->text('Feb')
73 # $locale->text('Mar')
74 # $locale->text('Apr')
75 # $locale->text('May')
76 # $locale->text('Jun')
77 # $locale->text('Jul')
78 # $locale->text('Aug')
79 # $locale->text('Sep')
80 # $locale->text('Oct')
81 # $locale->text('Nov')
82 # $locale->text('Dec')
83 use SL::IS;
84 use SL::PE;
85 use SL::AM;
86 use Data::Dumper;
87 ########################################
88 # Eintrag fuer Version 2.2.0 geaendert #
89 # neue Optik im Rechnungsformular      #
90 ########################################
91 sub display_row {
92   $lxdebug->enter_sub();
93   my $numrows = shift;
94
95   my $is_sales =
96     (substr($form->{type}, 0, 6) eq "sales_")
97     || (($form->{type} eq "invoice") && ($form->{script} eq "is.pl"))
98     || ($form->{type} eq 'credit_note');
99
100   if ($lizenzen && $form->{vc} eq "customer") {
101     if ($form->{type} =~ /sales_order/) {
102       @column_index = (runningnumber, partnumber, description, ship, qty);
103     } elsif ($form->{type} =~ /sales_quotation/) {
104       @column_index = (runningnumber, partnumber, description, qty);
105     } else {
106       @column_index = (runningnumber, partnumber, description, qty);
107     }
108   } else {
109     if (   ($form->{type} =~ /purchase_order/)
110         || ($form->{type} =~ /sales_order/)) {
111       @column_index = (runningnumber, partnumber, description, ship, qty);
112         } else {
113       @column_index = (runningnumber, partnumber, description, qty);
114     }
115   }
116 ############## ENDE Neueintrag ##################
117
118   my $dimension_units = AM->retrieve_units(\%myconfig, $form, "dimension");
119   my $service_units = AM->retrieve_units(\%myconfig, $form, "service");
120   my $all_units = AM->retrieve_units(\%myconfig, $form);
121
122   push @column_index, qw(unit);
123
124   #for pricegroups column
125   if (   $form->{type} =~ (/sales_quotation/)
126       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
127       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
128       or ($form->{type} =~ /sales_order/)) {
129     push @column_index, qw(sellprice_pg);
130   }
131
132   push @column_index, qw(sellprice);
133
134   if ($form->{vc} eq 'customer') {
135     push @column_index, qw(discount);
136   }
137
138   push @column_index, "linetotal";
139
140   my $colspan = $#column_index + 1;
141
142   $form->{invsubtotal} = 0;
143   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
144
145 ########################################
146   # Eintrag fuer Version 2.2.0 geaendert #
147   # neue Optik im Rechnungsformular      #
148 ########################################
149   $column_data{runningnumber} =
150       qq|<th align="left" nowrap width="5" class="listheading">|
151     . $locale->text('No.')
152     . qq|</th>|;
153   $column_data{partnumber} =
154       qq|<th align="left" nowrap width="12" class="listheading">|
155     . $locale->text('Number')
156     . qq|</th>|;
157   $column_data{description} =
158       qq|<th align="left" nowrap width="30" class="listheading">|
159     . $locale->text('Part Description')
160     . qq|</th>|;
161   if ($form->{"type"} eq "purchase_order") {
162     $column_data{ship} =
163       qq|<th align="left" nowrap width="5" class="listheading">|
164       . $locale->text('Ship rcvd')
165       . qq|</th>|;
166   } else {
167     $column_data{ship} =
168       qq|<th align="left" nowrap width="5" class="listheading">|
169       . $locale->text('Ship')
170       . qq|</th>|;
171   }
172   $column_data{qty} =
173       qq|<th align="left" nowrap width="5" class="listheading">|
174     . $locale->text('Qty')
175     . qq|</th>|;
176   $column_data{unit} =
177       qq|<th align="left" nowrap width="5" class="listheading">|
178     . $locale->text('Unit')
179     . qq|</th>|;
180   $column_data{license} =
181       qq|<th align="left" nowrap width="10" class="listheading">|
182     . $locale->text('License')
183     . qq|</th>|;
184   $column_data{serialnr} =
185       qq|<th align="left" nowrap width="10" class="listheading">|
186     . $locale->text('Serial No.')
187     . qq|</th>|;
188   $column_data{projectnr} =
189       qq|<th align="left" nowrap width="10" class="listheading">|
190     . $locale->text('Project')
191     . qq|</th>|;
192   $column_data{sellprice} =
193       qq|<th align="left" nowrap width="15" class="listheading">|
194     . $locale->text('Price')
195     . qq|</th>|;
196   $column_data{sellprice_pg} =
197       qq|<th align="left" nowrap width="15" class="listheading">|
198     . $locale->text('Pricegroup')
199     . qq|</th>|;
200   $column_data{discount} =
201       qq|<th align="left" class="listheading">|
202     . $locale->text('Discount')
203     . qq|</th>|;
204   $column_data{linetotal} =
205       qq|<th align="left" nowrap width="10" class="listheading">|
206     . $locale->text('Extended')
207     . qq|</th>|;
208   $column_data{bin} =
209       qq|<th align="left" nowrap width="10" class="listheading">|
210     . $locale->text('Bin')
211     . qq|</th>|;
212 ############## ENDE Neueintrag ##################
213
214   $myconfig{"show_form_details"} = 1
215     unless (defined($myconfig{"show_form_details"}));
216   $form->{"show_details"} = $myconfig{"show_form_details"}
217     unless (defined($form->{"show_details"}));
218   $form->{"show_details"} = $form->{"show_details"} ? 1 : 0;
219   my $show_details_new = 1 - $form->{"show_details"};
220   my $show_details_checked = $form->{"show_details"} ? "checked" : "";
221
222   print qq|
223   <tr>
224     <td>| . $cgi->hidden("-name" => "show_details", "-value" => $form->{show_details}) . qq|
225       <input type="checkbox" id="cb_show_details" onclick="show_form_details($show_details_new);" $show_details_checked>
226       <label for="cb_show_details">| . $locale->text("Show details") . qq|</label><br>
227       <table width="100%">
228         <tr class="listheading">|;
229
230   map { print "\n$column_data{$_}" } @column_index;
231
232   print qq|
233         </tr>
234 |;
235
236   $runningnumber = $locale->text('No.');
237   $deliverydate  = $locale->text('Delivery Date');
238   $serialnumber  = $locale->text('Serial No.');
239   $projectnumber = $locale->text('Project');
240   $partsgroup    = $locale->text('Group');
241   $reqdate       = $locale->text('Reqdate');
242
243   $delvar = 'deliverydate';
244
245   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
246     $deliverydate = $locale->text('Required by');
247     $delvar       = 'reqdate';
248   }
249
250   $form->{marge_total} = 0;
251   $form->{sellprice_total} = 0;
252   $form->{lastcost_total} = 0;
253   my %projectnumber_labels = ();
254   my @projectnumber_values = ("");
255   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
256     push(@projectnumber_values, $item->{"id"});
257     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
258   }
259
260   for $i (1 .. $numrows) {
261
262     # undo formatting
263     map {
264       $form->{"${_}_$i"} =
265         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
266     } qw(qty ship discount sellprice price_new price_old) unless ($form->{simple_save});
267
268     if (!$form->{"unit_old_$i"}) {
269       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
270       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
271       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
272       $form->{"unit_old_$i"} = $form->{"unit_$i"};
273     }
274
275     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
276     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
277     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
278
279     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
280     if (!$check_units->{$form->{"selected_unit_$i"}} ||
281         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
282          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
283       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
284       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
285       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
286       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
287     }
288     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
289       if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
290         my $basefactor = 1;
291         if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
292             $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
293           $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
294             $all_units->{$form->{"unit_old_$i"}}->{"factor"};
295         }
296         $form->{"sellprice_$i"} *= $basefactor;
297         $form->{"unit_old_$i"} = $form->{"selected_unit_$i"};
298       }
299     }
300     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
301     $dec           = length $dec;
302     $decimalplaces = ($dec > 2) ? $dec : 2;
303
304     $discount =
305       $form->round_amount(
306                         $form->{"sellprice_$i"} * $form->{"discount_$i"} / 100,
307                         $decimalplaces);
308
309     $linetotal =
310       $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
311     $linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
312     my $real_sellprice = $form->{"sellprice_$i"} - $discount;
313
314     # marge calculations
315     my ($marge_font_start, $marge_font_end);
316
317     $form->{"lastcost_$i"} *= 1;
318
319     if ($real_sellprice && ($form->{"qty_$i"} * 1)) {
320       $form->{"marge_percent_$i"}     = ($real_sellprice - $form->{"lastcost_$i"}) * 100 / $real_sellprice;
321       $myconfig{"marge_percent_warn"} = 15 unless (defined($myconfig{"marge_percent_warn"}));
322
323       if ($form->{"id_$i"} &&
324           ($form->{"marge_percent_$i"} < (1 * $myconfig{"marge_percent_warn"}))) {
325         $marge_font_start = "<font color=\"#ff0000\">";
326         $marge_font_end   = "</font>";
327       }
328
329     } else {
330       $form->{"marge_percent_$i"} = 0;
331     }
332
333     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
334     $form->{"marge_absolut_$i"}  = ($real_sellprice - $form->{"lastcost_$i"}) * $form->{"qty_$i"} * $marge_adjust_credit_note;
335     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
336     $form->{"lastcost_total"}   += $form->{"lastcost_$i"} * $form->{"qty_$i"};
337     $form->{"sellprice_total"}  += $real_sellprice * $form->{"qty_$i"};
338
339     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
340
341     # convert " to &quot;
342     map { $form->{"${_}_$i"} =~ s/\"/&quot;/g }
343       qw(partnumber description unit unit_old);
344
345 ########################################
346     # Eintrag fuer Version 2.2.0 geaendert #
347     # neue Optik im Rechnungsformular      #
348 ########################################
349     $column_data{runningnumber} =
350       qq|<td><input name="runningnumber_$i" size="5" value="$i"></td>|;    # HuT
351 ############## ENDE Neueintrag ##################
352
353     $column_data{partnumber} =
354       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
355
356     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
357       $column_data{description} =
358         qq|<td><textarea name="description_$i" rows="$rows" cols="30" wrap="soft">| . H($form->{"description_$i"}) . qq|</textarea><button type="button" onclick="set_longdescription_window('longdescription_$i')">| . $locale->text('L') . qq|</button></td>|;
359     } else {
360       $column_data{description} =
361         qq|<td><input name="description_$i" size="30" value="| . $form->quote($form->{"description_$i"}) . qq|"><button type="button" onclick="set_longdescription_window('longdescription_$i')">| . $locale->text('L') . qq|</button></td>|;
362     }
363
364     (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/);
365     $qty_dec = length $qty_dec;
366
367     $column_data{qty} =
368         qq|<td align="right"><input name="qty_$i" size="5" value="|
369       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec) .qq|">|;
370     if ($form->{"formel_$i"}) {
371       $column_data{qty} .= qq|<button type="button" onclick="calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)">| . $locale->text('*/') . qq|</button>|
372         . $cgi->hidden("-name" => "formel_$i", "-value" => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"});
373     }
374     $column_data{qty} .= qq|</td>|;
375     $column_data{ship} =
376         qq|<td align="right"><input name="ship_$i" size=5 value="|
377       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
378       . qq|"></td>|;
379
380     my $is_part     = $form->{"inventory_accno_$i"};
381     my $is_assembly = $form->{"assembly_$i"};
382     my $is_assigned = $form->{"id_$i"};
383     my $this_unit = $form->{"unit_$i"};
384     if ($form->{"selected_unit_$i"} && $this_unit &&
385         $all_units->{$form->{"selected_unit_$i"}} && $all_units->{$this_unit} &&
386         ($all_units->{$form->{"selected_unit_$i"}}->{"base_unit"} eq $all_units->{$this_unit}->{"base_unit"})) {
387       $this_unit = $form->{"selected_unit_$i"};
388     } elsif (!$is_assigned ||
389              ($is_part && !$this_unit && ($all_units->{$this_unit} && ($all_units->{$this_unit}->{"base_unit"} eq $all_units->{"kg"}->{"base_unit"})))) {
390       $this_unit = "kg";
391     }
392
393     $column_data{"unit"} = "<td>" .
394        AM->unit_select_html($is_part || $is_assembly ? $dimension_units :
395                             $is_assigned ? $service_units : $all_units,
396                             "unit_$i", $this_unit,
397                             $is_assigned ? $form->{"unit_$i"} : undef)
398       . "</td>";
399
400     # build in drop down list for pricesgroups
401     if ($form->{"prices_$i"}) {
402       if  ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"}) {
403         $price_tmp = $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces);
404       } else {
405         $price_tmp = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
406       }
407
408       $column_data{sellprice_pg} =
409       qq|<td align="right"><select name="sellprice_pg_$i">$form->{"prices_$i"}</select></td>|;
410       $column_data{sellprice} =
411       qq|<td><input name="sellprice_$i" size="10" value="$price_tmp" onBlur=\"check_right_number_format(this)\"></td>|;
412     } else {
413
414       # for last row and report
415       # set pricegroup drop down list from report menu
416       if ($form->{"sellprice_$i"} != 0) {
417         $prices =
418           qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
419
420         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
421
422         $column_data{sellprice_pg} =
423           qq|<td align="right"><select name="sellprice_pg_$i">$prices</select></td>|;
424
425       } else {
426
427         # for last row
428         $column_data{sellprice_pg} = qq|<td align="right">&nbsp;</td>|;
429         }
430         
431       $column_data{sellprice} =
432       qq|<td><input name="sellprice_$i" size="10" onBlur=\"check_right_number_format(this)\" value="|
433         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
434                                $decimalplaces)
435         . qq|"></td>|;
436     }
437     $column_data{discount} =
438         qq|<td align="right"><input name="discount_$i" size=3 value="|
439       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
440       . qq|"></td>|;
441     $column_data{linetotal} =
442         qq|<td align="right">|
443       . $form->format_amount(\%myconfig, $linetotal, 2)
444       . qq|</td>|;
445     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
446
447 ########################################
448     # Eintrag fuer Version 2.2.0 geaendert #
449     # neue Optik im Rechnungsformular      #
450 ########################################
451     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
452     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
453     #     }
454     #
455     #     if ($form->{type} !~ /_quotation/) {
456     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
457     #     }
458     #
459     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
460 ############## ENDE Neueintrag ##################
461     my $j = $i % 2;
462     print qq|
463
464         <tr valign="top" class="listrow$j">|;
465
466     map { print "\n$column_data{$_}" } @column_index;
467
468     print("</tr>\n" .
469           $cgi->hidden("-name" => "unit_old_$i",
470                        "-value" => $form->{"selected_unit_$i"})
471           . "\n" .
472           $cgi->hidden("-name" => "price_new_$i",
473                        "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"}))
474           . "\n");
475     map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_}) . "\n"); }
476         ("orderitems_id_$i", "bo_$i", "pricegroup_old_$i", "price_old_$i",
477          "id_$i", "inventory_accno_$i", "bin_$i", "partsgroup_$i", "partnotes_$i",
478          "income_accno_$i", "expense_accno_$i", "listprice_$i", "assembly_$i",
479          "taxaccounts_$i", "ordnumber_$i", "transdate_$i", "cusordnumber_$i",
480          "longdescription_$i", "basefactor_$i", "marge_absolut_$i", "marge_percent_$i", "lastcost_$i"));
481
482 ########################################
483     # Eintrag fuer Version 2.2.0 geaendert #
484     # neue Optik im Rechnungsformular      #
485 ########################################
486
487     my $row_style_attr =
488       'style="display:none;"' if (!$form->{"show_details"});
489
490     # print second row
491     print qq|
492         <tr  class="listrow$j" $row_style_attr>
493           <td colspan="$colspan">
494 |;
495     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
496       my $selected = $form->{"licensenumber_$i"};
497       my $lizenzen_quoted;
498       $form->{"lizenzen_$i"} =~ s/ selected//g;
499       $form->{"lizenzen_$i"} =~
500         s/value="${selected}"\>/value="${selected}" selected\>/;
501       $lizenzen_quoted = $form->{"lizenzen_$i"};
502       $lizenzen_quoted =~ s/\"/&quot;/g;
503       print qq|
504         <b>Lizenz\#</b>&nbsp;<select name="licensenumber_$i" size="1">
505         $form->{"lizenzen_$i"}
506         </select>
507         <input type="hidden" name="lizenzen_$i" value="${lizenzen_quoted}">
508 |;
509     }
510     if ($form->{type} !~ /_quotation/) {
511       print qq|
512           <b>$serialnumber</b>&nbsp;<input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">|;
513     }
514
515     print qq|<b>$projectnumber</b>&nbsp;| .
516       NTI($cgi->popup_menu('-name' => "project_id_$i",
517                            '-values' => \@projectnumber_values,
518                            '-labels' => \%projectnumber_labels,
519                            '-default' => $form->{"project_id_$i"}));
520
521     if ($form->{type} eq 'invoice' or $form->{type} =~ /order/) {
522       my $reqdate_term =
523         ($form->{type} eq 'invoice')
524         ? 'deliverydate'
525         : 'reqdate';    # invoice uses a different term for the same thing.
526       print qq|
527         <b>${$reqdate_term}</b>&nbsp;<input name="${reqdate_term}_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"${reqdate_term}_$i"}">
528 |;
529     }
530     my $subtotalchecked = ($form->{"subtotal_$i"}) ? "checked" : "";
531     print qq|
532           <b>|.$locale->text('Subtotal').qq|</b>&nbsp;<input type="checkbox" name="subtotal_$i" value="1" "$subtotalchecked">
533 |;
534
535     if ($form->{"id_$i"} && $is_sales) {
536       print qq|
537           ${marge_font_start}<b>| . $locale->text('Ertrag') . qq|</b>&nbsp;$form->{"marge_absolut_$i"} &nbsp;$form->{"marge_percent_$i"} % ${marge_font_end}
538           &nbsp;<b>| . $locale->text('LP') . qq|</b>&nbsp;| . $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2) . qq|
539           &nbsp;<b>| . $locale->text('EK') . qq|</b>&nbsp;| . $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2);
540     }
541
542     print qq|
543           </td>
544         </tr>
545 |;
546
547 ############## ENDE Neueintrag ##################
548
549     map { $form->{"${_}_base"} += $linetotal }
550       (split(/ /, $form->{"taxaccounts_$i"}));
551
552     $form->{invsubtotal} += $linetotal;
553   }
554
555   print qq|
556       </table>
557     </td>
558   </tr>
559 |;
560
561   if (0 != ($form->{sellprice_total} * 1)) {
562     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
563   }
564
565   $lxdebug->leave_sub();
566 }
567
568 ##################################################
569 # build html-code for pricegroups in variable $form->{prices_$j}
570
571 sub set_pricegroup {
572   $lxdebug->enter_sub();
573   my $rowcount = shift;
574   for $j (1 .. $rowcount) {
575     my $pricegroup_old = $form->{"pricegroup_old_$i"};
576     if ($form->{PRICES}{$j}) {
577       $len    = 0;
578       $prices = '<option value="--">' . $locale->text("none (pricegroup)") . '</option>';
579       $price  = 0;
580       foreach $item (@{ $form->{PRICES}{$j} }) {
581
582         #$price = $form->round_amount($myconfig,  $item->{price}, 5);
583         #$price = $form->format_amount($myconfig, $item->{price}, 2);
584         $price         = $item->{price};
585         $pricegroup_id = $item->{pricegroup_id};
586         $pricegroup    = $item->{pricegroup};
587
588         # build drop down list for pricegroups
589         $prices .=
590           qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
591
592         $len += 1;
593
594         #        map {
595         #               $form->{"${_}_$j"} =
596         #               $form->format_amount(\%myconfig, $form->{"${_}_$j"})
597         #              } qw(sellprice price_new price_old);
598
599         # set new selectedpricegroup_id and prices for "Preis"
600         if ($item->{selected} && ($pricegroup_id != 0)) {
601           $form->{"pricegroup_old_$j"} = $pricegroup_id;
602           $form->{"price_new_$j"}      = $price;
603           $form->{"sellprice_$j"}      = $price;
604         }
605         if ($pricegroup_id == 0) {
606           $form->{"price_new_$j"} = $form->{"sellprice_$j"};
607         }
608       }
609       $form->{"prices_$j"} = $prices;
610     }
611   }
612   $lxdebug->leave_sub();
613 }
614
615 sub select_item {
616   $lxdebug->enter_sub();
617   @column_index = qw(ndx partnumber description onhand unit sellprice);
618
619   $column_data{ndx}        = qq|<th>&nbsp;</th>|;
620   $column_data{partnumber} =
621     qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
622   $column_data{description} =
623     qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
624   $column_data{sellprice} =
625     qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
626   $column_data{onhand} =
627     qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
628   $column_data{unit} =
629     qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
630   # list items with radio button on a form
631   $form->header;
632
633   $title   = $locale->text('Select from one of the items below');
634   $colspan = $#column_index + 1;
635
636   print qq|
637   <body>
638
639 <form method="post" action="$form->{script}">
640
641 <table width="100%">
642   <tr>
643     <th class="listtop" colspan="$colspan">$title</th>
644   </tr>
645   <tr height="5"></tr>
646   <tr class="listheading">|;
647
648   map { print "\n$column_data{$_}" } @column_index;
649
650   print qq|</tr>|;
651
652   my $i = 0;
653   foreach $ref (@{ $form->{item_list} }) {
654     $checked = ($i++) ? "" : "checked";
655
656     if ($lizenzen) {
657       if ($ref->{inventory_accno} > 0) {
658         $ref->{"lizenzen"} = qq|<option></option>|;
659         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
660           $ref->{"lizenzen"} .=
661             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
662         }
663         $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
664         $ref->{"lizenzen"} =~ s/\"/&quot;/g;
665       }
666     }
667
668     map { $ref->{$_} =~ s/\"/&quot;/g } qw(partnumber description unit);
669
670     #sk tradediscount
671     $ref->{sellprice} =
672       $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
673     $column_data{ndx} =
674       qq|<td><input name="ndx" class="radio" type="radio" value="$i" $checked></td>|;
675     $column_data{partnumber} =
676       qq|<td><input name="new_partnumber_$i" type="hidden" value="$ref->{partnumber}">$ref->{partnumber}</td>|;
677     $column_data{description} =
678       qq|<td><input name="new_description_$i" type="hidden" value="$ref->{description}">$ref->{description}</td>|;
679     $column_data{sellprice} =
680       qq|<td align="right"><input name="new_sellprice_$i" type="hidden" value="$ref->{sellprice}">|
681       . $form->format_amount(\%myconfig, $ref->{sellprice}, 2, "&nbsp;")
682       . qq|</td>|;
683     $column_data{onhand} =
684       qq|<td align="right"><input name="new_onhand_$i" type="hidden" value="$ref->{onhand}">|
685       . $form->format_amount(\%myconfig, $ref->{onhand}, '', "&nbsp;")
686       . qq|</td>|;
687     $column_data{unit} =
688       qq|<td>$ref->{unit}</td>|;
689     $j++;
690     $j %= 2;
691     print qq|
692 <tr class=listrow$j>|;
693
694     map { print "\n$column_data{$_}" } @column_index;
695
696     print("</tr>\n");
697
698     my @new_fields =
699       qw(bin listprice inventory_accno income_accno expense_accno unit weight
700          assembly taxaccounts partsgroup formel longdescription not_discountable
701          part_payment_id partnotes id lastcost);
702     push(@new_fields, "lizenzen") if ($lizenzen);
703
704     print join "\n", map { $cgi->hidden("-name" => "new_${_}_$i", "-value" => $ref->{$_}) } @new_fields;
705     print "\n";
706   }
707
708   print qq|
709 <tr><td colspan="8"><hr size="3" noshade></td></tr>
710 </table>
711
712 <input name="lastndx" type="hidden" value="$i">
713
714 |;
715
716   # delete action variable
717   map { delete $form->{$_} } qw(action item_list header);
718
719   # save all other form variables
720   foreach $key (keys %${form}) {
721     $form->{$key} =~ s/\"/&quot;/g;
722     print qq|<input name="$key" type="hidden" value="$form->{$key}">\n|;
723   }
724
725   print qq|
726 <input type="hidden" name="nextsub" value="item_selected">
727
728 <br>
729 <input class="submit" type="submit" name="action" value="|
730     . $locale->text('Continue') . qq|">
731 </form>
732
733 </body>
734 </html>
735 |;
736
737   $lxdebug->leave_sub();
738 }
739
740 sub item_selected {
741   $lxdebug->enter_sub();
742
743   # replace the last row with the checked row
744   $i = $form->{rowcount};
745   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
746
747   # index for new item
748   $j = $form->{ndx};
749
750   #sk
751   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
752   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
753
754   # if there was a price entered, override it
755   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
756
757   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} }
758     qw(id partnumber description sellprice listprice inventory_accno
759        income_accno expense_accno bin unit weight assembly taxaccounts
760        partsgroup formel longdescription not_discountable partnotes lastcost);
761   if ($form->{"part_payment_id_$i"} ne "") {
762     $form->{payment_id} = $form->{"part_payment_id_$i"};
763   }
764
765   if ($lizenzen) {
766     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
767   }
768
769   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
770   $dec           = length $dec;
771   $decimalplaces = ($dec > 2) ? $dec : 2;
772
773   if ($sellprice) {
774     $form->{"sellprice_$i"} = $sellprice;
775   } else {
776
777     # if there is an exchange rate adjust sellprice
778     if (($form->{exchangerate} * 1) != 0) {
779       $form->{"sellprice_$i"} /= $form->{exchangerate};
780       $form->{"sellprice_$i"} =
781         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
782     }
783   }
784
785   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
786     qw(sellprice listprice weight);
787
788   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
789   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
790   
791   if ($form->{"not_discountable_$i"}) {
792     $form->{"discount_$i"} = 0;
793   }
794
795   $amount =
796     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
797     $form->{"qty_$i"};
798   map { $form->{"${_}_base"} += $amount }
799     (split / /, $form->{"taxaccounts_$i"});
800   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
801     $form->{"taxaccounts_$i"}
802     if !$form->{taxincluded};
803
804   $form->{creditremaining} -= $amount;
805
806   $form->{"runningnumber_$i"} = $i;
807
808   # delete all the new_ variables
809   for $i (1 .. $form->{lastndx}) {
810     map { delete $form->{"new_${_}_$i"} }
811       qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
812   }
813
814   map { delete $form->{$_} } qw(ndx lastndx nextsub);
815
816   # format amounts
817   map {
818     $form->{"${_}_$i"} =
819       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
820   } qw(sellprice listprice) if $form->{item} ne 'assembly';
821
822   # get pricegroups for parts
823   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
824
825   # build up html code for prices_$i
826   set_pricegroup($form->{rowcount});
827
828   &display_form;
829
830   $lxdebug->leave_sub();
831 }
832
833 sub new_item {
834   $lxdebug->enter_sub();
835
836   # change callback
837   $form->{old_callback} = $form->escape($form->{callback}, 1);
838   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
839
840   # delete action
841   delete $form->{action};
842
843   # save all other form variables in a previousform variable
844   foreach $key (keys %$form) {
845
846     # escape ampersands
847     $form->{$key} =~ s/&/%26/g;
848     $previousform .= qq|$key=$form->{$key}&|;
849   }
850   chop $previousform;
851   $previousform = $form->escape($previousform, 1);
852
853   $i = $form->{rowcount};
854   map { $form->{"${_}_$i"} =~ s/\"/&quot;/g } qw(partnumber description);
855
856   $form->header;
857
858   print qq|
859 <body>
860
861 <h4 class="error">| . $locale->text('Item not on file!') . qq|
862
863 <p>
864 | . $locale->text('What type of item is this?') . qq|</h4>
865
866 <form method="post" action="ic.pl">
867
868 <p>
869
870   <input class="radio" type="radio" name="item" value="part" checked>&nbsp;|
871     . $locale->text('Part') . qq|<br>
872   <input class="radio" type="radio" name="item" value="service">&nbsp;|
873     . $locale->text('Service');
874
875   print $cgi->hidden("-name" => "previousform", "-value" => $previousform);
876   map { print $cgi->hidden("-name" => $_, "-value" => $form->{$_}); }        qw(rowcount vc login password);
877   map { print $cgi->hidden("-name" => $_, "-value" => $form->{"${_}_$i"}); } qw(partnumber description unit sellprice);
878   print $cgi->hidden("-name" => "taxaccount2", "-value" => $form->{taxaccounts});
879
880 print qq|
881 <input type="hidden" name="nextsub" value="add">
882
883 <p>
884 <input class="submit" type="submit" name="action" value="|
885     . $locale->text('Continue') . qq|">
886 </form>
887
888 </body>
889 </html>
890 |;
891
892   $lxdebug->leave_sub();
893 }
894
895 sub display_form {
896   $lxdebug->enter_sub();
897
898   relink_accounts();
899
900   my $new_rowcount = $form->{"rowcount"} * 1 + 1;
901   $form->{"project_id_${new_rowcount}"} = $form->{"globalproject_id"};
902
903   $form->language_payment(\%myconfig);
904
905   # if we have a display_form
906   if ($form->{display_form}) {
907     call_sub($form->{"display_form"});
908     exit;
909   }
910
911   Common::webdav_folder($form) if ($webdav);
912
913   #   if (   $form->{print_and_post}
914   #       && $form->{second_run}
915   #       && ($form->{action} eq "display_form")) {
916   #     for (keys %$form) { $old_form->{$_} = $form->{$_} }
917   #     $old_form->{rowcount}++;
918   #
919   #     #$form->{rowcount}--;
920   #     #$form->{rowcount}--;
921   #
922   #     $form->{print_and_post} = 0;
923   #
924   #     &print_form($old_form);
925   #     exit;
926   #   }
927   #
928   #   $form->{action}   = "";
929   #   $form->{resubmit} = 0;
930   #
931   #   if ($form->{print_and_post} && !$form->{second_run}) {
932   #     $form->{second_run} = 1;
933   #     $form->{action}     = "display_form";
934   #     $form->{rowcount}--;
935   #     my $rowcount = $form->{rowcount};
936   #
937   #     # get pricegroups for parts
938   #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
939   #
940   #     # build up html code for prices_$i
941   #     set_pricegroup($rowcount);
942   #
943   #     $form->{resubmit} = 1;
944   #
945   #   }
946   &form_header;
947
948   $numrows    = ++$form->{rowcount};
949   $subroutine = "display_row";
950
951   if ($form->{item} eq 'part') {
952
953     #set preisgruppenanzahl
954     $numrows    = $form->{price_rows};
955     $subroutine = "price_row";
956
957     &{$subroutine}($numrows);
958
959     $numrows    = ++$form->{makemodel_rows};
960     $subroutine = "makemodel_row";
961   }
962   if ($form->{item} eq 'assembly') {
963     $numrows    = $form->{price_rows};
964     $subroutine = "price_row";
965
966     &{$subroutine}($numrows);
967
968     $numrows    = ++$form->{makemodel_rows};
969     $subroutine = "makemodel_row";
970
971     # create makemodel rows
972     &{$subroutine}($numrows);
973
974     $numrows    = ++$form->{assembly_rows};
975     $subroutine = "assembly_row";
976   }
977   if ($form->{item} eq 'service') {
978     $numrows    = $form->{price_rows};
979     $subroutine = "price_row";
980
981     &{$subroutine}($numrows);
982
983     $numrows = 0;
984   }
985
986   # create rows
987   &{$subroutine}($numrows) if $numrows;
988
989   &form_footer;
990
991   $lxdebug->leave_sub();
992 }
993
994 sub check_form {
995   $lxdebug->enter_sub();
996   my @a     = ();
997   my $count = 0;
998   my @flds  = (
999     qw(id partnumber description qty ship sellprice unit discount inventory_accno income_accno expense_accno listprice taxaccounts bin assembly weight projectnumber project_id oldprojectnumber runningnumber serialnumber partsgroup payment_id not_discountable shop ve gv buchungsgruppen_id language_values sellprice_pg pricegroup_old price_old price_new unit_old ordnumber transdate longdescription basefactor marge_absolut marge_percent lastcost )
1000   );
1001
1002
1003   # remove any makes or model rows
1004   if ($form->{item} eq 'part') {
1005     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1006       qw(listprice sellprice lastcost weight rop);
1007
1008     @flds = (make, model);
1009     for my $i (1 .. ($form->{makemodel_rows})) {
1010       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
1011         push @a, {};
1012         my $j = $#a;
1013
1014         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
1015         $count++;
1016       }
1017     }
1018
1019     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
1020     $form->{makemodel_rows} = $count;
1021
1022   } elsif ($form->{item} eq 'assembly') {
1023
1024     $form->{sellprice} = 0;
1025     $form->{weight}    = 0;
1026     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1027       qw(listprice rop stock);
1028
1029     @flds =
1030       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
1031
1032     for my $i (1 .. ($form->{assembly_rows} - 1)) {
1033       if ($form->{"qty_$i"}) {
1034         push @a, {};
1035         my $j = $#a;
1036
1037         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1038
1039         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
1040
1041         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
1042
1043         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
1044         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
1045         $count++;
1046       }
1047     }
1048
1049     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
1050
1051     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
1052     $form->{assembly_rows} = $count;
1053
1054     $count = 0;
1055     @flds  = qw(make model);
1056     @a     = ();
1057
1058     for my $i (1 .. ($form->{makemodel_rows})) {
1059       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
1060         push @a, {};
1061         my $j = $#a;
1062
1063         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
1064         $count++;
1065       }
1066     }
1067
1068     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
1069     $form->{makemodel_rows} = $count;
1070
1071   } elsif ($form->{item} eq 'service') {
1072     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost);
1073
1074   } else {
1075
1076     # this section applies to invoices and orders
1077     # remove any empty numbers
1078     if ($form->{rowcount}) {
1079       for my $i (1 .. $form->{rowcount} - 1) {
1080         if ($form->{"partnumber_$i"}) {
1081           push @a, {};
1082           my $j = $#a;
1083
1084           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
1085           $count++;
1086           if ($lizenzen) {
1087             if ($form->{"licensenumber_$i"} == -1) {
1088               &new_license($i);
1089               exit;
1090             }
1091           }
1092         }
1093       }
1094
1095       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
1096       $form->{rowcount} = $count;
1097
1098       $form->{creditremaining} -= &invoicetotal;
1099
1100     }
1101   }
1102
1103   #sk
1104   # if pricegroups
1105   if (   $form->{type} =~ (/sales_quotation/)
1106       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
1107       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
1108       or ($form->{type} =~ /sales_order/)) {
1109
1110     # get pricegroups for parts
1111     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1112
1113     # build up html code for prices_$i
1114     set_pricegroup($form->{rowcount});
1115
1116   }
1117
1118   &display_form;
1119
1120   $lxdebug->leave_sub();
1121 }
1122
1123 sub invoicetotal {
1124   $lxdebug->enter_sub();
1125
1126   $form->{oldinvtotal} = 0;
1127
1128   # add all parts and deduct paid
1129   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
1130
1131   my ($amount, $sellprice, $discount, $qty);
1132
1133   for my $i (1 .. $form->{rowcount}) {
1134     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1135     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
1136     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1137
1138     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
1139
1140     $amount = $sellprice * (1 - $discount / 100) * $qty;
1141     map { $form->{"${_}_base"} += $amount }
1142       (split (/ /, $form->{"taxaccounts_$i"}));
1143     $form->{oldinvtotal} += $amount;
1144   }
1145
1146   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1147     split(/ /, $form->{taxaccounts})
1148     if !$form->{taxincluded};
1149
1150   $form->{oldtotalpaid} = 0;
1151   for $i (1 .. $form->{paidaccounts}) {
1152     $form->{oldtotalpaid} += $form->{"paid_$i"};
1153   }
1154
1155   $lxdebug->leave_sub();
1156
1157   # return total
1158   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
1159 }
1160
1161 sub validate_items {
1162   $lxdebug->enter_sub();
1163
1164   # check if items are valid
1165   if ($form->{rowcount} == 1) {
1166     &update;
1167     exit;
1168   }
1169
1170   for $i (1 .. $form->{rowcount} - 1) {
1171     $form->isblank("partnumber_$i",
1172                    $locale->text('Number missing in Row') . " $i");
1173   }
1174
1175   $lxdebug->leave_sub();
1176 }
1177
1178 sub order {
1179   $lxdebug->enter_sub();
1180   if ($form->{second_run}) {
1181     $form->{print_and_post} = 0;
1182   }
1183   $form->{ordnumber} = $form->{invnumber};
1184
1185   $form->{old_employee_id} = $form->{employee_id};
1186   $form->{old_salesman_id} = $form->{salesman_id};
1187
1188   map { delete $form->{$_} } qw(id printed emailed queued);
1189   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
1190     $form->{title} = $locale->text('Add Purchase Order');
1191     $form->{vc}    = 'vendor';
1192     $form->{type}  = 'purchase_order';
1193     $buysell       = 'sell';
1194   }
1195   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
1196     $form->{title} = $locale->text('Add Sales Order');
1197     $form->{vc}    = 'customer';
1198     $form->{type}  = 'sales_order';
1199     $buysell       = 'buy';
1200   }
1201   $form->{script} = 'oe.pl';
1202
1203   $form->{shipto} = 1;
1204
1205   $form->{rowcount}--;
1206
1207   $form->{cp_id} *= 1;
1208
1209   require "bin/mozilla/$form->{script}";
1210   my $script = $form->{"script"};
1211   $script =~ s|.*/||;
1212   $script =~ s|.pl$||;
1213   $locale = new Locale($language, $script);
1214
1215   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1216
1217   $currency = $form->{currency};
1218
1219   &order_links;
1220
1221   $form->{currency}     = $currency;
1222   $form->{exchangerate} = "";
1223   $form->{forex}        = "";
1224   $form->{exchangerate} = $exchangerate
1225     if (
1226         $form->{forex} = (
1227                   $exchangerate =
1228                     $form->check_exchangerate(
1229                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1230                     )));
1231
1232   for $i (1 .. $form->{rowcount}) {
1233     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
1234                                                      $form->{"${_}_${i}"})
1235             if ($form->{"${_}_${i}"}) }
1236         qw(ship qty sellprice listprice basefactor));
1237   }
1238
1239   &prepare_order;
1240   &display_form;
1241
1242   $lxdebug->leave_sub();
1243 }
1244
1245 sub quotation {
1246   $lxdebug->enter_sub();
1247   if ($form->{second_run}) {
1248     $form->{print_and_post} = 0;
1249   }
1250   map { delete $form->{$_} } qw(id printed emailed queued);
1251
1252   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
1253     $form->{title} = $locale->text('Add Request for Quotation');
1254     $form->{vc}    = 'vendor';
1255     $form->{type}  = 'request_quotation';
1256     $buysell       = 'sell';
1257   }
1258   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
1259     $form->{title} = $locale->text('Add Quotation');
1260     $form->{vc}    = 'customer';
1261     $form->{type}  = 'sales_quotation';
1262     $buysell       = 'buy';
1263   }
1264
1265   $form->{cp_id} *= 1;
1266
1267   $form->{script} = 'oe.pl';
1268
1269   $form->{shipto} = 1;
1270
1271   $form->{rowcount}--;
1272
1273   require "bin/mozilla/$form->{script}";
1274
1275   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
1276
1277   $currency = $form->{currency};
1278
1279   &order_links;
1280
1281   $form->{currency}     = $currency;
1282   $form->{exchangerate} = "";
1283   $form->{forex}        = "";
1284   $form->{exchangerate} = $exchangerate
1285     if (
1286         $form->{forex} = (
1287                   $exchangerate =
1288                     $form->check_exchangerate(
1289                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1290                     )));
1291
1292   for $i (1 .. $form->{rowcount}) {
1293     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
1294                                                      $form->{"${_}_${i}"})
1295             if ($form->{"${_}_${i}"}) }
1296         qw(ship qty sellprice listprice basefactor));
1297   }
1298
1299   &prepare_order;
1300   &display_form;
1301
1302   $lxdebug->leave_sub();
1303 }
1304
1305 sub request_for_quotation {
1306   quotation();
1307 }
1308
1309 sub edit_e_mail {
1310   $lxdebug->enter_sub();
1311   if ($form->{second_run}) {
1312     $form->{print_and_post} = 0;
1313     $form->{resubmit}       = 0;
1314   }
1315
1316   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
1317
1318   if ($form->{"cp_id"} && !$form->{"email"}) {
1319     CT->get_contact(\%myconfig, $form);
1320     $form->{"email"} = $form->{"cp_email"};
1321   }
1322
1323   $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
1324
1325   $form->{oldmedia} = $form->{media};
1326   $form->{media}    = "email";
1327
1328   my $attachment_filename = $form->generate_attachment_filename();
1329
1330   $form->{"fokus"} = $form->{"email"} ? "Form.subject" : "Form.email";
1331   $form->header;
1332
1333   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
1334   @dont_hide_key_list = qw(action email cc bcc subject message formname sendmode format header override);
1335   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
1336   @hidden_keys = grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
1337
1338   print $form->parse_html_template('generic/edit_email', 
1339                                   { title           => $title,
1340                                     a_filename      => $attachment_filename,
1341                                     _print_options_ => print_options({ 'inline' => 1 }),
1342                                     HIDDEN          => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
1343                                     SHOW_BCC        => $myconfig{role} eq 'admin' });
1344
1345   $lxdebug->leave_sub();
1346 }
1347
1348 sub send_email {
1349   $lxdebug->enter_sub();
1350
1351   my $callback = $form->{script} . "?action=edit";
1352   map({ $callback .= "\&${_}=" . E($form->{$_}); }
1353       qw(login password type id));
1354
1355   print_form("return");
1356
1357   Common->save_email_status(\%myconfig, $form);
1358
1359   $form->{callback} = $callback;
1360   $form->redirect();
1361
1362   $lxdebug->leave_sub();
1363 }
1364
1365 # generate the printing options displayed at the bottom of oe and is forms.
1366 # this function will attempt to guess what type of form is displayed, and will generate according options
1367 #
1368 # about the coding: 
1369 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
1370 # the opthash function builds hashrefs which are then pieced together for the template arrays.
1371 # unneeded options are "undef"ed out, and then grepped out. 
1372 #
1373 # the inline options is untested, but intended to be used later in metatemplating
1374 sub print_options {
1375   $lxdebug->enter_sub();
1376
1377   my ($options) = @_;
1378
1379   $options ||= { };
1380
1381   # names 3 parameters and returns a hashref, for use in templates
1382   sub opthash { +{ value => shift, selected => shift, oname => shift } }
1383   (@FORMNAME, @FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
1384
1385   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
1386   $form->{sendmode}   = "attachment";
1387   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
1388   $form->{copies}     = $form->{copies} || $myconfig{copies} || 3;
1389   $form->{media}      = $form->{media} || $myconfig{default_media} || "screen";
1390   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
1391                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
1392
1393   $form->{PD}{ $form->{formname} } = "selected";
1394   $form->{DF}{ $form->{format} }   = "selected";
1395   $form->{OP}{ $form->{media} }    = "selected";
1396   $form->{SM}{ $form->{formname} } = "selected";
1397
1398   push @FORMNAME, grep $_,
1399     ($form->{type} eq 'purchase_order') ? (
1400       opthash("purchase_order", $form->{PD}{purchase_order}, $locale->text('Purchase Order')),
1401       opthash("bin_list", $form->{PD}{bin_list}, $locale->text('Bin List')) 
1402     ) : undef,
1403     ($form->{type} eq 'credit_note') ?
1404       opthash("credit_note", $form->{PD}{credit_note}, $locale->text('Credit Note')) : undef,
1405     ($form->{type} eq 'sales_order') ? (
1406       opthash("sales_order", $form->{PD}{sales_order}, $locale->text('Confirmation')),
1407       opthash("proforma", $form->{PD}{proforma}, $locale->text('Proforma Invoice')),
1408       opthash("pick_list", $form->{PD}{pick_list}, $locale->text('Pick List')),
1409       opthash("packing_list", $form->{PD}{packing_list}, $locale->text('Packing List')) 
1410     ) : undef,
1411     ($form->{type} =~ /_quotation$/) ?
1412       opthash("$`_quotation", $form->{PD}{"$`_quotation"}, $locale->text('Quotation')) : undef,
1413     ($form->{type} eq 'invoice') ? (
1414       opthash("invoice", $form->{PD}{invoice}, $locale->text('Invoice')),
1415       opthash("proforma", $form->{PD}{proforma}, $locale->text('Proforma Invoice')),
1416       opthash("packing_list", $form->{PD}{packing_list}, $locale->text('Packing List'))
1417     ) : undef,
1418     ($form->{type} eq 'invoice' && $form->{storno}) ? (
1419       opthash("storno_invoice", $form->{PD}{storno_invoice}, $locale->text('Storno Invoice')),
1420       opthash("storno_packing_list", $form->{PD}{storno_packing_list}, $locale->text('Storno Packing List')) 
1421     ) : undef,
1422     ($form->{type} eq 'credit_note') ?
1423       opthash("credit_note", $form->{PD}{credit_note}, $locale->text('Credit Note')) : undef;
1424
1425   push @SENDMODE, 
1426     opthash("attachment", $form->{SM}{attachment}, $locale->text('Attachment')),
1427     opthash("inline", $form->{SM}{inline}, $locale->text('In-line'))
1428       if ($form->{media} eq 'email');
1429
1430   push @MEDIA, grep $_,
1431       opthash("screen", $form->{OP}{screen}, $locale->text('Screen')),
1432     (scalar @{ $form->{printers} } && $latex_templates) ?
1433       opthash("printer", $form->{OP}{printer}, $locale->text('Printer')) : undef,
1434     ($latex_templates && !$options->{no_queue}) ?
1435       opthash("queue", $form->{OP}{queue}, $locale->text('Queue')) : undef
1436         if ($form->{media} ne 'email');
1437
1438   push @FORMAT, grep $_,
1439     ($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)
1440      && !$options->{no_opendocument_pdf}) ?
1441       opthash("opendocument_pdf", $form->{DF}{"opendocument_pdf"}, $locale->text("PDF (OpenDocument/OASIS)")) : undef,
1442     ($latex_templates) ?
1443       opthash("pdf", $form->{DF}{pdf}, $locale->text('PDF')) : undef,
1444     ($latex_templates && !$options->{no_postscript}) ?
1445       opthash("postscript", $form->{DF}{postscript}, $locale->text('Postscript')) : undef,
1446     (!$options->{no_html}) ?
1447       opthash("html", $form->{DF}{html}, "HTML") : undef,
1448     ($opendocument_templates && !$options->{no_opendocument}) ?
1449       opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef;
1450
1451   push @LANGUAGE_ID, 
1452     map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
1453       if (ref $form->{languages} eq 'ARRAY');
1454
1455   push @PRINTER_ID, 
1456     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
1457       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
1458
1459   @SELECTS = map { sname => lc $_, DATA => \@$_, show => scalar @$_ }, qw(FORMNAME LANGUAGE_ID FORMAT SENDMODE MEDIA PRINTER_ID);
1460
1461   my %dont_display_groupitems = (
1462     'dunning' => 1,
1463     );
1464
1465   %template_vars = (
1466     display_copies       => scalar @{ $form->{printers} } && $latex_templates && $form->{media} ne 'email',
1467     display_remove_draft => (!$form->{id} && $form->{draft_id}),
1468     display_groupitems   => !$dont_display_groupitems{$form->{type}},
1469     groupitems_checked   => $form->{groupitems} ? "checked" : '',
1470     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
1471   );
1472
1473   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
1474
1475   if ($options->{inline}) {
1476     $lxdebug->leave_sub() and return $print_options;
1477   } else {
1478     print $print_options; $lxdebug->leave_sub();
1479   }
1480 }
1481
1482 sub print {
1483   $lxdebug->enter_sub();
1484
1485   if ($form->{print_nextsub}) {
1486     call_sub($form->{print_nextsub});
1487     $lxdebug->leave_sub();
1488     return;
1489   }
1490
1491   # if this goes to the printer pass through
1492   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
1493     $form->error($locale->text('Select postscript or PDF!'))
1494       if ($form->{format} !~ /(postscript|pdf)/);
1495
1496     $old_form = new Form;
1497     map { $old_form->{$_} = $form->{$_} } keys %$form;
1498   }
1499
1500   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
1501     if ($form->{formname} eq "proforma") {
1502       $form->{proforma} = 1;
1503     }
1504     $form->{print_and_save} = 1;
1505     my $formname = $form->{formname};
1506     &save();
1507     $form->{formname} = $formname;
1508     &edit();
1509     exit;
1510   }
1511
1512   &print_form($old_form);
1513
1514   $lxdebug->leave_sub();
1515 }
1516
1517 sub print_form {
1518   $lxdebug->enter_sub();
1519   my ($old_form) = @_;
1520
1521   $inv       = "inv";
1522   $due       = "due";
1523   $numberfld = "invnumber";
1524
1525   $display_form =
1526     ($form->{display_form}) ? $form->{display_form} : "display_form";
1527
1528   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
1529   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
1530
1531   if ($form->{formname} eq "invoice") {
1532     $form->{label} = $locale->text('Invoice');
1533   }
1534   if ($form->{formname} eq "packing_list") {
1535
1536     # this is from an invoice
1537     $form->{label} = $locale->text('Packing List');
1538   }
1539   if ($form->{formname} eq 'sales_order') {
1540     $inv                  = "ord";
1541     $due                  = "req";
1542     $form->{"${inv}date"} = $form->{transdate};
1543     $form->{label}        = $locale->text('Confirmation');
1544     $numberfld            = "sonumber";
1545     $order                = 1;
1546   }
1547
1548   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
1549     $inv                  = "inv";
1550     $due                  = "due";
1551     $form->{"${inv}date"} = $form->{invdate};
1552     $form->{label}        = $locale->text('Proforma Invoice');
1553     $numberfld            = "sonumber";
1554     $order                = 0;
1555   }
1556
1557   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
1558     $inv                  = "inv";
1559     $due                  = "due";
1560     $form->{"${inv}date"} = $form->{transdate};
1561     $form->{"invdate"}    = $form->{transdate};
1562     $form->{invnumber}    = $form->{ordnumber};
1563     $form->{label}        = $locale->text('Proforma Invoice');
1564     $numberfld            = "sonumber";
1565     $order                = 1;
1566   }
1567
1568   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
1569
1570     # we use the same packing list as from an invoice
1571     $inv = "ord";
1572     $due = "req";
1573     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
1574     $form->{label} = $locale->text('Packing List');
1575     $order = 1;
1576     # set invnumber for template packing_list 
1577     $form->{invnumber}   = $form->{ordnumber};
1578   }
1579   if ($form->{formname} eq 'pick_list') {
1580     $inv                  = "ord";
1581     $due                  = "req";
1582     $form->{"${inv}date"} =
1583       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
1584     $form->{label} = $locale->text('Pick List');
1585     $order = 1 unless $form->{type} eq 'invoice';
1586   }
1587   if ($form->{formname} eq 'purchase_order') {
1588     $inv                  = "ord";
1589     $due                  = "req";
1590     $form->{"${inv}date"} = $form->{transdate};
1591     $form->{label}        = $locale->text('Purchase Order');
1592     $numberfld            = "ponumber";
1593     $order                = 1;
1594   }
1595   if ($form->{formname} eq 'bin_list') {
1596     $inv                  = "ord";
1597     $due                  = "req";
1598     $form->{"${inv}date"} = $form->{transdate};
1599     $form->{label}        = $locale->text('Bin List');
1600     $order                = 1;
1601   }
1602   if ($form->{formname} eq 'sales_quotation') {
1603     $inv                  = "quo";
1604     $due                  = "req";
1605     $form->{"${inv}date"} = $form->{transdate};
1606     $form->{label}        = $locale->text('Quotation');
1607     $numberfld            = "sqnumber";
1608     $order                = 1;
1609   }
1610
1611   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
1612     $inv                  = "quo";
1613     $due                  = "req";
1614     $form->{"${inv}date"} = $form->{transdate};
1615     $form->{"invdate"}    = $form->{transdate};
1616     $form->{label}        = $locale->text('Proforma Invoice');
1617     $numberfld            = "sqnumber";
1618     $order                = 1;
1619   }
1620
1621   if ($form->{formname} eq 'request_quotation') {
1622     $inv                  = "quo";
1623     $due                  = "req";
1624     $form->{"${inv}date"} = $form->{transdate};
1625     $form->{label}        = $locale->text('RFQ');
1626     $numberfld            = "rfqnumber";
1627     $order                = 1;
1628   }
1629
1630   $form->isblank("email", $locale->text('E-mail address missing!'))
1631     if ($form->{media} eq 'email');
1632   $form->isblank("${inv}date",
1633            $locale->text($form->{label}) 
1634            . ": "
1635            . $locale->text(' Date missing!'));
1636
1637   # $locale->text('Invoice Number missing!')
1638   # $locale->text('Invoice Date missing!')
1639   # $locale->text('Packing List Number missing!')
1640   # $locale->text('Packing List Date missing!')
1641   # $locale->text('Order Number missing!')
1642   # $locale->text('Order Date missing!')
1643   # $locale->text('Quotation Number missing!')
1644   # $locale->text('Quotation Date missing!')
1645
1646   # assign number
1647   $form->{what_done} = $form->{formname};
1648   if (!$form->{"${inv}number"} && !$form->{preview} && !$form->{id}) {
1649     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
1650     if ($form->{media} ne 'email') {
1651
1652       # get pricegroups for parts
1653       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1654
1655       # build up html code for prices_$i
1656       set_pricegroup($form->{rowcount});
1657
1658       $form->{rowcount}--;
1659
1660       call_sub($display_form);
1661       # saving the history
1662           if(!exists $form->{addition}) {
1663         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; 
1664             $form->{addition} = "PRINTED";
1665             $form->save_history($form->dbconnect(\%myconfig));
1666       }
1667       # /saving the history
1668       exit;
1669     }
1670   }
1671
1672   &validate_items;
1673
1674   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
1675   my ($saved_email, $saved_cc, $saved_bcc) =
1676     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
1677
1678   $language_saved = $form->{language_id};
1679   $payment_id_saved = $form->{payment_id};
1680   $salesman_id_saved = $form->{salesman_id};
1681   $cp_id_saved = $form->{cp_id};
1682
1683   call_sub("$form->{vc}_details");
1684
1685   $form->{language_id} = $language_saved;
1686   $form->{payment_id} = $payment_id_saved;
1687
1688   $form->{"email"} = $saved_email if ($saved_email);
1689   $form->{"cc"}    = $saved_cc    if ($saved_cc);
1690   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
1691
1692   if (!$cp_id_saved) {
1693     # No contact was selected. Delete all contact variables because
1694     # IS->customer_details() and IR->vendor_details() get the default
1695     # contact anyway.
1696     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
1697   }
1698
1699   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
1700   if ($form->{"language_id"}) {
1701     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
1702       AM->get_language_details(\%myconfig, $form, $form->{language_id});
1703   } else {
1704     $output_dateformat = $myconfig{"dateformat"};
1705     $output_numberformat = $myconfig{"numberformat"};
1706     $output_longdates = 1;
1707   }
1708
1709   ($form->{employee}) = split /--/, $form->{employee};
1710
1711   # create the form variables
1712   if ($order) {
1713     OE->order_details(\%myconfig, \%$form);
1714   } else {
1715     IS->invoice_details(\%myconfig, \%$form, $locale);
1716   }
1717
1718   $form->get_salesman(\%myconfig, $salesman_id_saved);
1719
1720   if ($form->{shipto_id}) {
1721     $form->get_shipto(\%myconfig);
1722   }
1723
1724   @a = qw(name street zipcode city country);
1725
1726   $shipto = 1;
1727
1728   # if there is no shipto fill it in from billto
1729   foreach $item (@a) {
1730     if ($form->{"shipto$item"}) {
1731       $shipto = 0;
1732       last;
1733     }
1734   }
1735
1736   if ($shipto) {
1737     if (   $form->{formname} eq 'purchase_order'
1738         || $form->{formname} eq 'request_quotation') {
1739       $form->{shiptoname}   = $myconfig{company};
1740       $form->{shiptostreet} = $myconfig{address};
1741     } else {
1742       map { $form->{"shipto$_"} = $form->{$_} } @a;
1743     }
1744   }
1745
1746   $form->{notes} =~ s/^\s+//g;
1747
1748   $form->{templates} = "$myconfig{templates}";
1749
1750   delete $form->{printer_command};
1751
1752   $form->{language} = $form->get_template_language(\%myconfig);
1753
1754   my $printer_code;
1755   if ($form->{media} ne 'email') {
1756     $printer_code = $form->get_printer_code(\%myconfig);
1757     if ($printer_code ne "") {
1758       $printer_code = "_" . $printer_code;
1759     }
1760   }
1761
1762   if ($form->{language} ne "") {
1763     map({ $form->{"unit"}->[$_] =
1764             AM->translate_units($form, $form->{"language"},
1765                                 $form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
1766         (0..scalar(@{$form->{"unit"}}) - 1));
1767     $form->{language} = "_" . $form->{language};
1768   }
1769
1770   # Format dates.
1771   format_dates($output_dateformat, $output_longdates,
1772                qw(invdate orddate quodate pldate duedate reqdate transdate
1773                   shippingdate deliverydate validitydate paymentdate
1774                   datepaid transdate_oe deliverydate_oe
1775                   employee_startdate employee_enddate
1776                   ),
1777                grep({ /^datepaid_\d+$/ ||
1778                         /^transdate_oe_\d+$/ ||
1779                         /^deliverydate_oe_\d+$/ ||
1780                         /^reqdate_\d+$/ ||
1781                         /^deliverydate_\d+$/ ||
1782                         /^transdate_\d+$/
1783                     } keys(%{$form})));
1784
1785   reformat_numbers($output_numberformat, 2,
1786                    qw(invtotal ordtotal quototal subtotal linetotal
1787                       listprice sellprice netprice discount
1788                       tax taxbase total paid),
1789                    grep({ /^linetotal_\d+$/ ||
1790                             /^listprice_\d+$/ ||
1791                             /^sellprice_\d+$/ ||
1792                             /^netprice_\d+$/ ||
1793                             /^taxbase_\d+$/ ||
1794                             /^discount_\d+$/ ||
1795                             /^paid_\d+$/ ||
1796                             /^subtotal_\d+$/ ||
1797                             /^total_\d+$/ ||
1798                             /^tax_\d+$/
1799                         } keys(%{$form})));
1800
1801   reformat_numbers($output_numberformat, undef,
1802                    qw(qty),
1803                    grep({ /^qty_\d+$/
1804                         } keys(%{$form})));
1805
1806   $form->{IN} = "$form->{formname}$form->{language}${printer_code}.html";
1807   if ($form->{format} eq 'postscript') {
1808     $form->{postscript} = 1;
1809     $form->{IN} =~ s/html$/tex/;
1810   } elsif ($form->{"format"} =~ /pdf/) {
1811     $form->{pdf} = 1;
1812     if ($form->{"format"} =~ /opendocument/) {
1813       $form->{IN} =~ s/html$/odt/;
1814     } else {
1815       $form->{IN} =~ s/html$/tex/;
1816     }
1817   } elsif ($form->{"format"} =~ /opendocument/) {
1818     $form->{"opendocument"} = 1;
1819     $form->{"IN"} =~ s/html$/odt/;
1820   }
1821
1822   delete $form->{OUT};
1823
1824   if ($form->{media} eq 'printer') {
1825     $form->{OUT} = "| $form->{printer_command} &>/dev/null";
1826     $form->{printed} .= " $form->{formname}";
1827     $form->{printed} =~ s/^ //;
1828   }
1829   $printed = $form->{printed};
1830
1831   if ($form->{media} eq 'email') {
1832     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
1833       unless $form->{subject};
1834
1835     $form->{emailed} .= " $form->{formname}";
1836     $form->{emailed} =~ s/^ //;
1837   }
1838   $emailed = $form->{emailed};
1839
1840   if ($form->{media} eq 'queue') {
1841     %queued = map { s|.*/|| } split / /, $form->{queued};
1842
1843     if ($filename = $queued{ $form->{formname} }) {
1844       $form->{queued} =~ s/$form->{formname} $filename//;
1845       unlink "$spool/$filename";
1846       $filename =~ s/\..*$//g;
1847     } else {
1848       $filename = time;
1849       $filename .= $$;
1850     }
1851
1852     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
1853     $form->{OUT} = ">$spool/$filename";
1854
1855     # add type
1856     $form->{queued} .= " $form->{formname} $filename";
1857
1858     $form->{queued} =~ s/^ //;
1859   }
1860   $queued = $form->{queued};
1861
1862 # saving the history
1863   if(!exists $form->{addition}) {
1864     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1865     if($form->{media} =~ /printer/) {
1866         $form->{addition} = "PRINTED";
1867     }
1868     elsif($form->{media} =~ /email/) {
1869         $form->{addition} = "MAILED";
1870     }
1871     elsif($form->{media} =~ /queue/) {
1872         $form->{addition} = "QUEUED";
1873     }
1874     elsif($form->{media} =~ /screen/) {
1875         $form->{addition} = "SCREENED";
1876     }
1877     $form->save_history($form->dbconnect(\%myconfig));
1878   }
1879   # /saving the history
1880
1881   $form->parse_template(\%myconfig, $userspath);
1882
1883   $form->{callback} = "";
1884
1885   if ($form->{media} eq 'email') {
1886     $form->{message} = $locale->text('sent') unless $form->{message};
1887   }
1888   $message = $form->{message};
1889
1890   # if we got back here restore the previous form
1891   if ($form->{media} =~ /(printer|email|queue)/) {
1892
1893     $form->update_status(\%myconfig)
1894       if ($form->{media} eq 'queue' && $form->{id});
1895
1896     return $lxdebug->leave_sub() if ($old_form eq "return");
1897
1898     if ($old_form) {
1899
1900       $old_form->{"${inv}number"} = $form->{"${inv}number"};
1901
1902       # restore and display form
1903       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
1904
1905       $form->{queued}  = $queued;
1906       $form->{printed} = $printed;
1907       $form->{emailed} = $emailed;
1908       $form->{message} = $message;
1909
1910       $form->{rowcount}--;
1911       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1912         qw(exchangerate creditlimit creditremaining);
1913
1914       for $i (1 .. $form->{paidaccounts}) {
1915         map {
1916           $form->{"${_}_$i"} =
1917             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1918         } qw(paid exchangerate);
1919       }
1920
1921       call_sub($display_form);
1922       exit;
1923     }
1924
1925     $msg =
1926       ($form->{media} eq 'printer')
1927       ? $locale->text('sent to printer')
1928       : $locale->text('emailed to') . " $form->{email}";
1929     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
1930   }
1931   if ($form->{printing}) {
1932    call_sub($display_form);
1933    exit; 
1934   }
1935
1936   $lxdebug->leave_sub();
1937 }
1938
1939 sub customer_details {
1940   $lxdebug->enter_sub();
1941   IS->customer_details(\%myconfig, \%$form, @_);
1942   $lxdebug->leave_sub();
1943 }
1944
1945 sub vendor_details {
1946   $lxdebug->enter_sub();
1947
1948   IR->vendor_details(\%myconfig, \%$form, @_);
1949
1950   $lxdebug->leave_sub();
1951 }
1952
1953 sub post_as_new {
1954   $lxdebug->enter_sub();
1955
1956   $form->{postasnew} = 1;
1957   map { delete $form->{$_} } qw(printed emailed queued);
1958
1959   &post;
1960
1961   $lxdebug->leave_sub();
1962 }
1963
1964 sub ship_to {
1965   $lxdebug->enter_sub();
1966   if ($form->{second_run}) {
1967     $form->{print_and_post} = 0;
1968   }
1969
1970   $title = $form->{title};
1971   $form->{title} = $locale->text('Ship to');
1972
1973   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1974     qw(exchangerate creditlimit creditremaining);
1975
1976   my @shipto_vars =
1977     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
1978        shiptocontact shiptophone shiptofax shiptoemail
1979        shiptodepartment_1 shiptodepartment_2);
1980
1981   my @addr_vars =
1982     (qw(name department_1 department_2 street zipcode city country
1983         contact email phone fax));
1984
1985   # get details for name
1986   call_sub("$form->{vc}_details", @addr_vars);
1987
1988   $number =
1989     ($form->{vc} eq 'customer')
1990     ? $locale->text('Customer Number')
1991     : $locale->text('Vendor Number');
1992
1993   # get pricegroups for parts
1994   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1995
1996   # build up html code for prices_$i
1997   set_pricegroup($form->{rowcount});
1998
1999   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
2000
2001   $form->{rowcount}--;
2002
2003   $form->header;
2004
2005   print qq|
2006 <body>
2007
2008 <form method="post" action="$form->{script}">
2009
2010 <table width="100%">
2011   <tr>
2012     <td>
2013       <table>
2014         <tr class="listheading">
2015           <th class="listheading" colspan="2" width="50%">|
2016     . $locale->text('Billing Address') . qq|</th>
2017           <th class="listheading" width="50%">|
2018     . $locale->text('Shipping Address') . qq|</th>
2019         </tr>
2020         <tr height="5"></tr>
2021         <tr>
2022           <th align="right" nowrap>$number</th>
2023           <td>$form->{"$form->{vc}number"}</td>
2024         </tr>
2025         <tr>
2026           <th align="right" nowrap>| . $locale->text('Company Name') . qq|</th>
2027           <td>$form->{name}</td>
2028           <td><input name="shiptoname" size="35" value="$form->{shiptoname}"></td>
2029         </tr>
2030         <tr>
2031           <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
2032           <td>$form->{department_1}</td>
2033           <td><input name="shiptodepartment_1" size="35" value="$form->{shiptodepartment_1}"></td>
2034         </tr>
2035         <tr>
2036           <th align="right" nowrap>&nbsp;</th>
2037           <td>$form->{department_2}</td>
2038           <td><input name="shiptodepartment_2" size="35" value="$form->{shiptodepartment_2}"></td>
2039         </tr>
2040         <tr>
2041           <th align="right" nowrap>| . $locale->text('Street') . qq|</th>
2042           <td>$form->{street}</td>
2043           <td><input name="shiptostreet" size="35" value="$form->{shiptostreet}"></td>
2044         </tr>
2045         <tr>
2046           <th align="right" nowrap>| . $locale->text('Zipcode') . qq|</th>
2047           <td>$form->{zipcode}</td>
2048           <td><input name="shiptozipcode" size="35" value="$form->{shiptozipcode}"></td>
2049         </tr>
2050         <tr>
2051           <th align="right" nowrap>| . $locale->text('City') . qq|</th>
2052           <td>$form->{city}</td>
2053           <td><input name="shiptocity" size="35" value="$form->{shiptocity}"></td>
2054         </tr>
2055         <tr>
2056           <th align="right" nowrap>| . $locale->text('Country') . qq|</th>
2057           <td>$form->{country}</td>
2058           <td><input name="shiptocountry" size="35" value="$form->{shiptocountry}"></td>
2059         </tr>
2060         <tr>
2061           <th align="right" nowrap>| . $locale->text('Contact') . qq|</th>
2062           <td>$form->{contact}</td>
2063           <td><input name="shiptocontact" size="35" value="$form->{shiptocontact}"></td>
2064         </tr>
2065         <tr>
2066           <th align="right" nowrap>| . $locale->text('Phone') . qq|</th>
2067           <td>$form->{phone}</td>
2068           <td><input name="shiptophone" size="20" value="$form->{shiptophone}"></td>
2069         </tr>
2070         <tr>
2071           <th align="right" nowrap>| . $locale->text('Fax') . qq|</th>
2072           <td>$form->{fax}</td>
2073           <td><input name="shiptofax" size="20" value="$form->{shiptofax}"></td>
2074         </tr>
2075         <tr>
2076           <th align="right" nowrap>| . $locale->text('E-mail') . qq|</th>
2077           <td>$form->{email}</td>
2078           <td><input name="shiptoemail" size="35" value="$form->{shiptoemail}"></td>
2079         </tr>
2080       </table>
2081     </td>
2082   </tr>
2083 </table>
2084 | . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
2085 ;
2086
2087
2088
2089   # delete shipto
2090   map({ delete $form->{$_} } (@shipto_vars, qw(header)));
2091   $form->{title} = $title;
2092
2093   foreach $key (keys %$form) {
2094     $form->{$key} =~ s/\"/&quot;/g;
2095     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
2096   }
2097
2098   print qq|
2099
2100 <hr size="3" noshade>
2101
2102 <br>
2103 <input class="submit" type="submit" name="action" value="|
2104     . $locale->text('Continue') . qq|">
2105 </form>
2106
2107 </body>
2108 </html>
2109 |;
2110
2111   $lxdebug->leave_sub();
2112 }
2113
2114 sub new_license {
2115   $lxdebug->enter_sub();
2116
2117   my $row = shift;
2118
2119   # change callback
2120   $form->{old_callback} = $form->escape($form->{callback}, 1);
2121   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
2122   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
2123
2124   # delete action
2125   delete $form->{action};
2126   $customer = $form->{customer};
2127   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
2128
2129   # save all other form variables in a previousform variable
2130   $form->{row} = $row;
2131   foreach $key (keys %$form) {
2132
2133     # escape ampersands
2134     $form->{$key} =~ s/&/%26/g;
2135     $previousform .= qq|$key=$form->{$key}&|;
2136   }
2137   chop $previousform;
2138   $previousform = $form->escape($previousform, 1);
2139
2140   $form->{script} = "licenses.pl";
2141
2142   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
2143   map { $form->{$_} = $form->escape($form->{$_}, 1) }
2144     qw(partnumber description);
2145   $form->{callback} =
2146     qq|$form->{script}?login=$form->{login}&password=$form->{password}&action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&customer=$customer&partnumber=$form->{partnumber}&description=$form->{description}&previousform="$previousform"&initial=1|;
2147   $form->redirect;
2148
2149   $lxdebug->leave_sub();
2150 }
2151
2152 sub relink_accounts {
2153   $lxdebug->enter_sub();
2154
2155   $form->{"taxaccounts"} =~ s/\s*$//;
2156   $form->{"taxaccounts"} =~ s/^\s*//;
2157   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
2158     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
2159   }
2160   $form->{"taxaccounts"} = "";
2161
2162   for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
2163     if ($form->{"id_$i"}) {
2164       IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
2165     }
2166   }
2167
2168   $lxdebug->leave_sub();
2169 }
2170
2171 sub set_duedate {
2172   $lxdebug->enter_sub();
2173
2174   $form->get_duedate(\%myconfig);
2175
2176   my $q = new CGI;
2177   $result = "$form->{duedate}";
2178   print $q->header();
2179   print $result;
2180   $lxdebug->leave_sub();
2181
2182 }
2183