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