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