X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=ba2a86affddf3348ce7ceada250fc832ffb56a81;hb=a9866c42a27df61e776ea65322bfb095e5f6fa1b;hp=a4243757b4d77f15920504b1e35f478f1ed71bc1;hpb=f7b15d4334848fad1bcd0b569eff5139f9a6ba4d;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index a4243757b..ba2a86aff 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -56,6 +56,7 @@ use SL::DB::Business; use SL::DB::Default; use SL::DB::DeliveryTerm; use SL::ReportGenerator; +use SL::Locale::String qw(t8); use SL::MoreCommon qw(uri_encode); require "bin/mozilla/common.pl"; @@ -88,6 +89,8 @@ sub search { $form->{title} = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors'); + setup_ct_search_action_bar(); + $form->header(); print $form->parse_html_template('ct/search'); @@ -106,6 +109,8 @@ sub search_contact { 'include_value' => 'Y'); $::form->{title} = $::locale->text('Search contacts'); + + setup_ct_search_contact_action_bar(); $::form->header; print $::form->parse_html_template('ct/search_contact'); @@ -295,6 +300,7 @@ sub list_names { $report->add_data($row); } + setup_ct_list_names_action_bar(); $report->generate_with_headers(); $main::lxdebug->leave_sub(); @@ -426,9 +432,51 @@ sub list_contacts { $report->add_data($row); } - $report->generate_with_headers; + $report->generate_with_headers(); $::lxdebug->leave_sub; } +sub setup_ct_search_action_bar { + my %params = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Search'), + submit => [ '#form', { action => 'list_names' } ], + accesskey => 'enter', + ], + ); + } +} + +sub setup_ct_list_names_action_bar { + my %params = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Add'), + submit => [ '#new_form', { action => 'CustomerVendor/add' } ], + accesskey => 'enter', + ], + ); + } +} + +sub setup_ct_search_contact_action_bar { + my %params = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Search'), + submit => [ '#form', { action => 'list_contacts' } ], + accesskey => 'enter', + ], + ); + } +} + sub continue { call_sub($main::form->{nextsub}); }