projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Number: Konvertierung in Basiseinheit für format_number_units
[kivitendo-erp.git]
/
SL
/
Controller
/
TopQuickSearch
/
Part.pm
1
package SL::Controller::TopQuickSearch::Part;
2
3
use strict;
4
use parent qw(SL::Controller::TopQuickSearch::Article);
5
6
use SL::Locale::String qw(t8);
7
8
sub name { 'part' }
9
10
sub description_config { t8('Parts') }
11
12
sub description_field { t8('Parts') }
13
14
sub part_type { 'part' }
15
16
1;