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