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