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