1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger, Accounting
9 # Copyright (c) 1998-2003
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
29 #======================================================================
33 #======================================================================
37 use POSIX qw(strftime);
45 use SL::MoreCommon qw(ary_diff restore_form save_form);
46 use SL::ReportGenerator;
47 use List::MoreUtils qw(uniq any none);
48 use List::Util qw(min max reduce sum);
53 use SL::DB::PaymentTerm;
56 require "bin/mozilla/common.pl";
57 require "bin/mozilla/io.pl";
58 require "bin/mozilla/reportgenerator.pl";
67 # $locale->text('Edit the purchase_order');
68 # $locale->text('Edit the sales_order');
69 # $locale->text('Edit the request_quotation');
70 # $locale->text('Edit the sales_quotation');
72 # $locale->text('Workflow purchase_order');
73 # $locale->text('Workflow sales_order');
74 # $locale->text('Workflow request_quotation');
75 # $locale->text('Workflow sales_quotation');
78 'sales_order' => 'sales_order_edit',
79 'purchase_order' => 'purchase_order_edit',
80 'request_quotation' => 'request_quotation_edit',
81 'sales_quotation' => 'sales_quotation_edit',
85 my $form = $main::form;
87 my $right = $oe_access_map->{$form->{type}};
88 $right ||= 'DOES_NOT_EXIST';
90 $main::auth->assert($right);
93 sub check_oe_conversion_to_sales_invoice_allowed {
94 return 1 if $::form->{type} !~ m/^sales/;
95 return 1 if ($::form->{type} =~ m/quotation/) && $::instance_conf->get_allow_sales_invoice_from_sales_quotation;
96 return 1 if ($::form->{type} =~ m/order/) && $::instance_conf->get_allow_sales_invoice_from_sales_order;
98 $::form->show_generic_error($::locale->text("You do not have the permissions to access this function."));
104 $main::lxdebug->enter_sub();
106 my $form = $main::form;
107 my $locale = $main::locale;
113 if ($form->{type} eq 'purchase_order') {
114 $form->{title} = $action eq "edit" ?
115 $locale->text('Edit Purchase Order') :
116 $locale->text('Add Purchase Order');
117 $form->{heading} = $locale->text('Purchase Order');
118 $form->{vc} = 'vendor';
120 if ($form->{type} eq 'sales_order') {
121 $form->{title} = $action eq "edit" ?
122 $locale->text('Edit Sales Order') :
123 $locale->text('Add Sales Order');
124 $form->{heading} = $locale->text('Sales Order');
125 $form->{vc} = 'customer';
127 if ($form->{type} eq 'request_quotation') {
128 $form->{title} = $action eq "edit" ?
129 $locale->text('Edit Request for Quotation') :
130 $locale->text('Add Request for Quotation');
131 $form->{heading} = $locale->text('Request for Quotation');
132 $form->{vc} = 'vendor';
134 if ($form->{type} eq 'sales_quotation') {
135 $form->{title} = $action eq "edit" ?
136 $locale->text('Edit Quotation') :
137 $locale->text('Add Quotation');
138 $form->{heading} = $locale->text('Quotation');
139 $form->{vc} = 'customer';
142 $main::lxdebug->leave_sub();
146 $main::lxdebug->enter_sub();
148 my $form = $main::form;
155 "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}"
156 unless $form->{callback};
158 $form->{show_details} = $::myconfig{show_form_details};
164 $main::lxdebug->leave_sub();
168 $main::lxdebug->enter_sub();
170 my $form = $main::form;
174 $form->{show_details} = $::myconfig{show_form_details};
175 $form->{taxincluded_changed_by_user} = 1;
177 # show history button
178 $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
179 #/show hhistory button
181 $form->{simple_save} = 0;
183 set_headings("edit");
185 # editing without stuff to edit? try adding it first
186 if ($form->{rowcount} && !$form->{print_and_save}) {
188 map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
192 undef $form->{rowcount};
194 $main::lxdebug->leave_sub();
197 } elsif (!$form->{id}) {
199 $main::lxdebug->leave_sub();
203 my ($language_id, $printer_id);
204 if ($form->{print_and_save}) {
205 $form->{action} = "dispatcher";
206 $form->{action_print} = "1";
207 $form->{resubmit} = 1;
208 $language_id = $form->{language_id};
209 $printer_id = $form->{printer_id};
212 set_headings("edit");
216 $form->{rowcount} = 0;
217 foreach my $ref (@{ $form->{form_details} }) {
219 map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{$ref};
224 if ($form->{print_and_save}) {
225 $form->{language_id} = $language_id;
226 $form->{printer_id} = $printer_id;
231 $main::lxdebug->leave_sub();
235 $main::lxdebug->enter_sub();
237 my $form = $main::form;
238 my %myconfig = %main::myconfig;
239 my $locale = $main::locale;
243 # retrieve order/quotation
244 my $editing = $form->{id};
246 OE->retrieve(\%myconfig, \%$form);
248 # if multiple rowcounts (== collective order) then check if the
249 # there were more than one customer (in that case OE::retrieve removes
250 # the content from the field)
251 $form->error($locale->text('Collective Orders only work for orders from one customer!'))
252 if $form->{rowcount} && $form->{type} eq 'sales_order'
253 && defined $form->{customer} && $form->{customer} eq '';
255 $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes shipto_id delivery_term_id currency));
257 # get customer / vendor
258 IR->get_vendor(\%myconfig, \%$form) if $form->{type} =~ /(purchase_order|request_quotation)/;
259 IS->get_customer(\%myconfig, \%$form) if $form->{type} =~ /sales_(order|quotation)/;
261 $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id shipto_id delivery_term_id));
262 $form->restore_vars(qw(currency)) if $form->{id};
263 $form->restore_vars(qw(taxincluded)) if $form->{id};
264 $form->restore_vars(qw(salesman_id)) if $editing;
265 $form->{forex} = $form->{exchangerate};
266 $form->{employee} = "$form->{employee}--$form->{employee_id}";
268 $main::lxdebug->leave_sub();
272 $main::lxdebug->enter_sub();
274 my $form = $main::form;
275 my %myconfig = %main::myconfig;
279 $form->{formname} ||= $form->{type};
281 # format discounts if values come from db. either as single id, or as a collective order
282 my $format_discounts = $form->{id} || $form->{convert_from_oe_ids};
284 for my $i (1 .. $form->{rowcount}) {
285 $form->{"reqdate_$i"} ||= $form->{"deliverydate_$i"};
286 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * ($format_discounts ? 100 : 1));
287 $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
288 $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
289 $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"});
292 $main::lxdebug->leave_sub();
295 sub setup_oe_action_bar {
299 my $has_active_periodic_invoice;
300 if ($params{oe_obj}) {
301 $has_active_periodic_invoice =
302 $params{oe_obj}->is_type('sales_order')
303 && $params{oe_obj}->periodic_invoices_config
304 && $params{oe_obj}->periodic_invoices_config->active
305 && ( !$params{oe_obj}->periodic_invoices_config->end_date
306 || ($params{oe_obj}->periodic_invoices_config->end_date > DateTime->today_local))
307 && $params{oe_obj}->periodic_invoices_config->get_previous_billed_period_start_date;
310 my $allow_invoice = $params{is_req_quo}
311 || $params{is_pur_ord}
312 || ($params{is_sales_quo} && $::instance_conf->get_allow_sales_invoice_from_sales_quotation)
313 || ($params{is_sales_ord} && $::instance_conf->get_allow_sales_invoice_from_sales_order);
314 my @req_trans_cost_art = qw(kivi.SalesPurchase.check_transport_cost_article_presence) x!!$::instance_conf->get_transport_cost_reminder_article_number_id;
315 my @warn_p_invoice = qw(kivi.SalesPurchase.oe_warn_save_active_periodic_invoice) x!!$has_active_periodic_invoice;
317 for my $bar ($::request->layout->get('actionbar')) {
321 submit => [ '#form', { action => "update" } ],
322 id => 'update_button',
323 checks => [ 'kivi.validate_form' ],
324 accesskey => 'enter',
330 submit => [ '#form', { action => "save" } ],
331 checks => [ 'kivi.validate_form', @req_trans_cost_art, @warn_p_invoice ],
335 submit => [ '#form', { action => "save_as_new" } ],
336 checks => [ 'kivi.validate_form', @req_trans_cost_art ],
337 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
340 t8('Save and Close'),
341 submit => [ '#form', { action => "save_and_close" } ],
342 checks => [ 'kivi.validate_form', @req_trans_cost_art, @warn_p_invoice ],
346 submit => [ '#form', { action => "delete" } ],
347 confirm => t8('Do you really want to delete this object?'),
348 disabled => !$form->{id} ? t8('This record has not been saved yet.')
349 : ( ($params{is_sales_ord} && !$::instance_conf->get_sales_order_show_delete)
350 || ($params{is_pur_ord} && !$::instance_conf->get_purchase_order_show_delete)) ? t8('Deleting this type of record has been disabled in the configuration.')
353 ], # end of combobox "Save"
358 action => [ t8('Workflow') ],
361 submit => [ '#form', { action => "sales_order" } ],
362 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
363 checks => [ 'kivi.validate_form' ],
364 only_if => $params{is_sales_quo} || $params{is_pur_ord},
367 t8('Purchase Order'),
368 submit => [ '#form', { action => "purchase_order" } ],
369 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
370 checks => [ 'kivi.validate_form' ],
371 only_if => $params{is_sales_ord} || $params{is_req_quo},
374 t8('Delivery Order'),
375 submit => [ '#form', { action => "delivery_order" } ],
376 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
377 checks => [ 'kivi.validate_form' ],
378 only_if => $params{is_sales_ord} || $params{is_pur_ord},
382 submit => [ '#form', { action => "invoice" } ],
383 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
384 checks => [ 'kivi.validate_form' ],
385 only_if => $allow_invoice,
389 submit => [ '#form', { action => "quotation" } ],
390 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
391 checks => [ 'kivi.validate_form' ],
392 only_if => $params{is_sales_ord},
395 t8('Request for Quotation'),
396 submit => [ '#form', { action => "request_for_quotation" } ],
397 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
398 checks => [ 'kivi.validate_form' ],
399 only_if => $params{is_pur_ord},
401 ], # end of combobox "Workflow"
404 action => [ t8('Export') ],
407 call => [ 'kivi.SalesPurchase.show_print_dialog' ],
408 checks => [ 'kivi.validate_form' ],
412 call => [ 'kivi.SalesPurchase.show_email_dialog' ],
413 checks => [ 'kivi.validate_form' ],
416 t8('Download attachments of all parts'),
417 call => [ 'kivi.File.downloadOrderitemsFiles', $::form->{type}, $::form->{id} ],
418 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
419 only_if => $::instance_conf->get_doc_storage,
421 ], #end of combobox "Export"
424 action => [ t8('more') ],
427 call => [ 'set_history_window', $form->{id} * 1, 'id' ],
428 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
432 call => [ 'follow_up_window' ],
433 disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
435 ], # end of combobox "more"
438 $::request->layout->add_javascripts('kivi.Validator.js');
441 sub setup_oe_search_action_bar {
444 for my $bar ($::request->layout->get('actionbar')) {
448 submit => [ '#form' ],
449 accesskey => 'enter',
450 checks => [ 'kivi.validate_form' ],
454 $::request->layout->add_javascripts('kivi.Validator.js');
457 sub setup_oe_orders_action_bar {
460 return unless $::form->{type} eq 'sales_order';
462 for my $bar ($::request->layout->get('actionbar')) {
465 t8('New sales order'),
466 submit => [ '#form', { action => 'edit' } ],
467 checks => [ [ 'kivi.check_if_entries_selected', '[name^=multi_id_]' ] ],
468 accesskey => 'enter',
475 $main::lxdebug->enter_sub();
478 my $form = $main::form;
479 my %myconfig = %main::myconfig;
480 my $locale = $main::locale;
481 my $cgi = $::request->{cgi};
485 # Container for template variables. Unfortunately this has to be
486 # visible in form_footer too, so package local level and not my here.
487 my $TMPL_VAR = $::request->cache('tmpl_var', {});
489 $TMPL_VAR->{oe_obj} = SL::DB::Order->new(id => $form->{id})->load;
491 $TMPL_VAR->{vc_obj} = SL::DB::Customer->new(id => $form->{customer_id})->load if $form->{customer_id};
492 $TMPL_VAR->{vc_obj} = SL::DB::Vendor->new(id => $form->{vendor_id})->load if $form->{vendor_id};
494 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
496 my $current_employee = SL::DB::Manager::Employee->current;
497 $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
498 $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
499 $form->{employee_id} ||= $current_employee->id;
500 $form->{salesman_id} ||= $current_employee->id;
502 # openclosed checkboxes
504 push @tmp, sprintf qq|<input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" %s><label for="delivered">%s</label>|,
505 $form->{"delivered"} ? "checked" : "", $locale->text('Delivery Order(s) for full qty created') if $form->{"type"} =~ /_order$/;
506 push @tmp, sprintf qq|<input name="closed" id="closed" type="checkbox" class="checkbox" value="1" %s><label for="closed">%s</label>|,
507 $form->{"closed"} ? "checked" : "", $locale->text('Closed') if $form->{id};
508 $TMPL_VAR->{openclosed} = sprintf qq|<tr><td colspan=%d align=center>%s</td></tr>\n|, 2 * scalar @tmp, join "\n", @tmp if @tmp;
510 my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
512 $form->get_lists("taxzones" => ($form->{id} ? "ALL_TAXZONES" : "ALL_ACTIVE_TAXZONES"),
513 "currencies" => "ALL_CURRENCIES",
514 "price_factors" => "ALL_PRICE_FACTORS");
515 $form->{ALL_PAYMENTS} = SL::DB::Manager::PaymentTerm->get_all( where => [ or => [ obsolete => 0, id => $form->{payment_id} || undef ] ]);
517 $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all;
520 my @old_project_ids = uniq grep { $_ } map { $_ * 1 } ($form->{"globalproject_id"}, map { $form->{"project_id_$_"} } 1..$form->{"rowcount"});
521 my @old_ids_cond = @old_project_ids ? (id => \@old_project_ids) : ();
523 if (($vc eq 'customers') && $::instance_conf->get_customer_projects_only_in_sales) {
526 customer_id => $::form->{customer_id},
527 billable_customer_id => $::form->{customer_id},
532 and => [ active => 1, @customer_cond ],
536 $TMPL_VAR->{ALL_PROJECTS} = SL::DB::Manager::Project->get_all_sorted(query => \@conditions);
537 $form->{ALL_PROJECTS} = $TMPL_VAR->{ALL_PROJECTS}; # make projects available for second row drop-down in io.pl
540 my $employee_list_query_gen = sub { $::form->{$_[0]} ? [ or => [ id => $::form->{$_[0]}, deleted => 0 ] ] : [ deleted => 0 ] };
541 $TMPL_VAR->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => $employee_list_query_gen->('employee_id'));
542 $TMPL_VAR->{ALL_SALESMEN} = SL::DB::Manager::Employee->get_all_sorted(query => $employee_list_query_gen->('salesman_id'));
543 $TMPL_VAR->{ALL_SHIPTO} = SL::DB::Manager::Shipto->get_all_sorted(query => [
544 or => [ trans_id => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
546 $TMPL_VAR->{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all_sorted(query => [
548 cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
551 cp_id => $::form->{cp_id} * 1
555 $TMPL_VAR->{sales_employee_labels} = sub { $_[0]->{name} || $_[0]->{login} };
557 # currencies and exchangerate
558 $form->{currency} = $form->{defaultcurrency} unless $form->{currency};
559 $TMPL_VAR->{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
560 push @custom_hiddens, "forex";
561 push @custom_hiddens, "exchangerate" if $form->{forex};
564 my $creditwarning = (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) ? 1 : 0;
565 $TMPL_VAR->{is_credit_remaining_negativ} = ($form->{creditremaining} =~ /-/) ? "0" : "1";
568 $TMPL_VAR->{business_label} = ($form->{vc} eq "customer" ? $locale->text('Customer type') : $locale->text('Vendor type'));
570 push @custom_hiddens, "customer_pricegroup_id" if $form->{vc} eq 'customer';
572 my $credittext = $locale->text('Credit Limit exceeded!!!');
574 my $follow_up_vc = $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
575 $follow_up_vc =~ s/--\d*\s*$//;
576 $TMPL_VAR->{follow_up_trans_info} = ($form->{type} =~ /_quotation$/ ? $form->{quonumber} : $form->{ordnumber}) . " ($follow_up_vc)";
579 my $follow_ups = FU->follow_ups('trans_id' => $form->{id}, 'not_done' => 1);
581 if (scalar @{ $follow_ups }) {
582 $TMPL_VAR->{num_follow_ups} = scalar @{ $follow_ups };
583 $TMPL_VAR->{num_due_follow_ups} = sum map { $_->{due} * 1 } @{ $follow_ups };
587 my $dispatch_to_popup = '';
588 if ($form->{resubmit} && ($form->{format} eq "html")) {
589 $dispatch_to_popup = "window.open('about:blank','Beleg'); document.oe.target = 'Beleg';";
590 $dispatch_to_popup .= "document.do.submit();";
591 } elsif ($form->{resubmit} && $form->{action_print}) {
592 # emulate click for resubmitting actions
593 $dispatch_to_popup = "kivi.SalesPurchase.show_print_dialog(); kivi.SalesPurchase.print_record();";
594 } elsif ($creditwarning) {
595 $::request->{layout}->add_javascripts_inline("alert('$credittext');");
598 $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup});");
599 $TMPL_VAR->{dateformat} = $myconfig{dateformat};
600 $TMPL_VAR->{numberformat} = $myconfig{numberformat};
602 if ($form->{type} eq 'sales_order') {
603 if (!$form->{periodic_invoices_config}) {
604 $form->{periodic_invoices_status} = $locale->text('not configured');
607 my $config = YAML::Load($form->{periodic_invoices_config});
608 $form->{periodic_invoices_status} = $config->{active} ? $locale->text('active') : $locale->text('inactive');
612 $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase kivi.File kivi.Part kivi.CustomerVendor kivi.Validator show_form_details show_history show_vc_details ckeditor/ckeditor ckeditor/adapters/jquery kivi.io));
616 my %type_check_vars = (
617 is_sales => scalar($form->{type} =~ /^sales_/),
618 is_order => scalar($form->{type} =~ /_order$/),
619 is_sales_quo => scalar($form->{type} =~ /sales_quotation$/),
620 is_req_quo => scalar($form->{type} =~ /request_quotation$/),
621 is_sales_ord => scalar($form->{type} =~ /sales_order$/),
622 is_pur_ord => scalar($form->{type} =~ /purchase_order$/),
627 oe_obj => $TMPL_VAR->{oe_obj},
628 vc_obj => $TMPL_VAR->{vc_obj},
632 if ($form->{CFDD_shipto} && $form->{CFDD_shipto_id} ) {
633 $form->{shipto_id} = $form->{CFDD_shipto_id};
636 push @custom_hiddens, map { "shiptocvar_" . $_->name } @{ SL::DB::Manager::CustomVariableConfig->get_all(where => [ module => 'ShipTo' ]) };
638 $TMPL_VAR->{HIDDENS} = [ map { name => $_, value => $form->{$_} },
639 qw(id type vc proforma queued printed emailed
640 title creditlimit creditremaining tradediscount business
641 max_dunning_level dunning_amount
642 CFDD_shipto CFDD_shipto_id
643 taxpart taxservice taxaccounts cursor_fokus
644 show_details useasnew),
646 map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts} ]; # deleted: discount
648 $TMPL_VAR->{$_} = $type_check_vars{$_} for keys %type_check_vars;
650 $TMPL_VAR->{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
652 if ($type_check_vars{is_sales} && $::instance_conf->get_transport_cost_reminder_article_number_id) {
653 $TMPL_VAR->{transport_cost_reminder_article} = SL::DB::Part->new(id => $::instance_conf->get_transport_cost_reminder_article_number_id)->load;
656 print $form->parse_html_template("oe/form_header", {
661 $main::lxdebug->leave_sub();
665 $main::lxdebug->enter_sub();
667 my $form = $main::form;
668 my %myconfig = %main::myconfig;
669 my $locale = $main::locale;
673 $form->{invtotal} = $form->{invsubtotal};
675 my $introws = max 5, $form->numtextrows($form->{intnotes}, 35, 8);
677 my $TMPL_VAR = $::request->cache('tmpl_var', {});
679 $TMPL_VAR->{notes} = qq|<textarea name="notes" class="texteditor" wrap="soft" style="width: 350px; height: 150px">| . H($form->{notes}) . qq|</textarea>|;
680 $TMPL_VAR->{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|;
682 if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
683 my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
684 $form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
687 if (!$form->{taxincluded}) {
689 foreach my $item (split / /, $form->{taxaccounts}) {
690 if ($form->{"${item}_base"}) {
691 $form->{invtotal} += $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
692 $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
694 $TMPL_VAR->{tax} .= qq|
696 <th align=right>$form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%</th>
697 <td align=right>$form->{"${item}_total"}</td>
702 foreach my $item (split / /, $form->{taxaccounts}) {
703 if ($form->{"${item}_base"}) {
704 $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"} / (1 + $form->{"${item}_rate"})), 2);
705 $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
706 $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
707 $form->{"${item}_netto"} = $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
709 $TMPL_VAR->{tax} .= qq|
711 <th align=right>Enthaltene $form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%</th>
712 <td align=right>$form->{"${item}_total"}</td>
715 <th align=right>Nettobetrag</th>
716 <td align=right>$form->{"${item}_netto"}</td>
722 my $grossamount = $form->{invtotal};
723 $form->{invtotal} = $form->round_amount( $form->{invtotal}, 2, 1);
724 $form->{rounding} = $form->round_amount(
725 $form->{invtotal} - $form->round_amount($grossamount, 2),
728 $form->{oldinvtotal} = $form->{invtotal};
730 $TMPL_VAR->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
732 my $print_options_html = setup_sales_purchase_print_options();
734 print $form->parse_html_template("oe/form_footer", {
736 print_options => $print_options_html,
737 is_sales => scalar ($form->{type} =~ /^sales_/), # these vars are exported, so that the template
738 is_order => scalar ($form->{type} =~ /_order$/), # may determine what to show
739 is_sales_quo => scalar ($form->{type} =~ /sales_quotation$/),
740 is_req_quo => scalar ($form->{type} =~ /request_quotation$/),
741 is_sales_ord => scalar ($form->{type} =~ /sales_order$/),
742 is_pur_ord => scalar ($form->{type} =~ /purchase_order$/),
745 $main::lxdebug->leave_sub();
749 $main::lxdebug->enter_sub();
751 my ($recursive_call) = @_;
753 my $form = $main::form;
754 my %myconfig = %main::myconfig;
758 set_headings($form->{"id"} ? "edit" : "add");
762 my $vc = $form->{vc};
763 if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
764 $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
766 IS->get_customer(\%myconfig, $form) if $vc eq 'customer';
767 IR->get_vendor(\%myconfig, $form) if $vc eq 'vendor';
770 if (!$form->{forex}) { # read exchangerate from input field (not hidden)
771 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate) unless $recursive_call;
774 $buysell = 'sell' if ($form->{vc} eq 'vendor');
775 $form->{forex} = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
776 $form->{exchangerate} = $form->{forex} if $form->{forex};
778 my $exchangerate = $form->{exchangerate} || 1;
780 ##################### process items ######################################
782 my $i = $form->{rowcount};
783 if ( ($form->{"partnumber_$i"} eq "")
784 && ($form->{"description_$i"} eq "")
785 && ($form->{"partsgroup_$i"} eq "")) {
787 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
793 if ($form->{type} =~ /^sales/) {
794 IS->retrieve_item(\%myconfig, \%$form);
797 IR->retrieve_item(\%myconfig, \%$form);
801 my $rows = scalar @{ $form->{item_list} };
803 $form->{"discount_$i"} = $form->parse_amount(\%myconfig, $form->{"discount_$i"}) / 100.0;
804 $form->{"discount_$i"} ||= $form->{"$form->{vc}_discount"};
806 $form->{"lastcost_$i"} = $form->parse_amount(\%myconfig, $form->{"lastcost_$i"});
810 $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
811 if( !$form->{"qty_$i"} ) {
812 $form->{"qty_$i"} = 1;
817 select_item(mode => $mode, pre_entered_qty => $form->{"qty_$i"});
818 $::dispatcher->end_request;
822 my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
823 # hier werden parts (Artikeleigenschaften) aus item_list (retrieve_item aus IS.pm)
824 # (item wahrscheinlich synonym für parts) entsprechend in die form geschrieben ...
826 # Wäre dieses Mapping nicht besser in retrieve_items aufgehoben?
827 #(Eine Funktion bekommt Daten -> ARBEIT -> Rückgabe DATEN)
828 # Das quot sieht doch auch nach Überarbeitung aus ... (hmm retrieve_items gibt es in IS und IR)
829 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g } qw(partnumber description unit);
830 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
832 # ... deswegen muss die prüfung, ob es sich um einen nicht rabattierfähigen artikel handelt später erfolgen (Bug 1136)
833 $form->{"discount_$i"} = 0 if $form->{"not_discountable_$i"};
834 $form->{payment_id} = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
836 $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
838 ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
839 my $dec_qty = length $1;
840 my $decimalplaces = max 2, $dec_qty;
843 $form->{"sellprice_$i"} = $sellprice;
845 my $record = _make_record();
846 my $price_source = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
847 my $best_price = $price_source->best_price;
848 my $best_discount = $price_source->best_discount;
851 $::form->{"sellprice_$i"} = $best_price->price;
852 $::form->{"active_price_source_$i"} = $best_price->source;
854 if ($best_discount) {
855 $::form->{"discount_$i"} = $best_discount->discount;
856 $::form->{"active_discount_source_$i"} = $best_discount->source;
859 $form->{"sellprice_$i"} /= $exchangerate; # if there is an exchange rate adjust sellprice
862 my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"});
863 map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
864 map { $form->{"${_}_base"} += $amount } split / /, $form->{"taxaccounts_$i"};
865 map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{taxaccounts} if !$form->{taxincluded};
867 $form->{creditremaining} -= $amount;
869 $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
870 $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
871 $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
872 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0);
878 # ok, so this is a new part
879 # ask if it is a part or service item
881 if ( $form->{"partsgroup_$i"}
882 && ($form->{"partsnumber_$i"} eq "")
883 && ($form->{"description_$i"} eq "")) {
885 $form->{"discount_$i"} = "";
889 $form->{"id_$i"} = 0;
894 ##################### process items ######################################
897 $main::lxdebug->leave_sub();
901 $main::lxdebug->enter_sub();
903 my $form = $main::form;
904 my %myconfig = %main::myconfig;
905 my $locale = $main::locale;
909 if ($form->{type} eq 'purchase_order') {
910 $form->{vc} = 'vendor';
911 $form->{ordnrname} = 'ordnumber';
912 $form->{title} = $locale->text('Purchase Orders');
913 $form->{ordlabel} = $locale->text('Order Number');
915 } elsif ($form->{type} eq 'request_quotation') {
916 $form->{vc} = 'vendor';
917 $form->{ordnrname} = 'quonumber';
918 $form->{title} = $locale->text('Request for Quotations');
919 $form->{ordlabel} = $locale->text('RFQ Number');
921 } elsif ($form->{type} eq 'sales_order') {
922 $form->{vc} = 'customer';
923 $form->{ordnrname} = 'ordnumber';
924 $form->{title} = $locale->text('Sales Orders');
925 $form->{ordlabel} = $locale->text('Order Number');
927 } elsif ($form->{type} eq 'sales_quotation') {
928 $form->{vc} = 'customer';
929 $form->{ordnrname} = 'quonumber';
930 $form->{title} = $locale->text('Quotations');
931 $form->{ordlabel} = $locale->text('Quotation Number');
934 $form->show_generic_error($locale->text('oe.pl::search called with unknown type'));
937 # setup vendor / customer data
938 $form->get_lists("projects" => { "key" => "ALL_PROJECTS", "all" => 1 },
939 "taxzones" => "ALL_TAXZONES",
940 "business_types" => "ALL_BUSINESS_TYPES",);
941 $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
942 $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all;
944 $form->{CT_CUSTOM_VARIABLES} = CVar->get_configs('module' => 'CT');
945 ($form->{CT_CUSTOM_VARIABLES_FILTER_CODE},
946 $form->{CT_CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables' => $form->{CT_CUSTOM_VARIABLES},
947 'include_prefix' => 'l_',
948 'include_value' => 'Y');
950 # constants and subs for template
951 $form->{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
953 $form->{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
955 $::request->{layout}->use_javascript(map { "${_}.js" } qw(autocomplete_project));
957 setup_oe_search_action_bar();
961 print $form->parse_html_template('oe/search', {
962 is_order => scalar($form->{type} =~ /_order/),
965 $main::lxdebug->leave_sub();
968 sub create_subtotal_row {
969 $main::lxdebug->enter_sub();
971 my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
973 my $form = $main::form;
974 my %myconfig = %main::myconfig;
976 my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
978 map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
980 $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
982 map { $totals->{$_} = 0 } @{ $subtotal_columns };
984 $main::lxdebug->leave_sub();
990 $main::lxdebug->enter_sub();
992 my $form = $main::form;
993 my %myconfig = %main::myconfig;
994 my $locale = $main::locale;
995 my $cgi = $::request->{cgi};
999 my $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1001 ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
1003 report_generator_set_default_sort('transdate', 1);
1005 OE->transactions(\%myconfig, \%$form);
1007 $form->{rowcount} = scalar @{ $form->{OE} };
1010 "transdate", "reqdate",
1012 "cusordnumber", "customernumber",
1013 "name", "netamount",
1015 "remaining_netamount", "remaining_amount",
1018 "shipvia", "globalprojectnumber",
1019 "transaction_description", "open",
1020 "delivered", "periodic_invoices",
1021 "marge_total", "marge_percent",
1022 "vcnumber", "ustid",
1023 "country", "shippingpoint",
1024 "taxzone", "insertdate",
1025 "order_probability", "expected_billing_date", "expected_netamount",
1029 # only show checkboxes if gotten here via sales_order form.
1030 my $allow_multiple_orders = $form->{type} eq 'sales_order';
1031 if ($allow_multiple_orders) {
1032 unshift @columns, "ids";
1035 $form->{l_open} = $form->{l_closed} = "Y" if ($form->{open} && $form->{closed});
1036 $form->{l_delivered} = "Y" if ($form->{delivered} && $form->{notdelivered});
1037 $form->{l_periodic_invoices} = "Y" if ($form->{periodic_invoices_active} && $form->{periodic_invoices_inactive});
1038 map { $form->{"l_${_}"} = 'Y' } qw(order_probability expected_billing_date expected_netamount) if $form->{l_order_probability_expected_billing_date};
1040 my $attachment_basename;
1041 if ($form->{vc} eq 'vendor') {
1042 if ($form->{type} eq 'purchase_order') {
1043 $form->{title} = $locale->text('Purchase Orders');
1044 $attachment_basename = $locale->text('purchase_order_list');
1046 $form->{title} = $locale->text('Request for Quotations');
1047 $attachment_basename = $locale->text('rfq_list');
1051 if ($form->{type} eq 'sales_order') {
1052 $form->{title} = $locale->text('Sales Orders');
1053 $attachment_basename = $locale->text('sales_order_list');
1055 $form->{title} = $locale->text('Quotations');
1056 $attachment_basename = $locale->text('quotation_list');
1060 my $report = SL::ReportGenerator->new(\%myconfig, $form);
1062 my $ct_cvar_configs = CVar->get_configs('module' => 'CT');
1063 my @ct_includeable_custom_variables = grep { $_->{includeable} } @{ $ct_cvar_configs };
1064 my @ct_searchable_custom_variables = grep { $_->{searchable} } @{ $ct_cvar_configs };
1066 my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @ct_includeable_custom_variables;
1067 push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
1069 my @hidden_variables = map { "l_${_}" } @columns;
1070 push @hidden_variables, "l_subtotal", $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered ordnumber quonumber cusordnumber
1071 transaction_description transdatefrom transdateto type vc employee_id salesman_id
1072 reqdatefrom reqdateto projectnumber project_id periodic_invoices_active periodic_invoices_inactive
1073 business_id shippingpoint taxzone_id reqdate_unset_or_old insertdatefrom insertdateto
1074 order_probability_op order_probability_value expected_billing_date_from expected_billing_date_to
1075 parts_partnumber parts_description all department_id);
1076 push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
1078 my @keys_for_url = grep { $form->{$_} } @hidden_variables;
1079 push @keys_for_url, 'taxzone_id' if $form->{taxzone_id} ne ''; # taxzone_id could be 0
1081 my $href = build_std_url('action=orders', @keys_for_url);
1084 'ids' => { 'text' => '', },
1085 'transdate' => { 'text' => $locale->text('Date'), },
1086 'reqdate' => { 'text' => $form->{type} =~ /_order/ ? $locale->text('Required by') : $locale->text('Valid until') },
1087 'id' => { 'text' => $locale->text('ID'), },
1088 'ordnumber' => { 'text' => $locale->text('Order'), },
1089 'quonumber' => { 'text' => $form->{type} eq "request_quotation" ? $locale->text('RFQ') : $locale->text('Quotation'), },
1090 'cusordnumber' => { 'text' => $locale->text('Customer Order Number'), },
1091 'name' => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
1092 'customernumber' => { 'text' => $locale->text('Customer Number'), },
1093 'netamount' => { 'text' => $locale->text('Amount'), },
1094 'tax' => { 'text' => $locale->text('Tax'), },
1095 'amount' => { 'text' => $locale->text('Total'), },
1096 'remaining_amount' => { 'text' => $locale->text('Remaining Amount'), },
1097 'remaining_netamount' => { 'text' => $locale->text('Remaining Net Amount'), },
1098 'curr' => { 'text' => $locale->text('Curr'), },
1099 'employee' => { 'text' => $locale->text('Employee'), },
1100 'salesman' => { 'text' => $locale->text('Salesman'), },
1101 'shipvia' => { 'text' => $locale->text('Ship via'), },
1102 'globalprojectnumber' => { 'text' => $locale->text('Project Number'), },
1103 'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1104 'open' => { 'text' => $locale->text('Open'), },
1105 'delivered' => { 'text' => $locale->text('Delivery Order created'), },
1106 'marge_total' => { 'text' => $locale->text('Ertrag'), },
1107 'marge_percent' => { 'text' => $locale->text('Ertrag prozentual'), },
1108 'vcnumber' => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer Number') : $locale->text('Vendor Number'), },
1109 'country' => { 'text' => $locale->text('Country'), },
1110 'ustid' => { 'text' => $locale->text('USt-IdNr.'), },
1111 'periodic_invoices' => { 'text' => $locale->text('Per. Inv.'), },
1112 'shippingpoint' => { 'text' => $locale->text('Shipping Point'), },
1113 'taxzone' => { 'text' => $locale->text('Steuersatz'), },
1114 'insertdate' => { 'text' => $locale->text('Insert Date'), },
1115 'order_probability' => { 'text' => $locale->text('Order probability'), },
1116 'expected_billing_date' => { 'text' => $locale->text('Exp. bill. date'), },
1117 'expected_netamount' => { 'text' => $locale->text('Exp. netamount'), },
1118 'payment_terms' => { 'text' => $locale->text('Payment Terms'), },
1122 foreach my $name (qw(id transdate reqdate quonumber ordnumber cusordnumber name employee salesman shipvia transaction_description shippingpoint taxzone insertdate payment_terms)) {
1123 my $sortdir = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
1124 $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
1127 my %column_alignment = map { $_ => 'right' } qw(netamount tax amount curr remaining_amount remaining_netamount order_probability expected_billing_date expected_netamount);
1129 $form->{"l_type"} = "Y";
1130 map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1131 $column_defs{ids}->{visible} = $allow_multiple_orders ? 'HTML' : 0;
1133 $report->set_columns(%column_defs);
1134 $report->set_column_order(@columns);
1135 $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
1136 $report->set_sort_indicator($form->{sort}, $form->{sortdir});
1138 CVar->add_custom_variables_to_report('module' => 'CT',
1139 'trans_id_field' => "$form->{vc}_id",
1140 'configs' => $ct_cvar_configs,
1141 'column_defs' => \%column_defs,
1142 'data' => $form->{OE});
1146 push @options, $locale->text('Customer') . " : $form->{customer}" if $form->{customer};
1147 push @options, $locale->text('Vendor') . " : $form->{vendor}" if $form->{vendor};
1148 push @options, $locale->text('Contact Person') . " : $form->{cp_name}" if $form->{cp_name};
1149 push @options, $locale->text('Department') . " : $form->{department}" if $form->{department};
1150 push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if $form->{ordnumber};
1151 push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}" if $form->{cusordnumber};
1152 push @options, $locale->text('Notes') . " : $form->{notes}" if $form->{notes};
1153 push @options, $locale->text('Transaction description') . " : $form->{transaction_description}" if $form->{transaction_description};
1154 push @options, $locale->text('Quick Search') . " : $form->{all}" if $form->{all};
1155 push @options, $locale->text('Shipping Point') . " : $form->{shippingpoint}" if $form->{shippingpoint};
1156 push @options, $locale->text('Part Description') . " : $form->{parts_description}" if $form->{parts_description};
1157 push @options, $locale->text('Part Number') . " : $form->{parts_partnumber}" if $form->{parts_partnumber};
1158 if ( $form->{transdatefrom} or $form->{transdateto} ) {
1159 push @options, $locale->text('Order Date');
1160 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if $form->{transdatefrom};
1161 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
1163 if ( $form->{reqdatefrom} or $form->{reqdateto} ) {
1164 push @options, $locale->text('Delivery Date');
1165 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{reqdatefrom}, 1) if $form->{reqdatefrom};
1166 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{reqdateto}, 1) if $form->{reqdateto};
1168 if ( $form->{insertdatefrom} or $form->{insertdateto} ) {
1169 push @options, $locale->text('Insert Date');
1170 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{insertdatefrom}, 1) if $form->{insertdatefrom};
1171 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{insertdateto}, 1) if $form->{insertdateto};
1173 push @options, $locale->text('Open') if $form->{open};
1174 push @options, $locale->text('Closed') if $form->{closed};
1175 push @options, $locale->text('Delivery Order created') if $form->{delivered};
1176 push @options, $locale->text('Not delivered') if $form->{notdelivered};
1177 push @options, $locale->text('Periodic invoices active') if $form->{periodic_invoices_active};
1178 push @options, $locale->text('Reqdate not set or before current month') if $form->{reqdate_unset_or_old};
1180 if ($form->{business_id}) {
1181 my $vc_type_label = $form->{vc} eq 'customer' ? $locale->text('Customer type') : $locale->text('Vendor type');
1182 push @options, $vc_type_label . " : " . SL::DB::Business->new(id => $form->{business_id})->load->description;
1184 if ($form->{taxzone_id} ne '') { # taxzone_id could be 0
1185 push @options, $locale->text('Steuersatz') . " : " . SL::DB::TaxZone->new(id => $form->{taxzone_id})->load->description;
1188 if ($form->{department_id}) {
1189 push @options, $locale->text('Department') . " : " . SL::DB::Department->new(id => $form->{department_id})->load->description;
1192 if (($form->{order_probability_value} || '') ne '') {
1193 push @options, $::locale->text('Order probability') . ' ' . ($form->{order_probability_op} eq 'le' ? '<=' : '>=') . ' ' . $form->{order_probability_value} . '%';
1196 if ($form->{expected_billing_date_from} or $form->{expected_billing_date_to}) {
1197 push @options, $locale->text('Expected billing date');
1198 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{expected_billing_date_from}, 1) if $form->{expected_billing_date_from};
1199 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{expected_billing_date_to}, 1) if $form->{expected_billing_date_to};
1202 $report->set_options('top_info_text' => join("\n", @options),
1203 'raw_top_info_text' => $form->parse_html_template('oe/orders_top'),
1204 'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom'),
1205 'output_format' => 'HTML',
1206 'title' => $form->{title},
1207 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time),
1209 $report->set_options_from_form();
1210 $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
1212 # add sort and escape callback, this one we use for the add sub
1213 $form->{callback} = $href .= "&sort=$form->{sort}";
1215 # escape callback for href
1216 my $callback = $form->escape($href);
1218 my @subtotal_columns = qw(netamount amount marge_total marge_percent remaining_amount remaining_netamount);
1219 push @subtotal_columns, 'expected_netamount' if $form->{l_order_probability_expected_billing_date};
1221 my %totals = map { $_ => 0 } @subtotal_columns;
1222 my %subtotals = map { $_ => 0 } @subtotal_columns;
1226 my $edit_url = ($::instance_conf->get_feature_experimental)
1227 ? build_std_url('script=controller.pl', 'action=Order/edit', 'type')
1228 : build_std_url('action=edit', 'type', 'vc');
1230 foreach my $oe (@{ $form->{OE} }) {
1231 map { $oe->{$_} *= $oe->{exchangerate} } @subtotal_columns;
1233 $oe->{tax} = $oe->{amount} - $oe->{netamount};
1234 $oe->{open} = $oe->{closed} ? $locale->text('No') : $locale->text('Yes');
1235 $oe->{delivered} = $oe->{delivered} ? $locale->text('Yes') : $locale->text('No');
1236 $oe->{periodic_invoices} = $oe->{periodic_invoices} ? $locale->text('On') : $locale->text('Off');
1238 map { $subtotals{$_} += $oe->{$_};
1239 $totals{$_} += $oe->{$_} } @subtotal_columns;
1241 $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
1242 $totals{marge_percent} = $totals{netamount} ? ($totals{marge_total} * 100 / $totals{netamount} ) : 0;
1244 map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent remaining_amount remaining_netamount expected_netamount);
1246 $oe->{order_probability} = ($oe->{order_probability} || 0) . '%';
1250 foreach my $column (@columns) {
1251 next if ($column eq 'ids');
1253 'data' => $oe->{$column},
1254 'align' => $column_alignment{$column},
1259 'raw_data' => $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $oe->{id})
1260 . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
1261 'valign' => 'center',
1262 'align' => 'center',
1265 $row->{$ordnumber}->{link} = $edit_url . "&id=" . E($oe->{id}) . "&callback=${callback}";
1267 my $row_set = [ $row ];
1269 if (($form->{l_subtotal} eq 'Y')
1270 && (($idx == (scalar @{ $form->{OE} }))
1271 || ($oe->{ $form->{sort} } ne $form->{OE}->[$idx]->{ $form->{sort} }))) {
1272 push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1275 $report->add_data($row_set);
1280 $report->add_separator();
1281 $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1283 setup_oe_orders_action_bar();
1284 $report->generate_with_headers();
1286 $main::lxdebug->leave_sub();
1289 sub check_delivered_flag {
1290 $main::lxdebug->enter_sub();
1292 my $form = $main::form;
1293 my %myconfig = %main::myconfig;
1297 if (($form->{type} ne 'sales_order') && ($form->{type} ne 'purchase_order')) {
1298 return $main::lxdebug->leave_sub();
1301 my $all_delivered = 0;
1303 foreach my $i (1 .. $form->{rowcount}) {
1304 next if (!$form->{"id_$i"});
1306 $form->{"ship_$i"} = 0 if $form->{saveasnew};
1308 if ($form->parse_amount(\%myconfig, $form->{"qty_$i"}) == $form->parse_amount(\%myconfig, $form->{"ship_$i"})) {
1317 $form->{delivered} = 1 if $all_delivered;
1318 $form->{delivered} = 0 if $form->{saveasnew};
1320 $main::lxdebug->leave_sub();
1323 sub save_and_close {
1324 $main::lxdebug->enter_sub();
1326 my $form = $main::form;
1327 my %myconfig = %main::myconfig;
1328 my $locale = $main::locale;
1331 $form->mtime_ischanged('oe');
1333 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1335 if ($form->{type} =~ /_order$/) {
1336 $form->isblank("transdate", $locale->text('Order Date missing!'));
1338 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1341 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1342 $form->{$idx} =~ s/^\s*//g;
1343 $form->{$idx} =~ s/\s*$//g;
1345 my $msg = ucfirst $form->{vc};
1346 $form->isblank($form->{vc} . '_id', $locale->text($msg . " missing!"));
1348 # $locale->text('Customer missing!');
1349 # $locale->text('Vendor missing!');
1351 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1352 if ($form->{currency} ne $form->{defaultcurrency});
1356 my $vc = $form->{vc};
1357 if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
1358 $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
1360 IS->get_customer(\%myconfig, $form) if $vc eq 'customer';
1361 IR->get_vendor(\%myconfig, $form) if $vc eq 'vendor';
1364 $::dispatcher->end_request;
1367 $form->{id} = 0 if $form->{saveasnew};
1369 my ($numberfld, $ordnumber, $err);
1370 # this is for the internal notes section for the [email] Subject
1371 if ($form->{type} =~ /_order$/) {
1372 if ($form->{type} eq 'sales_order') {
1373 $form->{label} = $locale->text('Sales Order');
1375 $numberfld = "sonumber";
1376 $ordnumber = "ordnumber";
1378 $form->{label} = $locale->text('Purchase Order');
1380 $numberfld = "ponumber";
1381 $ordnumber = "ordnumber";
1384 $err = $locale->text('Cannot save order!');
1386 check_delivered_flag();
1389 if ($form->{type} eq 'sales_quotation') {
1390 $form->{label} = $locale->text('Quotation');
1392 $numberfld = "sqnumber";
1393 $ordnumber = "quonumber";
1395 $form->{label} = $locale->text('Request for Quotation');
1397 $numberfld = "rfqnumber";
1398 $ordnumber = "quonumber";
1401 $err = $locale->text('Cannot save quotation!');
1405 # get new number in sequence if saveasnew was requested
1406 delete $form->{$ordnumber} if $form->{saveasnew};
1410 $form->error($err) if (!OE->save(\%myconfig, \%$form));
1412 # saving the history
1413 if(!exists $form->{addition}) {
1414 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1415 $form->{addition} = "SAVED";
1416 $form->save_history;
1418 # /saving the history
1420 $form->redirect($form->{label} . " $form->{$ordnumber} " .
1421 $locale->text('saved!'));
1423 $main::lxdebug->leave_sub();
1427 $main::lxdebug->enter_sub();
1429 my $form = $main::form;
1430 my %myconfig = %main::myconfig;
1431 my $locale = $main::locale;
1435 $form->mtime_ischanged('oe');
1436 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1439 if ($form->{type} =~ /_order$/) {
1440 $form->isblank("transdate", $locale->text('Order Date missing!'));
1442 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1445 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1446 $form->{$idx} =~ s/^\s*//g;
1447 $form->{$idx} =~ s/\s*$//g;
1449 my $msg = ucfirst $form->{vc};
1450 $form->isblank($form->{vc} . '_id', $locale->text($msg . " missing!"));
1452 # $locale->text('Customer missing!');
1453 # $locale->text('Vendor missing!');
1455 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1456 if ($form->{currency} ne $form->{defaultcurrency});
1458 remove_emptied_rows();
1461 my $vc = $form->{vc};
1462 if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
1463 $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
1465 IS->get_customer(\%myconfig, $form) if $vc eq 'customer';
1466 IR->get_vendor(\%myconfig, $form) if $vc eq 'vendor';
1469 $::dispatcher->end_request;
1472 $form->{id} = 0 if $form->{saveasnew};
1474 my ($numberfld, $ordnumber, $err);
1476 # this is for the internal notes section for the [email] Subject
1477 if ($form->{type} =~ /_order$/) {
1478 if ($form->{type} eq 'sales_order') {
1479 $form->{label} = $locale->text('Sales Order');
1481 $numberfld = "sonumber";
1482 $ordnumber = "ordnumber";
1484 $form->{label} = $locale->text('Purchase Order');
1486 $numberfld = "ponumber";
1487 $ordnumber = "ordnumber";
1490 $err = $locale->text('Cannot save order!');
1492 check_delivered_flag();
1495 if ($form->{type} eq 'sales_quotation') {
1496 $form->{label} = $locale->text('Quotation');
1498 $numberfld = "sqnumber";
1499 $ordnumber = "quonumber";
1501 $form->{label} = $locale->text('Request for Quotation');
1503 $numberfld = "rfqnumber";
1504 $ordnumber = "quonumber";
1507 $err = $locale->text('Cannot save quotation!');
1513 OE->save(\%myconfig, \%$form);
1515 # saving the history
1516 if(!exists $form->{addition}) {
1517 if ( $form->{formname} eq 'sales_quotation' or $form->{formname} eq 'request_quotation' ) {
1518 $form->{snumbers} = qq|quonumber_| . $form->{quonumber};
1519 } elsif ( $form->{formname} eq 'sales_order' or $form->{formname} eq 'purchase_order') {
1520 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1522 $form->{what_done} = $form->{formname};
1523 $form->{addition} = "SAVED";
1524 $form->save_history;
1526 # /saving the history
1528 $form->{simple_save} = 1;
1529 if(!$form->{print_and_save}) {
1530 delete @{$form}{ary_diff([keys %{ $form }], [qw(login id script type cursor_fokus)])};
1532 $::dispatcher->end_request;
1534 $main::lxdebug->leave_sub();
1538 $main::lxdebug->enter_sub();
1540 my $form = $main::form;
1541 my %myconfig = %main::myconfig;
1542 my $locale = $main::locale;
1547 if ($form->{type} =~ /_order$/) {
1548 $msg = $locale->text('Order deleted!');
1549 $err = $locale->text('Cannot delete order!');
1551 $msg = $locale->text('Quotation deleted!');
1552 $err = $locale->text('Cannot delete quotation!');
1554 if (OE->delete(\%myconfig, \%$form)){
1555 # saving the history
1556 if(!exists $form->{addition}) {
1557 if ( $form->{formname} eq 'sales_quotation' or $form->{formname} eq 'request_quotation' ) {
1558 $form->{snumbers} = qq|quonumber_| . $form->{quonumber};
1559 } elsif ( $form->{formname} eq 'sales_order' or $form->{formname} eq 'purchase_order') {
1560 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1562 $form->{what_done} = $form->{formname};
1563 $form->{addition} = "DELETED";
1564 $form->save_history;
1566 # /saving the history
1568 $::dispatcher->end_request;
1572 $main::lxdebug->leave_sub();
1576 $main::lxdebug->enter_sub();
1578 my $form = $main::form;
1579 my %myconfig = %main::myconfig;
1580 my $locale = $main::locale;
1583 check_oe_conversion_to_sales_invoice_allowed();
1584 $form->mtime_ischanged('oe');
1586 $main::auth->assert($form->{type} eq 'purchase_order' || $form->{type} eq 'request_quotation' ? 'vendor_invoice_edit' : 'invoice_edit');
1588 $form->{old_salesman_id} = $form->{salesman_id};
1589 $form->get_employee();
1592 if ($form->{type} =~ /_order$/) {
1594 # these checks only apply if the items don't bring their own ordnumbers/transdates.
1595 # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
1596 $form->isblank("ordnumber", $locale->text('Order Number missing!'))
1597 if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
1598 $form->isblank("transdate", $locale->text('Order Date missing!'))
1599 if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
1601 # also copy deliverydate from the order
1602 $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
1603 $form->{orddate} = $form->{transdate};
1605 $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
1606 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1607 $form->{ordnumber} = "";
1608 $form->{quodate} = $form->{transdate};
1611 my $vc = $form->{vc};
1612 if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
1613 $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
1615 IS->get_customer(\%myconfig, $form) if $vc eq 'customer';
1616 IR->get_vendor(\%myconfig, $form) if $vc eq 'vendor';
1619 $::dispatcher->end_request;
1622 _oe_remove_delivered_or_billed_rows(id => $form->{id}, type => 'billed');
1624 $form->{cp_id} *= 1;
1626 for my $i (1 .. $form->{rowcount}) {
1627 for (qw(ship qty sellprice basefactor discount)) {
1628 $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"};
1630 $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"};
1633 my ($buysell, $orddate, $exchangerate);
1634 if ( $form->{type} =~ /_order/
1635 && $form->{currency} ne $form->{defaultcurrency}) {
1637 # check if we need a new exchangerate
1638 $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
1640 $orddate = $form->current_date(\%myconfig);
1641 $exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate, $buysell);
1643 if (!$exchangerate) {
1648 $form->{convert_from_oe_ids} = $form->{id};
1649 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
1650 $form->{duedate} = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1651 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1653 delete @{$form}{qw(id closed)};
1654 $form->{rowcount}--;
1657 if ( $form->{type} eq 'purchase_order'
1658 || $form->{type} eq 'request_quotation') {
1659 $form->{title} = $locale->text('Add Vendor Invoice');
1660 $form->{script} = 'ir.pl';
1665 if ( $form->{type} eq 'sales_order'
1666 || $form->{type} eq 'sales_quotation') {
1667 $form->{title} = $locale->text('Add Sales Invoice');
1668 $form->{script} = 'is.pl';
1673 # bo creates the id, reset it
1674 map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
1675 $form->{ $form->{vc} } =~ s/--.*//g;
1676 $form->{type} = "invoice";
1679 $main::locale = Locale->new("$myconfig{countrycode}", "$script");
1680 $locale = $main::locale;
1682 require "bin/mozilla/$form->{script}";
1684 my $currency = $form->{currency};
1687 $form->{currency} = $currency;
1688 $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, $buysell);
1689 $form->{exchangerate} = $form->{forex} || '';
1691 $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1696 for my $i (1 .. $form->{rowcount}) {
1697 $form->{"discount_$i"} =
1698 $form->format_amount(\%myconfig, $form->{"discount_$i"});
1700 my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
1702 my $decimalplaces = ($dec > 2) ? $dec : 2;
1704 # copy delivery date from reqdate for order -> invoice conversion
1705 $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
1706 unless $form->{"deliverydate_$i"};
1708 $form->{"sellprice_$i"} =
1709 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1712 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
1713 $dec_qty = length $dec_qty;
1715 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1720 $main::lxdebug->leave_sub();
1723 sub save_exchangerate {
1724 $main::lxdebug->enter_sub();
1726 my $form = $main::form;
1727 my %myconfig = %main::myconfig;
1728 my $locale = $main::locale;
1730 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
1731 $form->{exchangerate} =
1732 $form->parse_amount(\%myconfig, $form->{exchangerate});
1733 $form->save_exchangerate(\%myconfig, $form->{currency},
1734 $form->{exchangeratedate},
1735 $form->{exchangerate}, $form->{buysell});
1739 $main::lxdebug->leave_sub();
1743 $main::lxdebug->enter_sub();
1745 my $form = $main::form;
1749 $form->{saveasnew} = 1;
1750 map { delete $form->{$_} } qw(printed emailed queued delivered closed);
1751 $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
1753 # Let kivitendo assign a new order number if the user hasn't changed the
1754 # previous one. If it has been changed manually then use it as-is.
1755 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1756 $form->{$idx} =~ s/^\s*//g;
1757 $form->{$idx} =~ s/\s*$//g;
1758 if ($form->{saved_xyznumber} &&
1759 ($form->{saved_xyznumber} eq $form->{$idx})) {
1760 delete($form->{$idx});
1763 # clear reqdate and transdate unless changed
1764 if ( $form->{reqdate} && $form->{id} ) {
1765 my $saved_order = OE->retrieve_simple(id => $form->{id});
1766 if ( $saved_order && $saved_order->{reqdate} eq $form->{reqdate} && $saved_order->{transdate} eq $form->{transdate} ) {
1767 my $extra_days = $form->{type} eq 'sales_quotation' ? $::instance_conf->get_reqdate_interval : 1;
1768 $form->{reqdate} = DateTime->today_local->next_workday(extra_days => $extra_days)->to_kivitendo;
1769 $form->{transdate} = DateTime->today_local->to_kivitendo;
1774 $form->get_employee();
1778 $main::lxdebug->leave_sub();
1781 sub check_for_direct_delivery_yes {
1782 $main::lxdebug->enter_sub();
1784 my $form = $main::form;
1788 $form->{direct_delivery_checked} = 1;
1789 delete @{$form}{grep /^shipto/, keys %{ $form }};
1790 map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
1791 $form->{CFDD_shipto} = 1;
1793 $main::lxdebug->leave_sub();
1796 sub check_for_direct_delivery_no {
1797 $main::lxdebug->enter_sub();
1799 my $form = $main::form;
1803 $form->{direct_delivery_checked} = 1;
1804 delete @{$form}{grep /^shipto/, keys %{ $form }};
1805 $form->{CFDD_shipto} = 0;
1808 $main::lxdebug->leave_sub();
1811 sub check_for_direct_delivery {
1812 $main::lxdebug->enter_sub();
1814 my $form = $main::form;
1815 my %myconfig = %main::myconfig;
1819 if ($form->{direct_delivery_checked}
1820 || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
1821 $main::lxdebug->leave_sub();
1825 my $cvars = SL::DB::Shipto->new->cvars_by_config;
1827 if ($form->{shipto_id}) {
1828 Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
1831 map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
1834 $_->value($::form->{"CFDD_shiptocvar_" . $_->config->name}) for @{ $cvars };
1836 delete $form->{action};
1837 $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ($_ ne 'login') && ($_ ne 'password') && (ref $_ eq "") } keys %{ $form } ];
1840 print $form->parse_html_template("oe/check_for_direct_delivery", { cvars => $cvars });
1842 $main::lxdebug->leave_sub();
1844 $::dispatcher->end_request;
1847 sub purchase_order {
1848 $main::lxdebug->enter_sub();
1850 my $form = $main::form;
1851 my $locale = $main::locale;
1854 $form->mtime_ischanged('oe');
1856 $main::auth->assert('purchase_order_edit');
1858 $form->{sales_order_to_purchase_order} = 0;
1859 if ($form->{type} eq 'sales_order') {
1860 $form->{sales_order_to_purchase_order} = 1;
1861 check_for_direct_delivery();
1864 if ($form->{type} =~ /^sales_/) {
1865 delete($form->{ordnumber});
1866 delete($form->{payment_id});
1867 delete($form->{delivery_term_id});
1870 $form->{cp_id} *= 1;
1872 my $source_type = $form->{type};
1873 $form->{title} = $locale->text('Add Purchase Order');
1874 $form->{vc} = "vendor";
1875 $form->{type} = "purchase_order";
1877 $form->get_employee();
1879 poso(source_type => $form->{type});
1881 delete $form->{sales_order_to_purchase_order};
1883 $main::lxdebug->leave_sub();
1887 $main::lxdebug->enter_sub();
1889 my $form = $main::form;
1890 my $locale = $main::locale;
1893 $main::auth->assert('sales_order_edit');
1894 $form->mtime_ischanged('oe');
1896 if ($form->{type} eq "purchase_order") {
1897 delete($form->{ordnumber});
1898 $form->{"lastcost_$_"} = $form->{"sellprice_$_"} for (1..$form->{rowcount});
1901 $form->{cp_id} *= 1;
1903 my $source_type = $form->{type};
1904 $form->{title} = $locale->text('Add Sales Order');
1905 $form->{vc} = "customer";
1906 $form->{type} = "sales_order";
1908 $form->get_employee();
1910 poso(source_type => $source_type);
1912 $main::lxdebug->leave_sub();
1916 $main::lxdebug->enter_sub();
1919 my $form = $main::form;
1920 my %myconfig = %main::myconfig;
1923 $main::auth->assert('purchase_order_edit | sales_order_edit');
1925 $form->{transdate} = $form->current_date(\%myconfig);
1926 delete $form->{duedate};
1928 # "reqdate" is the validity date for a quotation and the delivery
1929 # date for an order. Therefore it makes no sense to keep the value
1930 # when converting from one into the other.
1931 delete $form->{reqdate} if ($param{source_type} =~ /_quotation$/) == ($form->{type} =~ /_quotation$/);
1933 $form->{convert_from_oe_ids} = $form->{id};
1934 $form->{closed} = 0;
1936 $form->{old_employee_id} = $form->{employee_id};
1937 $form->{old_salesman_id} = $form->{salesman_id};
1940 map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal delivered ordnumber);
1941 # this converted variable is also used for sales_order to purchase order and vice versa
1942 $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
1944 # if purchase_order was generated from sales_order, use lastcost_$i as sellprice_$i
1945 # also reset discounts
1946 if ( $form->{sales_order_to_purchase_order} ) {
1947 for my $i (1 .. $form->{rowcount}) {
1948 $form->{"sellprice_${i}"} = $form->{"lastcost_${i}"};
1949 $form->{"discount_${i}"} = 0;
1953 for my $i (1 .. $form->{rowcount}) {
1954 map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice basefactor discount lastcost);
1957 my %saved_vars = map { $_ => $form->{$_} } grep { $form->{$_} } qw(currency);
1961 map { $form->{$_} = $saved_vars{$_} } keys %saved_vars;
1963 # prepare_order assumes that the discount is in db-notation (0.05) and not user-notation (5)
1964 # and therefore multiplies the values by 100 in the case of reading from db or making an order
1965 # from several quotation, so we convert this back into percent-notation for the user interface by multiplying with 0.01
1966 # ergänzung 03.10.2010 muss vor prepare_order passieren (s.a. Svens Kommentar zu Bug 1017)
1967 # das parse_amount wird oben schon ausgeführt, deswegen an dieser stelle raus (wichtig: kommawerte bei discount testen)
1968 for my $i (1 .. $form->{rowcount}) {
1969 $form->{"discount_$i"} /=100;
1975 $main::lxdebug->leave_sub();
1978 sub delivery_order {
1979 $main::lxdebug->enter_sub();
1981 my $form = $main::form;
1982 my %myconfig = %main::myconfig;
1984 $form->mtime_ischanged('oe');
1986 if ($form->{type} =~ /^sales/) {
1987 $main::auth->assert('sales_delivery_order_edit');
1989 $form->{vc} = 'customer';
1990 $form->{type} = 'sales_delivery_order';
1993 $main::auth->assert('purchase_delivery_order_edit');
1995 $form->{vc} = 'vendor';
1996 $form->{type} = 'purchase_delivery_order';
1999 $form->get_employee();
2001 require "bin/mozilla/do.pl";
2003 $form->{script} = 'do.pl';
2004 $form->{cp_id} *= 1;
2005 $form->{convert_from_oe_ids} = $form->{id};
2006 $form->{transdate} = $form->current_date(\%myconfig);
2007 delete $form->{duedate};
2009 $form->{old_employee_id} = $form->{employee_id};
2010 $form->{old_salesman_id} = $form->{salesman_id};
2012 _oe_remove_delivered_or_billed_rows(id => $form->{id}, type => 'delivered');
2015 delete @{$form}{qw(id subject message cc bcc printed emailed queued creditlimit creditremaining discount tradediscount oldinvtotal closed delivered)};
2017 for my $i (1 .. $form->{rowcount}) {
2018 map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice lastcost basefactor discount);
2019 $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"};
2022 my %old_values = map { $_ => $form->{$_} } qw(customer_id oldcustomer customer vendor_id oldvendor vendor shipto_id);
2028 map { $form->{$_} = $old_values{$_} if ($old_values{$_}) } keys %old_values;
2030 for my $i (1 .. $form->{rowcount}) {
2031 (my $dummy, $form->{"pricegroup_id_$i"}) = split /--/, $form->{"sellprice_pg_$i"};
2035 $main::lxdebug->leave_sub();
2038 sub oe_delivery_order_from_order {
2040 return if !$::form->{id};
2042 my $order = SL::DB::Order->new(id => $::form->{id})->load;
2043 $order->flatten_to_form($::form, format_amounts => 1);
2045 # hack: add partsgroup for first row if it does not exists,
2046 # because _remove_billed_or_delivered_rows and _remove_full_delivered_rows
2047 # determine fields to handled by existing fields for the first row. If partsgroup
2048 # is missing there, for deleted rows the partsgroup_field is not emptied and in
2049 # update_delivery_order it will not considered an empty row ...
2050 $::form->{partsgroup_1} = '' if !exists $::form->{partsgroup_1};
2052 # fake last empty row
2053 $::form->{rowcount}++;
2059 sub oe_invoice_from_order {
2061 return if !$::form->{id};
2063 my $order = SL::DB::Order->new(id => $::form->{id})->load;
2064 $order->flatten_to_form($::form, format_amounts => 1);
2066 # hack: add partsgroup for first row if it does not exists,
2067 # because _remove_billed_or_delivered_rows and _remove_full_delivered_rows
2068 # determine fields to handled by existing fields for the first row. If partsgroup
2069 # is missing there, for deleted rows the partsgroup_field is not emptied and in
2070 # update_delivery_order it will not considered an empty row ...
2071 $::form->{partsgroup_1} = '' if !exists $::form->{partsgroup_1};
2073 # fake last empty row
2074 $::form->{rowcount}++;
2081 call_sub($main::form->{yes_nextsub});
2085 call_sub($main::form->{no_nextsub});
2088 ######################################################################################################
2090 # ###############################################################################################
2092 $main::lxdebug->enter_sub();
2094 my $form = $main::form;
2095 my %myconfig = %main::myconfig;
2099 retrieve_partunits() if ($form->{type} =~ /_delivery_order$/);
2101 $form->{"taxaccounts"} =~ s/\s*$//;
2102 $form->{"taxaccounts"} =~ s/^\s*//;
2103 foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
2104 map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
2106 $form->{"taxaccounts"} = "";
2108 IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
2110 $form->{rowcount}++;
2111 $form->{"project_id_$form->{rowcount}"} = $form->{globalproject_id};
2113 $form->language_payment(\%myconfig);
2115 Common::webdav_folder($form);
2120 display_row($form->{rowcount}) if $form->{rowcount};
2124 $main::lxdebug->leave_sub();
2127 sub report_for_todo_list {
2128 $main::lxdebug->enter_sub();
2130 my $form = $main::form;
2132 my $quotations = OE->transactions_for_todo_list();
2135 if (@{ $quotations }) {
2136 my $edit_url = ($::instance_conf->get_feature_experimental)
2137 ? build_std_url('script=controller.pl', 'action=Order/edit')
2138 : build_std_url('script=oe.pl', 'action=edit');
2140 $content = $form->parse_html_template('oe/report_for_todo_list', { 'QUOTATIONS' => $quotations,
2141 'edit_url' => $edit_url });
2144 $main::lxdebug->leave_sub();
2149 sub edit_periodic_invoices_config {
2150 $::lxdebug->enter_sub();
2152 $::form->{type} = 'sales_order';
2157 $config = YAML::Load($::form->{periodic_invoices_config}) if $::form->{periodic_invoices_config};
2159 if ('HASH' ne ref $config) {
2160 my $lang_id = $::form->{language_id};
2161 $config = { periodicity => 'm',
2162 order_value_periodicity => 'p', # = same as periodicity
2163 start_date_as_date => $::form->{transdate} || $::form->current_date,
2164 extend_automatically_by => 12,
2166 email_subject => GenericTranslations->get(language_id => $lang_id,
2167 translation_type =>"preset_text_periodic_invoices_email_subject"),
2168 email_body => GenericTranslations->get(language_id => $lang_id,
2169 translation_type =>"preset_text_periodic_invoices_email_body"),
2173 $config->{periodicity} = 'm' if none { $_ eq $config->{periodicity} } @SL::DB::PeriodicInvoicesConfig::PERIODICITIES;
2174 $config->{order_value_periodicity} = 'p' if none { $_ eq $config->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES);
2176 $::form->get_lists(printers => "ALL_PRINTERS",
2177 charts => { key => 'ALL_CHARTS',
2178 transdate => 'current_date' });
2180 $::form->{AR} = [ grep { $_->{link} =~ m/(?:^|:)AR(?::|$)/ } @{ $::form->{ALL_CHARTS} } ];
2181 $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
2183 if ($::form->{customer_id}) {
2184 $::form->{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all_sorted(where => [ cp_cv_id => $::form->{customer_id} ]);
2187 $::form->header(no_layout => 1);
2188 print $::form->parse_html_template('oe/edit_periodic_invoices_config', {config => $config});
2190 $::lxdebug->leave_sub();
2193 sub save_periodic_invoices_config {
2194 $::lxdebug->enter_sub();
2196 $::form->{type} = 'sales_order';
2200 $::form->isblank('start_date_as_date', $::locale->text('The start date is missing.'));
2202 my $config = { active => $::form->{active} ? 1 : 0,
2203 terminated => $::form->{terminated} ? 1 : 0,
2204 direct_debit => $::form->{direct_debit} ? 1 : 0,
2205 periodicity => (any { $_ eq $::form->{periodicity} } @SL::DB::PeriodicInvoicesConfig::PERIODICITIES) ? $::form->{periodicity} : 'm',
2206 order_value_periodicity => (any { $_ eq $::form->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES)) ? $::form->{order_value_periodicity} : 'p',
2207 start_date_as_date => $::form->{start_date_as_date},
2208 end_date_as_date => $::form->{end_date_as_date},
2209 first_billing_date_as_date => $::form->{first_billing_date_as_date},
2210 print => $::form->{print} ? 1 : 0,
2211 printer_id => $::form->{print} ? $::form->{printer_id} * 1 : undef,
2212 copies => $::form->{copies} * 1 ? $::form->{copies} : 1,
2213 extend_automatically_by => $::form->{extend_automatically_by} * 1 || undef,
2214 ar_chart_id => $::form->{ar_chart_id} * 1,
2215 send_email => $::form->{send_email} ? 1 : 0,
2216 email_recipient_contact_id => $::form->{email_recipient_contact_id} * 1 || undef,
2217 email_recipient_address => $::form->{email_recipient_address},
2218 email_sender => $::form->{email_sender},
2219 email_subject => $::form->{email_subject},
2220 email_body => $::form->{email_body},
2223 $::form->{periodic_invoices_config} = YAML::Dump($config);
2225 $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
2227 print $::form->parse_html_template('oe/save_periodic_invoices_config', $config);
2229 $::lxdebug->leave_sub();
2232 sub _remove_full_delivered_rows {
2234 my @fields = map { s/_1$//; $_ } grep { m/_1$/ } keys %{ $::form };
2237 my $removed_rows = 0;
2239 while ($row < $::form->{rowcount}) {
2241 next unless $::form->{"id_$row"};
2242 my $base_factor = SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor;
2243 my $base_qty = $::form->parse_amount(\%::myconfig, $::form->{"qty_$row"}) * $base_factor;
2244 my $ship_qty = $::form->parse_amount(\%::myconfig, $::form->{"ship_$row"}) * $base_factor;
2245 #$main::lxdebug->message(LXDebug->DEBUG2(),"shipto=".$ship_qty." qty=".$base_qty);
2247 if (!$ship_qty || ($ship_qty < $base_qty)) {
2248 $::form->{"qty_$row"} = $::form->format_amount(\%::myconfig, ($base_qty - $ship_qty) / $base_factor );
2249 $::form->{"ship_$row"} = 0;
2250 push @new_rows, { map { $_ => $::form->{"${_}_${row}"} } @fields };
2256 $::form->redo_rows(\@fields, \@new_rows, scalar(@new_rows), $::form->{rowcount});
2257 $::form->{rowcount} -= $removed_rows;
2260 sub _oe_remove_delivered_or_billed_rows {
2263 return if !$params{id} || !$params{type};
2265 my $ord_quot = SL::DB::Order->new(id => $params{id})->load;
2266 return if !$ord_quot;
2268 # Prüfung ob itemlinks existieren, falls ja dann neue Implementierung
2270 if ( $params{type} eq 'delivered' ) {
2271 my $orderitem = SL::DB::Manager::OrderItem->get_first( where => [trans_id => $ord_quot->id]);
2273 my @links = $orderitem->linked_records(to => 'SL::DB::DeliveryOrderItem');
2274 if ( scalar(@links ) > 0 ) {
2275 #$main::lxdebug->message(LXDebug->DEBUG2(),"item recordlinks vorhanden");
2276 return _remove_full_delivered_rows();
2282 to => $params{type} eq 'delivered' ? 'DeliveryOrder' : 'Invoice',
2283 via => [ $params{type} eq 'delivered' ? qw(Order) : qw(Order DeliveryOrder) ],
2286 my %handled_base_qtys;
2287 foreach my $record (@{ $ord_quot->linked_records(%args) }) {
2288 next if $ord_quot->is_sales != $record->is_sales;
2289 next if $record->type eq 'invoice' && $record->storno;
2291 foreach my $item (@{ $record->items }) {
2292 my $key = $item->parts_id;
2293 $key .= ':' . $item->serialnumber if $item->serialnumber;
2294 $handled_base_qtys{$key} += $item->qty * $item->unit_obj->base_factor;
2298 _remove_billed_or_delivered_rows(quantities => \%handled_base_qtys);
2302 foreach my $action (qw(delete delivery_order invoice print purchase_order quotation
2303 request_for_quotation sales_order save save_and_close save_as_new ship_to update)) {
2304 if ($::form->{"action_${action}"}) {
2310 $::form->error($::locale->text('No action defined.'));