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