X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Faccess_groupagent.pm;h=b0c4bb3f4f8e0e09633ceb9d1d7edcf30e1e61d4;hp=6b5def1a341b3192a5bc63549a7d89483ac662b1;hb=57bb423fe457ba4e13726877f53bcdf944f828f8;hpb=2c757d7db4cb6a7b9655de13206fcc84fb7ce61f diff --git a/FS/FS/access_groupagent.pm b/FS/FS/access_groupagent.pm index 6b5def1a3..b0c4bb3f4 100644 --- a/FS/FS/access_groupagent.pm +++ b/FS/FS/access_groupagent.pm @@ -1,10 +1,7 @@ package FS::access_groupagent; +use base qw(FS::Record); use strict; -use vars qw( @ISA ); -use FS::Record qw( qsearch qsearchs ); - -@ISA = qw(FS::Record); =head1 NAME @@ -27,7 +24,7 @@ FS::access_groupagent - Object methods for access_groupagent records =head1 DESCRIPTION -An FS::access_groupagent object represents an example. FS::access_groupagent inherits from +An FS::access_groupagent object represents an group reseller virtualization. FS::access_groupagent inherits from FS::Record. The following fields are currently supported: =over 4 @@ -47,7 +44,7 @@ FS::Record. The following fields are currently supported: =item new HASHREF -Creates a new example. To add the example to the database, see L<"insert">. +Creates a new group reseller virtualization. To add the record to the database, see L<"insert">. Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the I method. @@ -86,7 +83,7 @@ returns the error, otherwise returns false. =item check -Checks all fields to make sure this is a valid example. If there is +Checks all fields to make sure this is a valid group reseller virtualization. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods. @@ -100,20 +97,26 @@ sub check { my $error = $self->ut_numbern('groupagentnum') - || $self->ut_number('groupnum') - || $self->ut_number('agentnum') + || $self->ut_foreign_key('groupnum', 'access_group', 'groupnum') + || $self->ut_foreign_key('agentnum', 'agent', 'agentnum') ; return $error if $error; $self->SUPER::check; } +=item agent + +Returns the associated FS::agent object. + +=item access_group + +Returns the associated FS::access_group object. + =back =head1 BUGS -The author forgot to customize this manpage. - =head1 SEE ALSO L, schema.html from the base documentation.