TopQuickSearch: Alle Part Varianten for free
[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 type { type => 'assembly' }
15
16 1;