X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/Controller/TopQuickSearch/Customer.pm diff --git a/SL/Controller/TopQuickSearch/Customer.pm b/SL/Controller/TopQuickSearch/Customer.pm new file mode 100644 index 000000000..b7c5b391b --- /dev/null +++ b/SL/Controller/TopQuickSearch/Customer.pm @@ -0,0 +1,21 @@ +package SL::Controller::TopQuickSearch::Customer; + +use strict; +use parent qw(SL::Controller::TopQuickSearch::CustomerVendor); +use SL::DB::Customer; + +use SL::Locale::String qw(t8); + +sub auth { undef } + +sub name { 'customer' } + +sub model { 'Customer' } + +sub db { 'customer' } + +sub description_config { t8('Customers') } + +sub description_field { t8('Customers') } + +1;