X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FController%2FTopQuickSearch%2FPurchaseOrder.pm;fp=SL%2FController%2FTopQuickSearch%2FPurchaseOrder.pm;h=f64fb8366fc079b5882ec9fcc17354f841f2ffd8;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/SL/Controller/TopQuickSearch/PurchaseOrder.pm b/SL/Controller/TopQuickSearch/PurchaseOrder.pm new file mode 100644 index 000000000..f64fb8366 --- /dev/null +++ b/SL/Controller/TopQuickSearch/PurchaseOrder.pm @@ -0,0 +1,20 @@ +package SL::Controller::TopQuickSearch::PurchaseOrder; + +use strict; +use parent qw(SL::Controller::TopQuickSearch::OERecord); + +use SL::Locale::String qw(t8); + +sub auth { 'purchase_order_edit | purchase_order_view' } + +sub name { 'purchase_order' } + +sub description_config { t8('Purchase Orders') } + +sub description_field { t8('Purchase Orders') } + +sub type { 'purchase_order' } + +sub vc { 'vendor' } + +1;