summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2001-09-11 23:44:01 +0000
committerivan <ivan>2001-09-11 23:44:01 +0000
commit844855ae401bc5a7167b5fa8898275f89719ed71 (patch)
tree4a2f0ef1ea2a9917199325c83b54cfa0f861c0db /FS
parentcf7ca698138c8708c68cb969cc843311e385a7a8 (diff)
radius attributes & default/fixed values should work again now
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_svc.pm16
1 files changed, 11 insertions, 5 deletions
diff --git a/FS/FS/part_svc.pm b/FS/FS/part_svc.pm
index f1e71ada8..6f66ef960 100644
--- a/FS/FS/part_svc.pm
+++ b/FS/FS/part_svc.pm
@@ -40,10 +40,6 @@ FS::Record. The following fields are currently supported:
=item svcdb - table used for this service. See L<FS::svc_acct>,
L<FS::svc_domain>, and L<FS::svc_forward>, among others.
-=item I<svcdb>__I<field> - Default or fixed value for I<field> in I<svcdb>.
-
-=item I<svcdb>__I<field>_flag - defines I<svcdb>__I<field> action: null, `D' for default, or `F' for fixed
-
=back
=head1 METHODS
@@ -63,6 +59,7 @@ sub table { 'part_svc'; }
Adds this service definition to the database. If there is an error, returns
the error, otherwise returns false.
+
=item I<svcdb>__I<field> - Default or fixed value for I<field> in I<svcdb>.
=item I<svcdb>__I<field>_flag - defines I<svcdb>__I<field> action: null, `D' for default, or `F' for fixed
@@ -285,11 +282,20 @@ sub part_svc_column {
};
}
+=item all_part_svc_column
+
+=cut
+
+sub all_part_svc_column {
+ my $self = shift;
+ qsearch('part_svc_column', { 'svcpart' => $self->svcpart } );
+}
+
=back
=head1 VERSION
-$Id: part_svc.pm,v 1.4 2001-09-11 00:08:18 ivan Exp $
+$Id: part_svc.pm,v 1.5 2001-09-11 23:44:01 ivan Exp $
=head1 BUGS