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