X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FController%2FTopQuickSearch%2FCustomer.pm;fp=SL%2FController%2FTopQuickSearch%2FCustomer.pm;h=b7c5b391b3ddca6a55538cdd2d5eaecf7ffbb017;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=0000000000000000000000000000000000000000;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44;p=kivitendo-erp.git 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;