Merge branch 'test' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / Controller / TopQuickSearch / RequestForQuotation.pm
1 package SL::Controller::TopQuickSearch::RequestForQuotation;
2
3 use strict;
4 use parent qw(SL::Controller::TopQuickSearch::OERecord);
5
6 use SL::Locale::String qw(t8);
7
8 sub auth { 'request_quotation_edit | request_quotation_view' }
9
10 sub name { 'request_quotation' }
11
12 sub description_config { t8('Request Quotations') }
13
14 sub description_field { t8('Request Quotations') }
15
16 sub type { 'request_quotation' }
17
18 sub vc { 'vendor' }
19
20 1;