X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=a81f451a68bad2a4172dd007c65e0e22f3208499;hb=5d0aec66f1d31f99c14944f6405c7fb712f99756;hp=01bf4fe859f1b2c3ce629f9a3bdb164794a8807a;hpb=cc78d935992bbc0ec17fe2e0452dea36248d8ba8;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index 01bf4fe85..a81f451a6 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -103,7 +103,7 @@ sub search { $form->{jsscript} = 1; $form->{title} = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors'); - $form->{fokus} = 'Form.name'; + $::request->{layout}->focus('#name'); $form->header(); print $form->parse_html_template('ct/search'); @@ -115,7 +115,6 @@ sub search_contact { $::lxdebug->enter_sub; $::auth->assert('customer_vendor_edit'); - $::form->{CUSTOM_VARIABLES} = CVar->get_configs('module' => 'Contacts'); ($::form->{CUSTOM_VARIABLES_FILTER_CODE}, $::form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables' => $::form->{CUSTOM_VARIABLES}, @@ -123,6 +122,7 @@ sub search_contact { 'filter_prefix' => 'filter.', 'include_value' => 'Y'); + $::form->{title} = $::locale->text('Search contacts'); $::form->header; print $::form->parse_html_template('ct/search_contact'); @@ -301,7 +301,7 @@ sub list_contacts { my $cvar_configs = CVar->get_configs('module' => 'Contacts'); my @columns = qw( - cp_id vcname vcnumber cp_name cp_givenname cp_street cp_phone1 cp_phone2 + cp_id vcname vcnumber cp_name cp_givenname cp_street cp_zipcode cp_city cp_phone1 cp_phone2 cp_mobile1 cp_mobile2 cp_email cp_abteilung cp_birthday cp_gender ); @@ -327,10 +327,12 @@ sub list_contacts { 'cp_name' => { 'text' => $::locale->text('Name'), }, 'cp_givenname' => { 'text' => $::locale->text('Given Name'), }, 'cp_street' => { 'text' => $::locale->text('Street'), }, + 'cp_zipcode' => { 'text' => $::locale->text('Zipcode'), }, + 'cp_city' => { 'text' => $::locale->text('City'), }, 'cp_phone1' => { 'text' => $::locale->text('Phone1'), }, 'cp_phone2' => { 'text' => $::locale->text('Phone2'), }, - 'cp_mobile1' => { 'text' => $::locale->text('Mobile 1'), }, - 'cp_mobile2' => { 'text' => $::locale->text('Mobile 2'), }, + 'cp_mobile1' => { 'text' => $::locale->text('Mobile1'), }, + 'cp_mobile2' => { 'text' => $::locale->text('Mobile2'), }, 'cp_email' => { 'text' => $::locale->text('E-mail'), }, 'cp_abteilung' => { 'text' => $::locale->text('Department'), }, 'cp_birthday' => { 'text' => $::locale->text('Birthday'), }, @@ -463,8 +465,8 @@ sub form_header { $form->{contacts_label} = \&_contacts_label; $form->{taxzone_id} = 0 if !$form->{id}; $form->{jsscript} = 1; - $form->{fokus} = "ct.greeting"; $form->{SHIPTO_ALL} = [ +{ shipto_id => '0', shiptoname => $::locale->text('All') }, @{ $form->{SHIPTO} } ]; + $::request->{layout}->focus("#greeting"); $form->{title} = $form->{title_save} || $locale->text("$form->{title} " . ucfirst $form->{db}) . ($form->{title} eq "Edit" ? " $form->{name}" : ''); @@ -519,9 +521,7 @@ sub form_footer { } sub _do_save { - $main::auth->assert('customer_vendor_edit & ' . - '(general_ledger | invoice_edit | vendor_invoice_edit | ' . - ' request_quotation_edit | sales_quotation_edit | sales_order_edit | purchase_order_edit)'); + $main::auth->assert('customer_vendor_edit'); $::form->isblank("name", $::locale->text("Name missing!"));