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