X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpkg_category.pm;h=adfadd772949a82bf12f8f5412193dd673e952b7;hb=961c99fbc92fbe296911a60980aef247f8adc049;hp=15029719fb9d618bc9feb3c6f6f3b7d9c338eb56;hpb=9d77a21db3642ca66d9a0e545b804b7e6b4090ee;p=freeside.git diff --git a/FS/FS/pkg_category.pm b/FS/FS/pkg_category.pm index 15029719f..adfadd772 100644 --- a/FS/FS/pkg_category.pm +++ b/FS/FS/pkg_category.pm @@ -1,9 +1,9 @@ package FS::pkg_category; +use base qw( FS::category_Common ); use strict; -use base qw( FS::category_Common ); use vars qw( @ISA $me $DEBUG ); -use FS::Record qw( qsearch dbh ); +use FS::Record qw( qsearch ); use FS::pkg_class; use FS::part_pkg; @@ -49,6 +49,15 @@ Text name of this package category Weight +=item ticketing_queueid + +Ticketing Queue + +=item condense + +Condense flag for invoice display, empty or 'Y' + + =item disabled Disabled flag, empty or 'Y' @@ -90,15 +99,36 @@ Checks all fields to make sure this is a valid package category. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods. +=cut + +sub check { + my $self = shift; + + $self->ut_enum('condense', [ '', 'Y' ]) + || $self->ut_snumbern('ticketing_queueid') + || $self->SUPER::check; +} + +=item ticketing_queue + +Returns the queue name corresponding with the id from the I +field, or the empty string. + +=cut + +sub ticketing_queue { + my $self = shift; + return 'Agent-specific queue' if $self->ticketing_queueid == -1; + return '' unless $self->ticketing_queueid; + FS::TicketSystem->queue($self->ticketing_queueid); +} + # _ upgrade_data # # Used by FS::Upgrade to migrate to a new database. -# -# sub _upgrade_data { my ($class, %opts) = @_; - my $dbh = dbh; warn "$me upgrading $class\n" if $DEBUG;