Merge branch 'b-3.6.1' into mebil
[kivitendo-erp.git] / SL / Controller / TopQuickSearch / PurchaseOrder.pm
1 package SL::Controller::TopQuickSearch::PurchaseOrder;
2
3 use strict;
4 use parent qw(SL::Controller::TopQuickSearch::OERecord);
5
6 use SL::Locale::String qw(t8);
7
8 sub auth { 'purchase_order_edit | purchase_order_view' }
9
10 sub name { 'purchase_order' }
11
12 sub description_config { t8('Purchase Orders') }
13
14 sub description_field { t8('Purchase Orders') }
15
16 sub type { 'purchase_order' }
17
18 sub vc { 'vendor' }
19
20 1;