X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Foe.pl;h=f19a2876c1d1254b9cb05249f0e148d7ddc75915;hb=2dfa3a4c75b6f68ab75df739a3e82ceb1b61dcff;hp=5c1a1fda21f84238e2f79bcd03c69435a9e05fe5;hpb=075607c6877a1c42413803d3d8c3e07881523ad0;p=kivitendo-erp.git diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index 5c1a1fda2..f19a2876c 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -51,6 +51,7 @@ use Data::Dumper; use SL::DB::Customer; use SL::DB::TaxZone; use SL::DB::PaymentTerm; +use SL::DB::Vendor; require "bin/mozilla/common.pl"; require "bin/mozilla/io.pl"; @@ -293,6 +294,174 @@ sub prepare_order { $main::lxdebug->leave_sub(); } +sub setup_oe_action_bar { + my %params = @_; + my $form = $::form; + + my $has_active_periodic_invoice; + if ($params{obj}) { + $has_active_periodic_invoice = + $params{obj}->is_type('sales_order') + && $params{obj}->periodic_invoices_config + && $params{obj}->periodic_invoices_config->active + && ( !$params{obj}->periodic_invoices_config->end_date + || ($params{obj}->periodic_invoices_config->end_date > DateTime->today_local)) + && $params{obj}->periodic_invoices_config->get_previous_billed_period_start_date; + } + + my $allow_invoice = $params{is_req_quo} + || $params{is_pur_ord} + || ($params{is_sales_quo} && $::instance_conf->get_allow_sales_invoice_from_sales_quotation) + || ($params{is_sales_ord} && $::instance_conf->get_allow_sales_invoice_from_sales_order); + my @req_trans_desc = qw(kivi.SalesPurchase.check_transaction_description) x!!$::instance_conf->get_require_transaction_description_ps; + my @req_trans_cost_art = qw(kivi.SalesPurchase.check_transport_cost_article_presence) x!!$::instance_conf->get_transport_cost_reminder_article_number_id; + my @warn_p_invoice = qw(kivi.SalesPurchase.oe_warn_save_active_periodic_invoice) x!!$has_active_periodic_invoice; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Update'), + submit => [ '#form', { action => "update" } ], + id => 'update_button', + accesskey => 'enter', + ], + + combobox => [ + action => [ + t8('Save'), + submit => [ '#form', { action => "save" } ], + checks => [ @req_trans_desc, @req_trans_cost_art, @warn_p_invoice ], + ], + action => [ + t8('Save as new'), + submit => [ '#form', { action => "save_as_new" } ], + checks => [ @req_trans_desc, @req_trans_cost_art ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + ], + action => [ + t8('Save and Close'), + submit => [ '#form', { action => "save_and_close" } ], + checks => [ @req_trans_desc, @req_trans_cost_art, @warn_p_invoice ], + ], + action => [ + t8('Delete'), + submit => [ '#form', { action => "delete" } ], + confirm => t8('Do you really want to delete this object?'), + disabled => !$form->{id} ? t8('This record has not been saved yet.') + : ( ($params{is_sales_ord} && !$::instance_conf->get_sales_order_show_delete) + || ($params{is_pur_ord} && !$::instance_conf->get_purchase_order_show_delete)) ? t8('Deleting this type of record has been disabled in the configuration.') + : undef, + ], + ], # end of combobox "Save" + + 'separator', + + combobox => [ + action => [ t8('Workflow') ], + action => [ + t8('Sales Order'), + submit => [ '#form', { action => "sales_order" } ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + only_if => $params{is_sales_quo}, + ], + action => [ + t8('Purchase Order'), + submit => [ '#form', { action => "sales_order" } ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + only_if => $params{is_req_quo}, + ], + action => [ + t8('Delivery Order'), + submit => [ '#form', { action => "delivery_order" } ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + only_if => $params{is_sales_ord} || $params{is_pur_ord}, + ], + action => [ + t8('Invoice'), + submit => [ '#form', { action => "invoice" } ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + only_if => $allow_invoice, + ], + action => [ + t8('Quotation'), + submit => [ '#form', { action => "quotation" } ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + ], + action => [ + t8('Request for Quotation'), + submit => [ '#form', { action => "reqest_for_quotation" } ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + ], + ], # end of combobox "Workflow" + + combobox => [ + action => [ t8('Export') ], + action => [ + t8('Print'), + call => [ 'kivi.SalesPurchase.show_print_dialog' ], + checks => [ @req_trans_desc ], + ], + action => [ + t8('E Mail'), + call => [ 'kivi.SalesPurchase.show_email_dialog' ], + checks => [ @req_trans_desc ], + ], + action => [ + t8('Download attachments of all parts'), + call => [ 'kivi.File.downloadOrderitemsFiles', $::form->{type}, $::form->{id} ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + only_if => $::instance_conf->get_doc_storage, + ], + ], #end of combobox "Export" + + combobox => [ + action => [ t8('more') ], + action => [ + t8('History'), + call => [ 'set_history_window', $form->{id} * 1, 'id' ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + ], + action => [ + t8('Follow-Up'), + call => [ 'follow_up_window' ], + disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, + ], + ], # end of combobox "more" + ); + } +} + +sub setup_oe_search_action_bar { + my %params = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Search'), + submit => [ '#form' ], + accesskey => 'enter', + ], + ); + } +} + +sub setup_oe_orders_action_bar { + my %params = @_; + + return unless $::form->{type} eq 'sales_order'; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('New sales order'), + submit => [ '#form', { action => 'edit' } ], + checks => [ [ 'kivi.check_if_entries_selected', '[name^=multi_id_]' ] ], + accesskey => 'enter', + ], + ); + } +} + sub form_header { $main::lxdebug->enter_sub(); my @custom_hiddens; @@ -308,18 +477,10 @@ sub form_header { # visible in form_footer too, so package local level and not my here. %TMPL_VAR = (); if ($form->{id}) { - my $obj = SL::DB::Order->new(id => $form->{id})->load; - $TMPL_VAR{warn_save_active_periodic_invoice} = - $obj->is_type('sales_order') - && $obj->periodic_invoices_config - && $obj->periodic_invoices_config->active - && ( !$obj->periodic_invoices_config->end_date - || ($obj->periodic_invoices_config->end_date > DateTime->today_local)) - && $obj->periodic_invoices_config->get_previous_billed_period_start_date; - - $TMPL_VAR{oe_obj} = $obj; + $TMPL_VAR{oe_obj} = SL::DB::Order->new(id => $form->{id})->load; } - my $warn_save_active_periodic_invoice = $TMPL_VAR{warn_save_active_periodic_invoice}; + $TMPL_VAR{vc_obj} = SL::DB::Customer->new(id => $form->{customer_id})->load if $form->{customer_id}; + $TMPL_VAR{vc_obj} = SL::DB::Vendor->new(id => $form->{vendor_id})->load if $form->{vendor_id}; $form->{defaultcurrency} = $form->get_default_currency(\%myconfig); @@ -440,98 +601,16 @@ sub form_header { # original snippets: - my $is_sales = scalar ($form->{type} =~ /^sales_/); # these vars are exported, so that the template - my $is_order = scalar ($form->{type} =~ /_order$/); # may determine what to show - my $is_sales_quo = scalar ($form->{type} =~ /sales_quotation$/); - my $is_req_quo = scalar ($form->{type} =~ /request_quotation$/); - my $is_sales_ord = scalar ($form->{type} =~ /sales_order$/); - my $is_pur_ord = scalar ($form->{type} =~ /purchase_order$/); - my $allow_invoice = $is_req_quo || $is_pur_ord || ($is_sales_quo && $::instance_conf->get_allow_sales_invoice_from_sales_quotation) || ($is_sales_ord && $::instance_conf->get_allow_sales_invoice_from_sales_order); - my @req_trans_desc = qw(kivi.SalesPurchase.check_transaction_description) x!!$::instance_conf->get_require_transaction_description_ps; - my @warn_p_invoice = qw(kivi.SalesPurchase.oe_warn_save_active_periodic_invoice) x!!$warn_save_active_periodic_invoice; - - my $tpca_remainder = 0; + my %type_check_vars = ( + is_sales => scalar($form->{type} =~ /^sales_/), + is_order => scalar($form->{type} =~ /_order$/), + is_sales_quo => scalar($form->{type} =~ /sales_quotation$/), + is_req_quo => scalar($form->{type} =~ /request_quotation$/), + is_sales_ord => scalar($form->{type} =~ /sales_order$/), + is_pur_ord => scalar($form->{type} =~ /purchase_order$/), + ); - for my $bar ($::request->layout->get('actionbar')) { - $bar->add_actions([ t8('Update'), - submit => [ '#form', { action_update => 1 } ], - ]); - $bar->add_actions("combobox"); - $bar->actions->[-1]->add_actions([ t8('Save'), - submit => [ '#form', { action_save => 1 } ], - checks => [ @req_trans_desc, @warn_p_invoice ], - confirm => t8('Missing transport cost: #1 Are you sure?', $tpca_remainder), - ]); - $bar->actions->[-1]->add_actions([ t8('Save as new'), - submit => [ '#form', { action_save_as_new => 1 } ], - checks => [ @req_trans_desc ], - disabled => !$::form->{id}, - ]); - $bar->actions->[-1]->add_actions([ t8('Save and Close'), - submit => [ '#form', { action_save_and_close => 1 } ], - checks => [ @req_trans_desc, @warn_p_invoice ], - confirm => t8('Missing transport cost: #1 Are you sure?', $tpca_remainder), - ]); - $bar->add_actions([ t8('Delete'), - submit => [ '#form', { action_delete => 1 } ], - disabled => !$::form->{id} - || ($is_sales_ord && !$::instance_conf->get_sales_order_show_delete) - || ($is_pur_ord && !$::instance_conf->get_purchase_order_show_delete), - ]); - $bar->add_actions('separator'); - $bar->add_actions('combobox'); - $bar->actions->[-1]->add_actions([ t8('Workflow'), - disabled => 1, - ]); - $bar->actions->[-1]->add_actions([ t8('Sales Order'), - submit => [ '#form', { action_sales_order => 1 } ], - disabled => !$::form->{id}, - ]) if $is_sales_quo; - $bar->actions->[-1]->add_actions([ t8('Purchase Order'), - submit => [ '#form', { action_sales_order => 1 } ], - disabled => !$::form->{id}, - ]) if $is_req_quo; - $bar->actions->[-1]->add_actions([ t8('Delivery Order'), - submit => [ '#form', { action_delivery_order => 1 } ], - disabled => !$::form->{id}, - ]) if $is_sales_ord || $is_pur_ord; - $bar->actions->[-1]->add_actions([ t8('Invoice'), - submit => [ '#form', { action_invoice => 1 } ], - disabled => !$::form->{id}, - ]) if $allow_invoice; - $bar->actions->[-1]->add_actions([ t8('Quotation'), - submit => [ '#form', { action_quotation => 1 } ], - disabled => !$::form->{id}, - ]); - $bar->actions->[-1]->add_actions([ t8('Request for Quotation'), - submit => [ '#form', { action_reqest_for_quotation => 1 } ], - disabled => !$::form->{id} - ]); - $bar->add_actions('combobox'); - $bar->actions->[-1]->add_actions([ t8('Export'), - disabled => 1, - ]); - $bar->actions->[-1]->add_actions([ t8('Print'), - submit => [ '#form', { action_print => 1 } ], - checks => [ @req_trans_desc ], - ]); - $bar->actions->[-1]->add_actions([ t8('E Mail'), - submit => [ '#form', { action_print => 1 } ], - checks => [ @req_trans_desc ], - ]); - $bar->add_actions('combobox'); - $bar->actions->[-1]->add_actions([ t8('more'), - disabled => 1, - ]); - $bar->actions->[-1]->add_actions([ t8('History'), - call => [ 'set_history_window', $::form->{id} * 1, 'id' ], - disabled => !$::form->{id}, - ]); - $bar->actions->[-1]->add_actions([ t8('Follow-Up'), - call => [ 'follow_up_window' ], - disabled => !$::form->{id}, - ]); - } + setup_oe_action_bar(%type_check_vars); $form->header; if ($form->{CFDD_shipto} && $form->{CFDD_shipto_id} ) { @@ -541,28 +620,26 @@ sub form_header { push @custom_hiddens, map { "shiptocvar_" . $_->name } @{ SL::DB::Manager::CustomVariableConfig->get_all(where => [ module => 'ShipTo' ]) }; $TMPL_VAR{HIDDENS} = [ map { name => $_, value => $form->{$_} }, - qw(id action type vc formname media format proforma queued printed emailed + qw(id type vc proforma queued printed emailed title creditlimit creditremaining tradediscount business - max_dunning_level dunning_amount shiptoname shiptostreet shiptozipcode - CFDD_shipto CFDD_shipto_id shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax - shiptodepartment_1 shiptodepartment_2 shiptoemail shiptocp_gender - message email subject cc bcc taxpart taxservice taxaccounts cursor_fokus + max_dunning_level dunning_amount + CFDD_shipto CFDD_shipto_id + taxpart taxservice taxaccounts cursor_fokus show_details useasnew), @custom_hiddens, map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts} ]; # deleted: discount %TMPL_VAR = ( %TMPL_VAR, - is_sales => $is_sales, - is_order => $is_order, - is_sales_quo => $is_sales_quo, - is_req_quo => $is_req_quo, - is_sales_ord => $is_sales_ord, - is_pur_ord => $is_pur_ord, + %type_check_vars, ); $TMPL_VAR{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ]; + if ($type_check_vars{is_sales} && $::instance_conf->get_transport_cost_reminder_article_number_id) { + $TMPL_VAR{transport_cost_reminder_article} = SL::DB::Part->new(id => $::instance_conf->get_transport_cost_reminder_article_number_id)->load; + } + print $form->parse_html_template("oe/form_header", { %TMPL_VAR }); $main::lxdebug->leave_sub(); @@ -634,12 +711,11 @@ sub form_footer { $TMPL_VAR{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted(); - my $tpca_reminder; - $tpca_reminder = check_transport_cost_reminder_article_number() if $::instance_conf->get_transport_cost_reminder_article_number_id; + my $print_options_html = setup_sales_purchase_print_options(); + print $form->parse_html_template("oe/form_footer", { %TMPL_VAR, - tpca_reminder => $tpca_reminder, - print_options => print_options(inline => 1), + print_options => $print_options_html, is_sales => scalar ($form->{type} =~ /^sales_/), # these vars are exported, so that the template is_order => scalar ($form->{type} =~ /_order$/), # may determine what to show is_sales_quo => scalar ($form->{type} =~ /sales_quotation$/), @@ -860,6 +936,8 @@ sub search { $::request->{layout}->use_javascript(map { "${_}.js" } qw(autocomplete_project)); + setup_oe_search_action_bar(); + $form->header(); print $form->parse_html_template('oe/search', { @@ -1107,7 +1185,7 @@ sub orders { $report->set_options('top_info_text' => join("\n", @options), 'raw_top_info_text' => $form->parse_html_template('oe/orders_top'), - 'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom', { 'SHOW_CONTINUE_BUTTON' => $allow_multiple_orders }), + 'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom'), 'output_format' => 'HTML', 'title' => $form->{title}, 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time), @@ -1188,6 +1266,7 @@ sub orders { $report->add_separator(); $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal')); + setup_oe_orders_action_bar(); $report->generate_with_headers(); $main::lxdebug->leave_sub(); @@ -1952,27 +2031,6 @@ sub oe_delivery_order_from_order { delivery_order(); } -sub e_mail { - $main::lxdebug->enter_sub(); - - my $form = $main::form; - - check_oe_access(); - - $form->mtime_ischanged('oe','mail'); - $form->{print_and_save} = 1; - - my $saved_form = save_form(); - - save(); - - restore_form($saved_form, 0, qw(id ordnumber quonumber)); - - edit_e_mail(); - - $main::lxdebug->leave_sub(); -} - sub yes { call_sub($main::form->{yes_nextsub}); } @@ -2187,26 +2245,8 @@ sub _oe_remove_delivered_or_billed_rows { _remove_billed_or_delivered_rows(quantities => \%handled_base_qtys); } -# iterate all positions and match articlenumber -sub check_transport_cost_reminder_article_number { - $main::lxdebug->enter_sub(); - - my $form = $main::form; - - check_oe_access(); - - my $transport_article_id = $::instance_conf->get_transport_cost_reminder_article_number_id; - for my $i (1 .. $form->{rowcount}) { - return if $form->{"id_${i}"} eq $transport_article_id; - } - - # simply return the name of the part - return SL::DB::Part->new(id => $transport_article_id)->load()->partnumber; - - $main::lxdebug->leave_sub(); -} sub dispatcher { - foreach my $action (qw(delete delivery_order e_mail invoice print purchase_order quotation + foreach my $action (qw(delete delivery_order invoice print purchase_order quotation request_for_quotation sales_order save save_and_close save_as_new ship_to update)) { if ($::form->{"action_${action}"}) { call_sub($action);