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