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