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