parse/format-Fehler bei Rabatten behoben
[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"}) *
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   $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0) if $form->{item} ne 'assembly';
676
677   delete $form->{nextsub};
678
679   }
680
681   &display_form;
682
683   $main::lxdebug->leave_sub();
684 }
685
686 sub new_item {
687   $main::lxdebug->enter_sub();
688
689   my $form     = $main::form;
690   my %myconfig = %main::myconfig;
691
692   _check_io_auth();
693
694   my $price_key = ($form->{type} =~ m/request_quotation|purchase_order/) || ($form->{script} eq 'ir.pl') ? 'lastcost' : 'sellprice';
695
696   # change callback
697   $form->{old_callback} = $form->escape($form->{callback}, 1);
698   $form->{callback}     = $form->escape("$form->{script}?action=display_form", 1);
699
700   # save all form variables except action in the session and keep the key in the previousform variable
701   my $previousform = $::auth->save_form_in_session(skip_keys => [ qw(action) ]);
702
703   my @HIDDENS;
704   push @HIDDENS,      { 'name' => 'previousform', 'value' => $previousform };
705   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} },                       qw(rowcount vc);
706   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit);
707   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
708   push @HIDDENS,      { 'name' => $price_key,     'value' => $form->parse_amount(\%myconfig, $form->{"sellprice_$form->{rowcount}"}) };
709   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{"longdescription_$form->{rowcount}"} };
710
711   $form->header();
712   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
713
714   $main::lxdebug->leave_sub();
715 }
716
717 sub check_form {
718   $main::lxdebug->enter_sub();
719
720   my $form     = $main::form;
721   my %myconfig = %main::myconfig;
722
723   _check_io_auth();
724
725   my @a     = ();
726   my $count = 0;
727
728   # remove any makes or model rows
729   if ($form->{item} eq 'assembly') {
730
731     # fuer assemblies auskommentiert. seiteneffekte? ;-) wird die woanders benoetigt?
732     #$form->{sellprice} = 0;
733     $form->{weight}    = 0;
734     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
735       qw(listprice sellprice rop stock);
736
737     my @flds = qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup lastcost);
738
739     for my $i (1 .. ($form->{assembly_rows} - 1)) {
740       if ($form->{"qty_$i"}) {
741         push @a, {};
742         my $j = $#a;
743
744         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
745
746         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
747
748         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
749
750         # fuer assemblies auskommentiert. siehe oben
751         #    $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"} / ($form->{"price_factor_$i"} || 1));
752         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"} / ($form->{"price_factor_$i"} || 1));
753         $count++;
754       }
755     }
756     # kann das hier auch weg? s.o. jb
757     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
758
759     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
760     $form->{assembly_rows} = $count;
761
762   } elsif ($form->{item} !~ m{^(?:part|service)$}) {
763     remove_emptied_rows(1);
764
765     $form->{creditremaining} -= &invoicetotal;
766   }
767
768   #sk
769   # if pricegroups
770   if (   $form->{type} =~ (/sales_quotation/)
771       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
772       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
773       or ($form->{type} =~ /sales_order/)) {
774
775   }
776
777   &display_form;
778
779   $main::lxdebug->leave_sub();
780 }
781
782 sub remove_emptied_rows {
783   my $dont_add_empty = shift;
784   my $form           = $::form;
785
786   return unless $form->{rowcount};
787
788   my @flds = qw(id partnumber description qty ship sellprice unit
789                 discount inventory_accno income_accno expense_accno listprice
790                 taxaccounts bin assembly weight projectnumber project_id
791                 oldprojectnumber runningnumber serialnumber partsgroup payment_id
792                 not_discountable shop ve gv buchungsgruppen_id language_values
793                 price_old price_new unit_old ordnumber donumber
794                 transdate longdescription basefactor marge_total marge_percent
795                 marge_price_factor lastcost price_factor_id partnotes
796                 stock_out stock_in has_sernumber reqdate orderitems_id
797                 active_price_source active_discount_source delivery_order_items_id
798                 invoice_id converted_from_orderitems_id
799                 converted_from_delivery_order_items_id converted_from_invoice_id);
800
801   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
802   push @flds, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
803
804   my @new_rows;
805   for my $i (1 .. $form->{rowcount} - 1) {
806     next unless $form->{"partnumber_$i"};
807
808     push @new_rows, { map { $_ => $form->{"${_}_$i" } } @flds };
809   }
810
811   my $new_rowcount = scalar @new_rows;
812   $form->redo_rows(\@flds, \@new_rows, $new_rowcount, $form->{rowcount});
813   $form->{rowcount} = $new_rowcount + ($dont_add_empty ? 0 : 1);
814 }
815
816 sub invoicetotal {
817   $main::lxdebug->enter_sub();
818
819   my $form     = $main::form;
820   my %myconfig = %main::myconfig;
821
822   _check_io_auth();
823
824   $form->{oldinvtotal} = 0;
825
826   # add all parts and deduct paid
827   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
828
829   my ($amount, $sellprice, $discount, $qty);
830
831   for my $i (1 .. $form->{rowcount}) {
832     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
833     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
834     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
835
836     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
837
838     $amount = $sellprice * (1 - $discount / 100) * $qty;
839     map { $form->{"${_}_base"} += $amount }
840       (split (/ /, $form->{"taxaccounts_$i"}));
841     $form->{oldinvtotal} += $amount;
842   }
843
844   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
845     split(/ /, $form->{taxaccounts})
846     if !$form->{taxincluded};
847
848   $form->{oldtotalpaid} = 0;
849   for my $i (1 .. $form->{paidaccounts}) {
850     $form->{oldtotalpaid} += $form->{"paid_$i"};
851   }
852
853   $main::lxdebug->leave_sub();
854
855   # return total
856   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
857 }
858
859 sub validate_items {
860   $main::lxdebug->enter_sub();
861
862   my $form     = $main::form;
863   my $locale   = $main::locale;
864
865   _check_io_auth();
866
867   # check if items are valid
868   if ($form->{rowcount} == 1) {
869     flash('warning', $::locale->text('The action you\'ve chosen has not been executed because the document does not contain any item yet.'));
870     &update;
871     ::end_of_request();
872   }
873
874   for my $i (1 .. $form->{rowcount} - 1) {
875     $form->isblank("partnumber_$i",
876                    $locale->text('Number missing in Row') . " $i");
877   }
878
879   $main::lxdebug->leave_sub();
880 }
881
882 sub order {
883   $main::lxdebug->enter_sub();
884
885   my $form     = $main::form;
886   my %myconfig = %main::myconfig;
887   my $locale   = $main::locale;
888
889   _check_io_auth();
890
891   if ($form->{second_run}) {
892     $form->{print_and_post} = 0;
893   }
894   $form->{ordnumber} = $form->{invnumber};
895
896   $form->{old_employee_id} = $form->{employee_id};
897   $form->{old_salesman_id} = $form->{salesman_id};
898
899   # link doc invoice -> quotation (single id no multi mode)
900   $form->{convert_from_ar_ids} = delete $form->{id};
901
902   delete $form->{$_} foreach (qw(printed emailed queued));
903   my $buysell;
904   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
905     $form->{title} = $locale->text('Add Purchase Order');
906     $form->{vc}    = 'vendor';
907     $form->{type}  = 'purchase_order';
908     $buysell       = 'sell';
909   }
910   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
911     $form->{title} = $locale->text('Add Sales Order');
912     $form->{vc}    = 'customer';
913     $form->{type}  = 'sales_order';
914     $buysell       = 'buy';
915   }
916   $form->{script} = 'oe.pl';
917
918   $form->{rowcount}--;
919
920   $form->{cp_id} *= 1;
921
922   require "bin/mozilla/$form->{script}";
923   my $script = $form->{"script"};
924   $script =~ s|.*/||;
925   $script =~ s|.pl$||;
926   $locale = new Locale($::lx_office_conf{system}->{language}, $script);
927
928   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
929
930   my $currency = $form->{currency};
931
932   &order_links;
933
934   $form->{currency}     = $currency;
935   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
936   $form->{exchangerate} = $form->{forex} || '';
937
938   for my $i (1 .. $form->{rowcount}) {
939     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"})
940             if ($form->{"${_}_${i}"}) }
941         qw(ship qty sellprice listprice basefactor discount));
942     $form->{"converted_from_invoice_id_$i"} = delete $form->{"invoice_id_$i"};
943   }
944
945   &prepare_order;
946   &display_form;
947
948   $main::lxdebug->leave_sub();
949 }
950
951 sub quotation {
952   $main::lxdebug->enter_sub();
953
954   my $form     = $main::form;
955   my %myconfig = %main::myconfig;
956   my $locale   = $main::locale;
957
958   _check_io_auth();
959
960   # we are coming from *_order and convert to quotation
961   # it seems that quotation is only called if we have a existing order
962   if ($form->{type} =~  /(sales|purchase)_order/) {
963     $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
964   }
965   # link doc order -> quotation (single id no multi mode)
966   $form->{convert_from_oe_ids} = delete $form->{id};
967
968   if ($form->{second_run}) {
969     $form->{print_and_post} = 0;
970   }
971   delete $form->{$_} foreach (qw(printed emailed queued));
972
973   my $buysell;
974   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
975     $form->{title} = $locale->text('Add Request for Quotation');
976     $form->{vc}    = 'vendor';
977     $form->{type}  = 'request_quotation';
978     $buysell       = 'sell';
979   }
980   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
981     $form->{title} = $locale->text('Add Quotation');
982     $form->{vc}    = 'customer';
983     $form->{type}  = 'sales_quotation';
984     $buysell       = 'buy';
985   }
986
987   $form->{cp_id} *= 1;
988
989   $form->{script} = 'oe.pl';
990
991   $form->{rowcount}--;
992
993   require "bin/mozilla/$form->{script}";
994
995   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
996
997   my $currency = $form->{currency};
998
999   &order_links;
1000
1001   $form->{currency}     = $currency;
1002   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, $buysell);
1003   $form->{exchangerate} = $form->{forex} || '';
1004
1005   for my $i (1 .. $form->{rowcount}) {
1006     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
1007                                                      $form->{"${_}_${i}"})
1008             if ($form->{"${_}_${i}"}) }
1009         qw(ship qty sellprice listprice basefactor discount lastcost));
1010   }
1011
1012   &prepare_order;
1013   &display_form;
1014
1015   $main::lxdebug->leave_sub();
1016 }
1017
1018 sub request_for_quotation {
1019   quotation();
1020 }
1021
1022 sub edit_e_mail {
1023   $main::lxdebug->enter_sub();
1024
1025   my $form     = $main::form;
1026   my %myconfig = %main::myconfig;
1027   my $locale   = $main::locale;
1028
1029   _check_io_auth();
1030
1031   if ($form->{second_run}) {
1032     $form->{print_and_post} = 0;
1033     $form->{resubmit}       = 0;
1034   }
1035
1036   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
1037
1038   if ($form->{"cp_id"}) {
1039     CT->get_contact(\%myconfig, $form);
1040     $form->{"email"} = $form->{"cp_email"} if $form->{"cp_email"};
1041   }
1042
1043   $form->{language} = $form->get_template_language(\%myconfig);
1044   $form->{language} = "_" . $form->{language} if $form->{language};
1045
1046   my $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
1047
1048   $form->{oldmedia} = $form->{media};
1049   $form->{media}    = "email";
1050
1051   my $global_bcc = AM->get_defaults()->{global_bcc};
1052
1053   $form->{bcc} = join ', ', grep $_, $form->{bcc}, $global_bcc;
1054
1055   my $attachment_filename = $form->generate_attachment_filename();
1056   my $subject             = $form->{subject} || $form->generate_email_subject();
1057
1058   $form->header;
1059
1060   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
1061   @dont_hide_key_list = qw(action email cc bcc subject message sendmode format header override login password);
1062   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
1063   @hidden_keys = sort grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
1064
1065   print $form->parse_html_template('generic/edit_email',
1066                                    { title         => $title,
1067                                      a_filename    => $attachment_filename,
1068                                      subject       => $subject,
1069                                      print_options => print_options('inline' => 1),
1070                                      HIDDEN        => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
1071                                      SHOW_BCC      => $::auth->assert('email_bcc', 'may fail') });
1072
1073   $main::lxdebug->leave_sub();
1074 }
1075
1076 sub send_email {
1077   $main::lxdebug->enter_sub();
1078
1079   my $form     = $main::form;
1080   my %myconfig = %main::myconfig;
1081
1082   _check_io_auth();
1083
1084   my $callback = $form->{script} . "?action=edit";
1085   map({ $callback .= "\&${_}=" . E($form->{$_}); } qw(type id));
1086
1087   print_form("return");
1088
1089   Common->save_email_status(\%myconfig, $form);
1090
1091   $form->{callback} = $callback;
1092   $form->redirect();
1093
1094   $main::lxdebug->leave_sub();
1095 }
1096
1097 # generate the printing options displayed at the bottom of oe and is forms.
1098 # this function will attempt to guess what type of form is displayed, and will generate according options
1099 #
1100 # about the coding:
1101 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
1102 # the opthash function builds hashrefs which are then pieced together for the template arrays.
1103 # unneeded options are "undef"ed out, and then grepped out.
1104 #
1105 # the inline options is untested, but intended to be used later in metatemplating
1106 sub print_options {
1107   $main::lxdebug->enter_sub();
1108
1109   my $form     = $main::form;
1110   my %myconfig = %main::myconfig;
1111   my $locale   = $main::locale;
1112
1113   _check_io_auth();
1114
1115   my %options = @_;
1116
1117   # names 3 parameters and returns a hashref, for use in templates
1118   sub opthash { +{ value => shift, selected => shift, oname => shift } }
1119   my (@FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
1120
1121   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
1122   $form->{sendmode}   = "attachment";
1123   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
1124   $form->{copies}     = $form->{copies} || $myconfig{copies}          || 3;
1125   $form->{media}      = $form->{media}  || $myconfig{default_media}   || "screen";
1126   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
1127                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
1128
1129   $form->{PD}{ $form->{formname} } = "selected";
1130   $form->{DF}{ $form->{format} }   = "selected";
1131   $form->{OP}{ $form->{media} }    = "selected";
1132   $form->{SM}{ $form->{formname} } = "selected";
1133
1134   push @FORMNAME, grep $_,
1135     ($form->{type} eq 'purchase_order') ? (
1136       opthash("purchase_order",      $form->{PD}{purchase_order},      $locale->text('Purchase Order')),
1137       opthash("bin_list",            $form->{PD}{bin_list},            $locale->text('Bin List'))
1138     ) : undef,
1139     ($form->{type} eq 'credit_note') ?
1140       opthash("credit_note",         $form->{PD}{credit_note},         $locale->text('Credit Note')) : undef,
1141     ($form->{type} eq 'sales_order') ? (
1142       opthash("sales_order",         $form->{PD}{sales_order},         $locale->text('Confirmation')),
1143       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
1144     ) : undef,
1145     ($form->{type} =~ /sales_quotation$/) ?
1146       opthash('sales_quotation',     $form->{PD}{sales_quotation},     $locale->text('Quotation')) : undef,
1147     ($form->{type} =~ /request_quotation$/) ?
1148       opthash('request_quotation',   $form->{PD}{request_quotation},   $locale->text('Request for Quotation')) : undef,
1149     ($form->{type} eq 'invoice') ? (
1150       opthash("invoice",             $form->{PD}{invoice},             $locale->text('Invoice')),
1151       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
1152     ) : undef,
1153     ($form->{type} eq 'invoice' && $form->{storno}) ? (
1154       opthash("storno_invoice",      $form->{PD}{storno_invoice},      $locale->text('Storno Invoice')),
1155     ) : undef,
1156     ($form->{type} =~ /_delivery_order$/) ? (
1157       opthash($form->{type},         $form->{PD}{$form->{type}},       $locale->text('Delivery Order')),
1158       opthash('pick_list',           $form->{PD}{pick_list},           $locale->text('Pick List')),
1159     ) : undef;
1160
1161   push @SENDMODE,
1162     opthash("attachment",            $form->{SM}{attachment},          $locale->text('Attachment')),
1163     opthash("inline",                $form->{SM}{inline},              $locale->text('In-line'))
1164       if ($form->{media} eq 'email');
1165
1166   my $printable_templates = any { $::lx_office_conf{print_templates}->{$_} } qw(latex opendocument);
1167   push @MEDIA, grep $_,
1168       opthash("screen",              $form->{OP}{screen},              $locale->text('Screen')),
1169     ($printable_templates && $form->{printers} && scalar @{ $form->{printers} }) ?
1170       opthash("printer",             $form->{OP}{printer},             $locale->text('Printer')) : undef,
1171     ($printable_templates && !$options{no_queue}) ?
1172       opthash("queue",               $form->{OP}{queue},               $locale->text('Queue')) : undef
1173         if ($form->{media} ne 'email');
1174
1175   push @FORMAT, grep $_,
1176     ($::lx_office_conf{print_templates}->{opendocument} &&     $::lx_office_conf{applications}->{openofficeorg_writer}  &&     $::lx_office_conf{applications}->{xvfb}
1177                                                         && (-x $::lx_office_conf{applications}->{openofficeorg_writer}) && (-x $::lx_office_conf{applications}->{xvfb})
1178      && !$options{no_opendocument_pdf}) ?
1179       opthash("opendocument_pdf",    $form->{DF}{"opendocument_pdf"},  $locale->text("PDF (OpenDocument/OASIS)")) : undef,
1180     ($::lx_office_conf{print_templates}->{latex}) ?
1181       opthash("pdf",                 $form->{DF}{pdf},                 $locale->text('PDF')) : undef,
1182     ($::lx_office_conf{print_templates}->{latex} && !$options{no_postscript}) ?
1183       opthash("postscript",          $form->{DF}{postscript},          $locale->text('Postscript')) : undef,
1184     (!$options{no_html}) ?
1185       opthash("html", $form->{DF}{html}, "HTML") : undef,
1186     ($::lx_office_conf{print_templates}->{opendocument} && !$options{no_opendocument}) ?
1187       opthash("opendocument",        $form->{DF}{opendocument},        $locale->text("OpenDocument/OASIS")) : undef,
1188     ($::lx_office_conf{print_templates}->{excel} && !$options{no_excel}) ?
1189       opthash("excel",               $form->{DF}{excel},               $locale->text("Excel")) : undef;
1190
1191   push @LANGUAGE_ID,
1192     map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
1193       if (ref $form->{languages} eq 'ARRAY');
1194
1195   push @PRINTER_ID,
1196     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
1197       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
1198
1199   @SELECTS = map {
1200     sname => $_->[1],
1201     DATA  => $_->[0],
1202     show  => !$options{"hide_" . $_->[1]} && scalar @{ $_->[0] }
1203   },
1204   [ \@FORMNAME,    'formname',    ],
1205   [ \@LANGUAGE_ID, 'language_id', ],
1206   [ \@FORMAT,      'format',      ],
1207   [ \@SENDMODE,    'sendmode',    ],
1208   [ \@MEDIA,       'media',       ],
1209   [ \@PRINTER_ID,  'printer_id',  ];
1210
1211   my %dont_display_groupitems = (
1212     'dunning' => 1,
1213     );
1214
1215   my %template_vars = (
1216     display_copies       => scalar @{ $form->{printers} || [] } && $::lx_office_conf{print_templates}->{latex} && $form->{media} ne 'email',
1217     display_remove_draft => (!$form->{id} && $form->{draft_id}),
1218     display_groupitems   => !$dont_display_groupitems{$form->{type}},
1219     groupitems_checked   => $form->{groupitems} ? "checked" : '',
1220     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
1221   );
1222
1223   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
1224
1225   if ($options{inline}) {
1226     $main::lxdebug->leave_sub();
1227     return $print_options;
1228   }
1229
1230   print $print_options;
1231
1232   $main::lxdebug->leave_sub();
1233 }
1234
1235 sub print {
1236   $main::lxdebug->enter_sub();
1237
1238   my $form     = $main::form;
1239   my $locale   = $main::locale;
1240
1241   _check_io_auth();
1242
1243   if ($form->{print_nextsub}) {
1244     call_sub($form->{print_nextsub});
1245     $main::lxdebug->leave_sub();
1246     return;
1247   }
1248
1249   # if this goes to the printer pass through
1250   my $old_form;
1251   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
1252     $form->error($locale->text('Select postscript or PDF!'))
1253       if ($form->{format} !~ /(postscript|pdf)/);
1254
1255     $old_form = new Form;
1256     map { $old_form->{$_} = $form->{$_} } keys %$form;
1257   }
1258
1259   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
1260     if ($form->{formname} eq "proforma") {
1261       $form->{proforma} = 1;
1262     }
1263     $form->{print_and_save} = 1;
1264     my $formname = $form->{formname};
1265     &save();
1266     $form->{formname} = $formname;
1267     &edit();
1268     $::lxdebug->leave_sub();
1269     ::end_of_request();
1270   }
1271
1272   &print_form($old_form);
1273
1274   $main::lxdebug->leave_sub();
1275 }
1276
1277 sub print_form {
1278   $main::lxdebug->enter_sub();
1279
1280   my $form     = $main::form;
1281   my %myconfig = %main::myconfig;
1282   my $locale   = $main::locale;
1283
1284   _check_io_auth();
1285
1286   my $defaults = SL::DB::Default->get;
1287   $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
1288   $form->{templates} = $defaults->templates;
1289
1290   my ($old_form, %params) = @_;
1291
1292   my $inv       = "inv";
1293   my $due       = "due";
1294   my $numberfld = "invnumber";
1295   my $order;
1296
1297   my $display_form =
1298     ($form->{display_form}) ? $form->{display_form} : "display_form";
1299
1300   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
1301   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
1302
1303   if ($form->{formname} eq "invoice") {
1304     $form->{label} = $locale->text('Invoice');
1305   }
1306   if ($form->{formname} eq 'sales_order') {
1307     $inv                  = "ord";
1308     $due                  = "req";
1309     $form->{"${inv}date"} = $form->{transdate};
1310     $form->{label}        = $locale->text('Confirmation');
1311     $numberfld            = "sonumber";
1312     $order                = 1;
1313   }
1314
1315   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
1316     $inv                  = "inv";
1317     $due                  = "due";
1318     $form->{"${inv}date"} = $form->{invdate};
1319     $form->{label}        = $locale->text('Proforma Invoice');
1320     $numberfld            = "sonumber";
1321     $order                = 0;
1322   }
1323
1324   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
1325     $inv                  = "inv";
1326     $due                  = "due";
1327     $form->{"${inv}date"} = $form->{transdate};
1328     $form->{"invdate"}    = $form->{transdate};
1329     $form->{invnumber}    = $form->{ordnumber};
1330     $form->{label}        = $locale->text('Proforma Invoice');
1331     $numberfld            = "sonumber";
1332     $order                = 1;
1333   }
1334
1335   if ($form->{formname} eq 'purchase_order') {
1336     $inv                  = "ord";
1337     $due                  = "req";
1338     $form->{"${inv}date"} = $form->{transdate};
1339     $form->{label}        = $locale->text('Purchase Order');
1340     $numberfld            = "ponumber";
1341     $order                = 1;
1342   }
1343   if ($form->{formname} eq 'bin_list') {
1344     $inv                  = "ord";
1345     $due                  = "req";
1346     $form->{"${inv}date"} = $form->{transdate};
1347     $form->{label}        = $locale->text('Bin List');
1348     $order                = 1;
1349   }
1350   if ($form->{formname} eq 'sales_quotation') {
1351     $inv                  = "quo";
1352     $due                  = "req";
1353     $form->{"${inv}date"} = $form->{transdate};
1354     $form->{label}        = $locale->text('Quotation');
1355     $numberfld            = "sqnumber";
1356     $order                = 1;
1357   }
1358
1359   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
1360     $inv                  = "quo";
1361     $due                  = "req";
1362     $form->{"${inv}date"} = $form->{transdate};
1363     $form->{"invdate"}    = $form->{transdate};
1364     $form->{label}        = $locale->text('Proforma Invoice');
1365     $numberfld            = "sqnumber";
1366     $order                = 1;
1367   }
1368
1369   if ($form->{formname} eq 'request_quotation') {
1370     $inv                  = "quo";
1371     $due                  = "req";
1372     $form->{"${inv}date"} = $form->{transdate};
1373     $form->{label}        = $locale->text('RFQ');
1374     $numberfld            = "rfqnumber";
1375     $order                = 1;
1376   }
1377
1378   if ($form->{type} =~ /_delivery_order$/) {
1379     undef $due;
1380     $inv                  = "do";
1381     $form->{"${inv}date"} = $form->{transdate};
1382     $numberfld            = $form->{type} =~ /^sales/ ? 'sdonumber' : 'pdonumber';
1383     $form->{label}        = $form->{formname} eq 'pick_list' ? $locale->text('Pick List') : $locale->text('Delivery Order');
1384   }
1385   if ($form->{type} =~ /letter/) {
1386     undef $due;
1387     undef $inv;
1388     $form->{label}        = $locale->text('Letter');
1389   }
1390
1391   $form->{TEMPLATE_DRIVER_OPTIONS} = { };
1392   if (any { $form->{type} eq $_ } qw(sales_quotation sales_order sales_delivery_order invoice request_quotation purchase_order purchase_delivery_order credit_note)) {
1393     $form->{TEMPLATE_DRIVER_OPTIONS}->{variable_content_types} = {
1394       longdescription => 'html',
1395       partnotes       => 'html',
1396       notes           => 'html',
1397     };
1398   }
1399
1400   $form->isblank("email", $locale->text('E-mail address missing!'))
1401     if ($form->{media} eq 'email');
1402   $form->isblank("${inv}date",
1403            $locale->text($form->{label})
1404            . ": "
1405            . $locale->text(' Date missing!'));
1406
1407   # $locale->text('Invoice Number missing!')
1408   # $locale->text('Invoice Date missing!')
1409   # $locale->text('Order Number missing!')
1410   # $locale->text('Order Date missing!')
1411   # $locale->text('Quotation Number missing!')
1412   # $locale->text('Quotation Date missing!')
1413
1414   $form->{what_done} = $form->{formname};
1415
1416   &validate_items;
1417
1418   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
1419   my ($saved_email, $saved_cc, $saved_bcc) =
1420     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
1421
1422   my $language_saved = $form->{language_id};
1423   my $payment_id_saved = $form->{payment_id};
1424   my $delivery_term_id_saved = $form->{delivery_term_id};
1425   my $salesman_id_saved = $form->{salesman_id};
1426   my $cp_id_saved = $form->{cp_id};
1427   my $taxzone_id_saved = $form->{taxzone_id};
1428   my $currency_saved = $form->{currency};
1429
1430   call_sub("$form->{vc}_details") if ($form->{vc});
1431
1432   $form->{language_id} = $language_saved;
1433   $form->{payment_id} = $payment_id_saved;
1434   $form->{delivery_term_id} = $delivery_term_id_saved;
1435   $form->{taxzone_id} = $taxzone_id_saved;
1436   $form->{currency} = $currency_saved;
1437
1438   $form->{"email"} = $saved_email if ($saved_email);
1439   $form->{"cc"}    = $saved_cc    if ($saved_cc);
1440   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
1441
1442   if (!$cp_id_saved) {
1443     # No contact was selected. Delete all contact variables because
1444     # IS->customer_details() and IR->vendor_details() get the default
1445     # contact anyway.
1446     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
1447   }
1448
1449   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
1450   if ($form->{"language_id"}) {
1451     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
1452       AM->get_language_details(\%myconfig, $form, $form->{language_id});
1453   } else {
1454     $output_dateformat = $myconfig{"dateformat"};
1455     $output_numberformat = $myconfig{"numberformat"};
1456     $output_longdates = 1;
1457   }
1458
1459   # Store the output number format so that the template modules know
1460   # how to parse the amounts back if requested.
1461   $myconfig{output_numberformat} = $output_numberformat || $myconfig{numberformat};
1462
1463   ($form->{employee}) = split /--/, $form->{employee};
1464
1465   # create the form variables
1466   if ($form->{type} =~ /_delivery_order$/) {
1467     DO->order_details(\%myconfig, \%$form);
1468   } elsif ($order) {
1469     OE->order_details(\%myconfig, \%$form);
1470   } elsif ($form->{type} eq 'letter') {
1471     # right now, no details are needed
1472     # but i do not want to break the bad default (invoice)
1473   } else {
1474     IS->invoice_details(\%myconfig, \%$form, $locale);
1475   }
1476
1477   $form->get_employee_data('prefix' => 'employee', 'id' => $form->{employee_id});
1478   $form->get_employee_data('prefix' => 'salesman', 'id' => $salesman_id_saved);
1479
1480   if ($form->{shipto_id}) {
1481     $form->get_shipto(\%myconfig);
1482   }
1483
1484   $form->{notes} =~ s/^\s+//g;
1485
1486   delete $form->{printer_command};
1487
1488   $form->{language} = $form->get_template_language(\%myconfig);
1489
1490   my $printer_code;
1491   if ($form->{media} ne 'email') {
1492     $printer_code = $form->get_printer_code(\%myconfig);
1493     if ($printer_code ne "") {
1494       $printer_code = "_" . $printer_code;
1495     }
1496   }
1497
1498   if ($form->{language} ne "") {
1499     my $template_arrays = $form->{TEMPLATE_ARRAYS} || $form;
1500     map { $template_arrays->{unit}->[$_] = AM->translate_units($form, $form->{language}, $template_arrays->{unit}->[$_], $template_arrays->{qty}->[$_]); } (0..scalar(@{ $template_arrays->{unit} }) - 1);
1501
1502     $form->{language} = "_" . $form->{language};
1503   }
1504
1505   # Format dates.
1506   format_dates($output_dateformat, $output_longdates,
1507                qw(invdate orddate quodate pldate duedate reqdate transdate
1508                   shippingdate deliverydate validitydate paymentdate
1509                   datepaid transdate_oe deliverydate_oe dodate
1510                   employee_startdate employee_enddate
1511                   ),
1512                grep({ /^datepaid_\d+$/ ||
1513                         /^transdate_oe_\d+$/ ||
1514                         /^deliverydate_oe_\d+$/ ||
1515                         /^reqdate_\d+$/ ||
1516                         /^deliverydate_\d+$/ ||
1517                         /^transdate_\d+$/
1518                     } keys(%{$form})));
1519
1520   reformat_numbers($output_numberformat, 2,
1521                    qw(invtotal ordtotal quototal subtotal linetotal
1522                       listprice sellprice netprice discount
1523                       tax taxbase total paid payment),
1524                    grep({ /^(?:linetotal|nodiscount_linetotal|listprice|sellprice|netprice|taxbase|discount|p_discount|discount_sub|nodiscount_sub|paid|subtotal|total|tax)_\d+$/ } keys(%{$form})));
1525
1526   reformat_numbers($output_numberformat, undef,
1527                    qw(qty price_factor),
1528                    grep({ /^qty_\d+$/
1529                         } keys(%{$form})));
1530
1531   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
1532
1533   if (scalar @{ $cvar_date_fields }) {
1534     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
1535   }
1536
1537   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
1538     reformat_numbers($output_numberformat, $precision, @{ $field_list });
1539   }
1540
1541   my $extension = 'html';
1542   if ($form->{format} eq 'postscript') {
1543     $form->{postscript}   = 1;
1544     $extension            = 'tex';
1545
1546   } elsif ($form->{"format"} =~ /pdf/) {
1547     $form->{pdf}          = 1;
1548     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
1549
1550   } elsif ($form->{"format"} =~ /opendocument/) {
1551     $form->{opendocument} = 1;
1552     $extension            = 'odt';
1553   } elsif ($form->{"format"} =~ /excel/) {
1554     $form->{excel} = 1;
1555     $extension            = 'xls';
1556   }
1557
1558   # search for the template
1559   my ($template_file, @template_files) = SL::Helper::CreatePDF->find_template(
1560     name        => $form->{formname},
1561     email       => $form->{media} eq 'email',
1562     language_id => $form->{language_id},
1563     printer_id  => $form->{printer_id},
1564     extension   => $extension,
1565   );
1566
1567   if (!defined $template_file) {
1568     $::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));
1569   }
1570
1571   $form->{IN} = $template_file;
1572
1573   delete $form->{OUT};
1574
1575   if ($form->{media} eq 'printer') {
1576     $form->{OUT}      = $form->{printer_command};
1577     $form->{OUT_MODE} = '|-';
1578     $form->{printed} .= " $form->{formname}";
1579     $form->{printed}  =~ s/^ //;
1580   }
1581   my $printed = $form->{printed};
1582
1583   if ($form->{media} eq 'email') {
1584     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
1585       unless $form->{subject};
1586
1587     $form->{emailed} .= " $form->{formname}";
1588     $form->{emailed} =~ s/^ //;
1589   }
1590   my $emailed = $form->{emailed};
1591
1592   if ($form->{media} eq 'queue') {
1593     my %queued = map { s|.*[/\\]||; $_ } split / /, $form->{queued};
1594
1595     my $filename;
1596     my $suffix = ($form->{postscript}) ? '.ps' : '.pdf';
1597     if ($filename = $queued{ $form->{formname} }) {
1598       unlink $::lx_office_conf{paths}->{spool} . "/$filename";
1599       delete $queued{ $form->{formname} };
1600
1601       $form->{queued}    =  join ' ', %queued;
1602       $filename          =~ s/\..*$//g;
1603       $filename         .=  $suffix;
1604       $form->{OUT}       =  $::lx_office_conf{paths}->{spool} . "/$filename";
1605       $form->{OUT_MODE}  =  '>';
1606
1607     } else {
1608       my $temp_fh;
1609       ($temp_fh, $filename) = File::Temp::tempfile(
1610         'kivitendo-spoolXXXXXX',
1611         SUFFIX => "$suffix",
1612         DIR    => $::lx_office_conf{paths}->{spool},
1613         UNLINK => 0,
1614       );
1615       close $temp_fh;
1616       $form->{OUT} = "$filename";
1617       # use >> for OUT_MODE because file is already created by File::Temp
1618       $form->{OUT_MODE} = '>>';
1619       # strip directory so that only filename is stored in table status
1620       ($filename) = $filename =~ /^$::lx_office_conf{paths}->{spool}\/(.*)/;
1621     }
1622
1623     # add type
1624     $form->{queued} .= " $form->{formname} $filename";
1625     $form->{queued} =~ s/^ //;
1626   }
1627   my $queued = $form->{queued};
1628
1629 # saving the history
1630   if(!exists $form->{addition}) {
1631     $form->{snumbers} = "${inv}number" . "_" . $form->{"${inv}number"};
1632     if($form->{media} =~ /printer/) {
1633       $form->{addition} = "PRINTED";
1634     }
1635     elsif($form->{media} =~ /email/) {
1636       $form->{addition} = "MAILED";
1637     }
1638     elsif($form->{media} =~ /queue/) {
1639       $form->{addition} = "QUEUED";
1640     }
1641     elsif($form->{media} =~ /screen/) {
1642       $form->{addition} = "SCREENED";
1643     }
1644     $form->save_history;
1645   }
1646   # /saving the history
1647
1648   # prepare meta information for template introspection
1649   $form->{template_meta} = {
1650     formname  => $form->{formname},
1651     language  => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id} || undef),
1652     format    => $form->{format},
1653     media     => $form->{media},
1654     extension => $extension,
1655     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id} || undef),
1656     today     => DateTime->today,
1657   };
1658
1659   $form->parse_template(\%myconfig);
1660
1661   $form->{callback} = "";
1662
1663   if ($form->{media} eq 'email') {
1664     $form->{message} = $locale->text('sent') unless $form->{message};
1665   }
1666   my $message = $form->{message};
1667
1668   # if we got back here restore the previous form
1669   if ($form->{media} =~ /(printer|email|queue)/) {
1670
1671     $form->update_status(\%myconfig)
1672       if ($form->{media} eq 'queue' && $form->{id});
1673
1674     return $main::lxdebug->leave_sub() if ($old_form eq "return");
1675
1676     if ($old_form) {
1677
1678       $old_form->{"${inv}number"} = $form->{"${inv}number"};
1679
1680       # restore and display form
1681       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
1682
1683       $form->{queued}  = $queued;
1684       $form->{printed} = $printed;
1685       $form->{emailed} = $emailed;
1686       $form->{message} = $message;
1687
1688       $form->{rowcount}--;
1689       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1690         qw(exchangerate creditlimit creditremaining);
1691
1692       for my $i (1 .. $form->{paidaccounts}) {
1693         map {
1694           $form->{"${_}_$i"} =
1695             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
1696         } qw(paid exchangerate);
1697       }
1698
1699       call_sub($display_form);
1700       ::end_of_request();
1701     }
1702
1703     my $msg =
1704       ($form->{media} eq 'printer')
1705       ? $locale->text('sent to printer')
1706       : $locale->text('emailed to') . " $form->{email}";
1707
1708     if (!$params{no_redirect}) {
1709       $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
1710     }
1711   }
1712   if ($form->{printing}) {
1713    call_sub($display_form);
1714    ::end_of_request();
1715   }
1716
1717   $main::lxdebug->leave_sub();
1718 }
1719
1720 sub customer_details {
1721   $main::lxdebug->enter_sub();
1722
1723   my $form     = $main::form;
1724   my %myconfig = %main::myconfig;
1725
1726   IS->customer_details(\%myconfig, \%$form, @_);
1727
1728   $main::lxdebug->leave_sub();
1729 }
1730
1731 sub vendor_details {
1732   $main::lxdebug->enter_sub();
1733
1734   my $form     = $main::form;
1735   my %myconfig = %main::myconfig;
1736
1737   IR->vendor_details(\%myconfig, \%$form, @_);
1738
1739   $main::lxdebug->leave_sub();
1740 }
1741
1742 sub post_as_new {
1743   $main::lxdebug->enter_sub();
1744
1745   my $form     = $main::form;
1746
1747   _check_io_auth();
1748
1749   $form->{postasnew} = 1;
1750   map { delete $form->{$_} } qw(printed emailed queued);
1751
1752   &post;
1753
1754   $main::lxdebug->leave_sub();
1755 }
1756
1757 sub ship_to {
1758   $main::lxdebug->enter_sub();
1759
1760   _check_io_auth();
1761
1762   $::form->{print_and_post} = 0 if $::form->{second_run};
1763
1764   map { $::form->{$_} = $::form->parse_amount(\%::myconfig, $::form->{$_}) } qw(exchangerate creditlimit creditremaining);
1765
1766   # get details for customer/vendor
1767   call_sub($::form->{vc} . "_details", qw(name department_1 department_2 street zipcode city country contact email phone fax), $::form->{vc} . "number");
1768
1769   $::form->{rowcount}--;
1770
1771   my @shipto_vars   = qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
1772                          shiptocontact shiptocp_gender shiptophone shiptofax shiptoemail
1773                          shiptodepartment_1 shiptodepartment_2);
1774   my $previous_form = $::auth->save_form_in_session(skip_keys => [ @shipto_vars, qw(header shipto_id) ]);
1775   $::form->{title}  = $::locale->text('Ship to');
1776   $::form->header;
1777
1778   my $vc_obj = ($::form->{vc} eq 'customer' ? "SL::DB::Customer" : "SL::DB::Vendor")->new(id => $::form->{$::form->{vc} . "_id"})->load;
1779
1780   print $::form->parse_html_template('io/ship_to', { previousform => $previous_form,
1781                                                      nextsub      => $::form->{display_form} || 'display_form',
1782                                                      vc_obj       => $vc_obj,
1783                                                    });
1784
1785   $main::lxdebug->leave_sub();
1786 }
1787
1788 sub ship_to_entered {
1789   $::auth->restore_form_from_session(delete $::form->{previousform});
1790   call_sub($::form->{nextsub});
1791 }
1792
1793 sub relink_accounts {
1794   $main::lxdebug->enter_sub();
1795
1796   my $form     = $main::form;
1797   my %myconfig = %main::myconfig;
1798
1799   _check_io_auth();
1800
1801   $form->{"taxaccounts"} =~ s/\s*$//;
1802   $form->{"taxaccounts"} =~ s/^\s*//;
1803   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
1804     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
1805   }
1806   $form->{"taxaccounts"} = "";
1807
1808   IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
1809
1810   $main::lxdebug->leave_sub();
1811 }
1812
1813 sub set_duedate {
1814   $main::lxdebug->enter_sub();
1815
1816   my $form     = $main::form;
1817   my %myconfig = %main::myconfig;
1818
1819   _check_io_auth();
1820
1821   my $invdate = $form->{invdate} eq 'undefined' ? undef : $form->{invdate};
1822   my $duedate = $form->get_duedate(\%myconfig, $invdate);
1823
1824   print $form->ajax_response_header() . ($duedate || $invdate);
1825
1826   $main::lxdebug->leave_sub();
1827 }
1828
1829 sub _update_part_information {
1830   $main::lxdebug->enter_sub();
1831
1832   my $form     = $main::form;
1833
1834   my %part_information = IC->get_basic_part_info('id'        => [ grep { $_ } map { $form->{"id_${_}"} } (1..$form->{rowcount}) ],
1835                                                  'vendor_id' => $form->{vendor_id});
1836
1837   $form->{PART_INFORMATION} = \%part_information;
1838
1839   foreach my $i (1..$form->{rowcount}) {
1840     next unless ($form->{"id_${i}"});
1841
1842     my $info                 = $form->{PART_INFORMATION}->{$form->{"id_${i}"}} || { };
1843     $form->{"partunit_${i}"} = $info->{unit};
1844     $form->{"weight_$i"}     = $info->{weight};
1845   }
1846
1847   $main::lxdebug->leave_sub();
1848 }
1849
1850 sub _update_ship {
1851   $main::lxdebug->enter_sub();
1852
1853   my $form     = $main::form;
1854   my %myconfig = %main::myconfig;
1855
1856   if (!$form->{ordnumber} || !$form->{id}) {
1857     map { $form->{"ship_$_"} = 0 } (1..$form->{rowcount});
1858     $main::lxdebug->leave_sub();
1859     return;
1860   }
1861
1862   my $all_units = AM->retrieve_all_units();
1863
1864   my %ship = DO->get_shipped_qty('type'  => ($form->{type} eq 'purchase_order') ? 'purchase' : 'sales',
1865                                  'oe_id' => $form->{id},);
1866
1867   foreach my $i (1..$form->{rowcount}) {
1868     next unless ($form->{"id_${i}"});
1869
1870     $form->{"ship_$i"} = 0;
1871
1872     my $ship_entry = $ship{$form->{"id_$i"}};
1873
1874     next if (!$ship_entry || ($ship_entry->{qty} <= 0));
1875
1876     my $rowqty =
1877       ($form->{simple_save} ? $form->{"qty_$i"} : $form->parse_amount(\%myconfig, $form->{"qty_$i"}))
1878       * $all_units->{$form->{"unit_$i"}}->{factor}
1879       / $all_units->{$form->{"partunit_$i"}}->{factor};
1880
1881     $form->{"ship_$i"}  = min($rowqty, $ship_entry->{qty});
1882     $ship_entry->{qty} -= $form->{"ship_$i"};
1883   }
1884
1885   foreach my $i (1..$form->{rowcount}) {
1886     next unless ($form->{"id_${i}"});
1887
1888     my $ship_entry = $ship{$form->{"id_$i"}};
1889
1890     next if (!$ship_entry || ($ship_entry->{qty} <= 0.01));
1891
1892     $form->{"ship_$i"} += $ship_entry->{qty};
1893     $ship_entry->{qty}  = 0;
1894   }
1895
1896   $main::lxdebug->leave_sub();
1897 }
1898
1899 sub _update_custom_variables {
1900   $main::lxdebug->enter_sub();
1901
1902   my $form     = $main::form;
1903
1904   $form->{CVAR_CONFIGS}         = { } unless ref $form->{CVAR_CONFIGS} eq 'HASH';
1905   $form->{CVAR_CONFIGS}->{IC} ||= CVar->get_configs(module => 'IC');
1906
1907   $main::lxdebug->leave_sub();
1908 }
1909
1910 sub _render_custom_variables_inputs {
1911   $main::lxdebug->enter_sub(2);
1912
1913   my $form     = $main::form;
1914
1915   my %params = @_;
1916
1917   if (!$form->{CVAR_CONFIGS}->{IC}) {
1918     $main::lxdebug->leave_sub();
1919     return;
1920   }
1921
1922   my $valid = CVar->custom_variables_validity_by_trans_id(trans_id => $params{part_id});
1923
1924   # get partsgroup_id from part
1925   my $partsgroup_id;
1926   if ($params{part_id}) {
1927     $partsgroup_id = SL::DB::Part->new(id => $params{part_id})->load->partsgroup_id;
1928   }
1929
1930   my $num_visible_cvars = 0;
1931   foreach my $cvar (@{ $form->{CVAR_CONFIGS}->{IC} }) {
1932     $cvar->{valid} = $params{part_id} && $valid->($cvar->{id});
1933
1934     # set partsgroup filter
1935     my $partsgroup_filtered = 0;
1936     if ($cvar->{flag_partsgroup_filter}) {
1937       if (!$partsgroup_id || (!grep {$partsgroup_id == $_} @{ $cvar->{partsgroups} })) {
1938         $partsgroup_filtered = 1;
1939       }
1940     }
1941
1942     my $hide_non_editable = 1;
1943
1944     my $show = 0;
1945     my $description = '';
1946     if (( ($cvar->{flag_editable} || !$hide_non_editable) && $cvar->{valid}) && !$partsgroup_filtered) {
1947       $num_visible_cvars++;
1948       $description = $cvar->{description} . ' ';
1949       $show = 1;
1950     }
1951
1952     my $form_key = "ic_cvar_" . $cvar->{name} . "_$params{row}";
1953
1954     push @{ $params{ROW2} }, {
1955       line_break     => $show && !(($num_visible_cvars - 1) % ($::myconfig{form_cvars_nr_cols}*1 || 3)),
1956       description    => $description,
1957       cvar           => 1,
1958       render_options => {
1959          hide_non_editable => $hide_non_editable,
1960          var               => $cvar,
1961          name_prefix       => 'ic_',
1962          name_postfix      => "_$params{row}",
1963          valid             => $cvar->{valid},
1964          value             => CVar->parse($::form->{$form_key}, $cvar),
1965          partsgroup_filtered => $partsgroup_filtered,
1966       }
1967     };
1968   }
1969
1970   $main::lxdebug->leave_sub(2);
1971 }
1972
1973 sub _remove_billed_or_delivered_rows {
1974   my (%params) = @_;
1975
1976   croak "Missing parameter 'quantities'" if !$params{quantities};
1977
1978   my @fields = map { s/_1$//; $_ } grep { m/_1$/ } keys %{ $::form };
1979   my @new_rows;
1980
1981   my $make_key = sub {
1982     my ($row) = @_;
1983     return $::form->{"id_${row}"} unless $::form->{"serialnumber_${row}"};
1984     my $key = $::form->{"id_${row}"} . ':' . $::form->{"serialnumber_${row}"};
1985     return exists $params{quantities}->{$key} ? $key : $::form->{"id_${row}"};
1986   };
1987
1988   my $removed_rows = 0;
1989   my $row          = 0;
1990   while ($row < $::form->{rowcount}) {
1991     $row++;
1992     next unless $::form->{"id_$row"};
1993
1994     my $parts_id                      = $::form->{"id_$row"};
1995     my $base_qty                      = $::form->parse_amount(\%::myconfig, $::form->{"qty_$row"}) * SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor;
1996
1997     my $key                           = $make_key->($row);
1998     my $sub_qty                       = min($base_qty, $params{quantities}->{$key});
1999     $params{quantities}->{$key}      -= $sub_qty;
2000
2001     if (!$sub_qty || ($sub_qty != $base_qty)) {
2002       $::form->{"qty_${row}"} = $::form->format_amount(\%::myconfig, ($base_qty - $sub_qty) / SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor);
2003       push @new_rows, { map { $_ => $::form->{"${_}_${row}"} } @fields };
2004
2005     } else {
2006       $removed_rows++;
2007     }
2008   }
2009
2010   $::form->redo_rows(\@fields, \@new_rows, scalar(@new_rows), $::form->{rowcount});
2011   $::form->{rowcount} -= $removed_rows;
2012 }
2013
2014 # TODO: both of these are makeshift so that price sources can operate on rdbo objects. if
2015 # this ever gets rewritten in controller style, throw this out
2016 sub _make_record_item {
2017   my ($row) = @_;
2018
2019   my $class = {
2020     sales_order             => 'OrderItem',
2021     purchase_order          => 'OrderItem',
2022     sales_quotation         => 'OrderItem',
2023     request_quotation       => 'OrderItem',
2024     invoice                 => 'InvoiceItem',
2025     credit_note             => 'InvoiceItem',
2026     purchase_invoice        => 'InvoiceItem',
2027     purchase_delivery_order => 'DeliveryOrderItem',
2028     sales_delivery_order    => 'DeliveryOrderItem',
2029   }->{$::form->{type}};
2030
2031   return unless $class;
2032
2033   $class = 'SL::DB::' . $class;
2034
2035   eval "require $class";
2036
2037   my $obj = $::form->{"orderitems_id_$row"}
2038           ? $class->meta->convention_manager->auto_manager_class_name->find_by(id => $::form->{"orderitems_id_$row"})
2039           : $class->new;
2040
2041   for my $method (apply { s/_$row$// } grep { /_$row$/ } keys %$::form) {
2042     next unless $obj->meta->column($method);
2043     if ($obj->meta->column($method)->isa('Rose::DB::Object::Metadata::Column::Date')) {
2044       $obj->${\"$method\_as_date"}($::form->{"$method\_$row"});
2045     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::(?:Numeric|Float|DoublePrecsion)$/) {
2046       $obj->${\"$method\_as_number"}($::form->{"$method\_$row"});
2047     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::Boolean$/) {
2048       $obj->$method(!!$::form->{$method});
2049     } else {
2050       $obj->$method($::form->{"$method\_$row"});
2051     }
2052   }
2053
2054   if ($::form->{"id_$row"}) {
2055     $obj->part(SL::DB::Part->load_cached($::form->{"id_$row"}));
2056   }
2057
2058   return $obj;
2059 }
2060
2061 sub _make_record {
2062   my $class = {
2063     sales_order             => 'Order',
2064     purchase_order          => 'Order',
2065     sales_quotation         => 'Order',
2066     request_quotation       => 'Order',
2067     purchase_delivery_order => 'DeliveryOrder',
2068     sales_delivery_order    => 'DeliveryOrder',
2069   }->{$::form->{type}};
2070
2071   if ($::form->{type} =~ /invoice|credit_note/) {
2072     $class = $::form->{vc} eq 'customer' ? 'Invoice'
2073            : $::form->{vc} eq 'vendor'   ? 'PurchaseInvoice'
2074            : do { die 'unknown invoice type' };
2075   }
2076
2077   return unless $class;
2078
2079   $class = 'SL::DB::' . $class;
2080
2081   eval "require $class";
2082
2083   my $obj = $::form->{id}
2084           ? $class->meta->convention_manager->auto_manager_class_name->find_by(id => $::form->{id})
2085           : $class->new;
2086
2087   for my $method (keys %$::form) {
2088     next unless $obj->can($method);
2089     next unless $obj->meta->column($method);
2090
2091     if ($obj->meta->column($method)->isa('Rose::DB::Object::Metadata::Column::Date')) {
2092       $obj->${\"$method\_as_date"}($::form->{$method});
2093     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::(?:Numeric|Float|DoublePrecsion)$/) {
2094       $obj->${\"$method\_as_number"}($::form->{$method});
2095     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::Boolean$/) {
2096       $obj->$method(!!$::form->{$method});
2097     } else {
2098       $obj->$method($::form->{$method});
2099     }
2100   }
2101
2102   my @items;
2103   for my $i (1 .. $::form->{rowcount}) {
2104     next unless $::form->{"id_$i"};
2105     push @items, _make_record_item($i);
2106   }
2107
2108   $obj->items(@items) if @items;
2109   $obj->is_sales(!!$obj->customer_id) if $class eq 'SL::DB::DeliveryOrder';
2110
2111   return $obj;
2112 }