diff options
author | khoff <khoff> | 2003-06-23 22:19:38 +0000 |
---|---|---|
committer | khoff <khoff> | 2003-06-23 22:19:38 +0000 |
commit | 0b6bf02cff2b9cffaea70d81de9396a3a4f56b5d (patch) | |
tree | a3ffad24d3c01fd9c578313bb01a58a01811606b /FS/FS/router.pm | |
parent | 133b2094d6668fca77040b0f461ad009193b614f (diff) |
Generic virtual field support
Diffstat (limited to 'FS/FS/router.pm')
-rwxr-xr-x | FS/FS/router.pm | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/FS/FS/router.pm b/FS/FS/router.pm index 3f9459a01..2554ce86b 100755 --- a/FS/FS/router.pm +++ b/FS/FS/router.pm @@ -85,7 +85,7 @@ sub check { || $self->ut_text('routername'); return $error if $error; - ''; + $self->SUPER::check; } =item addr_block @@ -100,18 +100,6 @@ sub addr_block { return qsearch('addr_block', { routernum => $self->routernum }); } -=item router_field - -Returns a list of FS::router_field objects assigned to this object. - -=cut - -sub router_field { - my $self = shift; - - return qsearch('router_field', { routernum => $self->routernum }); -} - =item part_svc_router Returns a list of FS::part_svc_router objects associated with this @@ -147,7 +135,7 @@ $Id: =head1 SEE ALSO -FS::svc_broadband, FS::router, FS::addr_block, FS::router_field, FS::part_svc, +FS::svc_broadband, FS::router, FS::addr_block, FS::part_svc, schema.html from the base documentation. =cut |