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