test action
[kivitendo-erp.git] / SL / Controller / TopQuickSearch / SalesQuotation.pm
1 package SL::Controller::TopQuickSearch::SalesQuotation;
2
3 use strict;
4 use parent qw(SL::Controller::TopQuickSearch::OERecord);
5
6 use SL::Locale::String qw(t8);
7
8 sub auth { 'sales_quotation_edit' }
9
10 sub name { 'sales_quotation' }
11
12 sub description_config { t8('Sales Quotations') }
13
14 sub description_field { t8('Sales Quotations') }
15
16 sub type { 'sales_quotation' }
17
18 sub vc { 'customer' }
19
20 1;