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