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