kivitendo/SL/Controller/TopQuickSearch/PurchaseOrder.pm @ 4b1666b7
23c5a950 | Sven Schöling | 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' }
|
|||
sub name { 'purchase_order' }
|
|||
sub description_config { t8('Purchase Orders') }
|
|||
sub description_field { t8('Purchase Orders') }
|
|||
sub type { 'purchase_order' }
|
|||
sub vc { 'vendor' }
|
|||
1;
|