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