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