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