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