kivitendo/SL/Controller/TopQuickSearch/SalesQuotation.pm @ 68748667
23c5a950 | Sven Schöling | package SL::Controller::TopQuickSearch::SalesQuotation;
|
||
use strict;
|
||||
use parent qw(SL::Controller::TopQuickSearch::OERecord);
|
||||
use SL::Locale::String qw(t8);
|
||||
3ad96f21 | Bernd Bleßmann | sub auth { 'sales_quotation_edit | sales_quotation_view' }
|
||
23c5a950 | Sven Schöling | |||
sub name { 'sales_quotation' }
|
||||
sub description_config { t8('Sales Quotations') }
|
||||
sub description_field { t8('Sales Quotations') }
|
||||
sub type { 'sales_quotation' }
|
||||
sub vc { 'customer' }
|
||||
1;
|