Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / Controller / TopQuickSearch / Assembly.pm
1 package SL::Controller::TopQuickSearch::Assembly;
2
3 use strict;
4 use parent qw(SL::Controller::TopQuickSearch::Article);
5
6 use SL::Locale::String qw(t8);
7
8 sub name { 'assembly' }
9
10 sub description_config { t8('Assemblies') }
11
12 sub description_field { t8('Assemblies') }
13
14 sub part_type { 'assembly' }
15
16 1;