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