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