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