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