X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/Controller/TopQuickSearch/SalesQuotation.pm diff --git a/SL/Controller/TopQuickSearch/SalesQuotation.pm b/SL/Controller/TopQuickSearch/SalesQuotation.pm new file mode 100644 index 000000000..f7a6b777a --- /dev/null +++ b/SL/Controller/TopQuickSearch/SalesQuotation.pm @@ -0,0 +1,20 @@ +package SL::Controller::TopQuickSearch::SalesQuotation; + +use strict; +use parent qw(SL::Controller::TopQuickSearch::OERecord); + +use SL::Locale::String qw(t8); + +sub auth { 'sales_quotation_edit | sales_quotation_view' } + +sub name { 'sales_quotation' } + +sub description_config { t8('Sales Quotations') } + +sub description_field { t8('Sales Quotations') } + +sub type { 'sales_quotation' } + +sub vc { 'customer' } + +1;