X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fprojects.pl;h=bda1c6d962adc25be72181638677109026362ea7;hb=978c6f75abc1bbfded560f856b000e87cbe106bd;hp=16d5e45f752aa1aad71830c4befedc4ce806222a;hpb=3a94f4d2dd9a835d4a7007e1b999ea00b3c4e1cd;p=kivitendo-erp.git diff --git a/bin/mozilla/projects.pl b/bin/mozilla/projects.pl index 16d5e45f7..bda1c6d96 100644 --- a/bin/mozilla/projects.pl +++ b/bin/mozilla/projects.pl @@ -92,7 +92,7 @@ sub search { $form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables' => $form->{CUSTOM_VARIABLES}, 'include_prefix' => 'l_', 'include_value' => 'Y'); - $form->{fokus} = 'getElementById("projectnumber")'; + $::request->{layout}->focus('#projectnumber'); $form->header(); print $form->parse_html_template('projects/search'); @@ -119,10 +119,9 @@ sub project_report { my $report = SL::ReportGenerator->new(\%myconfig, $form); my @columns = qw(projectnumber description active); - my @hidden_vars = ('filter'); - my $href = build_std_url('action=project_report', @hidden_vars); my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; + my @searchable_custom_variables = grep { $_->{searchable} } @{ $cvar_configs }; my %column_defs_cvars = (); foreach (@includeable_custom_variables) { $column_defs_cvars{"cvar_$_->{name}"} = { @@ -133,6 +132,15 @@ sub project_report { push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables; + + my @hidden_vars = ( + 'filter', + map({ ('cvar_'. $_->{name} , 'l_cvar_'. $_->{name}) } @includeable_custom_variables), + map({'cvar_'. $_->{name} .'_qtyop'} grep({$_->{type} eq 'number'} @searchable_custom_variables)), + ); + my $href = build_std_url('action=project_report', @hidden_vars); + + my %column_defs = ( 'projectnumber' => { 'text' => $locale->text('Number'), }, 'description' => { 'text' => $locale->text('Description'), }, @@ -150,6 +158,13 @@ sub project_report { $report->set_export_options('project_report', @hidden_vars, 'sort'); + CVar->add_custom_variables_to_report('module' => 'Project', + 'trans_id_field' => 'id', + 'configs' => $cvar_configs, + 'column_defs' => \%column_defs, + 'data' => $form->{project_list}, + ); + $report->set_sort_indicator($form->{sort}, 1); my @options;