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