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