use SL::Helper::Flash;
use SL::Locale::String;
+use Data::Dumper;
+
use Rose::Object::MakeMethods::Generic
(
scalar => [ qw(project linked_records) ],
my %params;
$params{CUSTOM_VARIABLES} = CVar->get_configs(module => 'Projects');
+
($params{CUSTOM_VARIABLES_FILTER_CODE}, $params{CUSTOM_VARIABLES_INCLUSION_CODE})
= CVar->render_search_options(variables => $params{CUSTOM_VARIABLES},
include_prefix => 'l_',
by => 'projectnumber',
dir => 1,
},
- customer => t8('Customer'),
- description => t8('Description'),
- projectnumber => t8('Project Number'),
- project_type => t8('Project Type'),
+ customer => t8('Customer'),
+ description => t8('Description'),
+ projectnumber => t8('Project Number'),
+ project_type => t8('Project Type'),
+ project_status => t8('Project Status'),
},
- with_objects => [ 'customer' ],
+ with_objects => [ 'customer', 'project_status', 'project_type' ],
);
}