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