summaryrefslogtreecommitdiff
path: root/FS/FS/pkg_svc.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/pkg_svc.pm')
-rw-r--r--FS/FS/pkg_svc.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/FS/FS/pkg_svc.pm b/FS/FS/pkg_svc.pm
index 1812dbf..3956dd8 100644
--- a/FS/FS/pkg_svc.pm
+++ b/FS/FS/pkg_svc.pm
@@ -46,6 +46,8 @@ FS::Record. The following fields are currently supported:
=item quantity - Quantity of this service definition that this billing item
definition includes
+=item primary_svc - primary flag, empty or 'Y'
+
=back
=head1 METHODS
@@ -108,6 +110,11 @@ sub check {
return "Unknown pkgpart!" unless $self->part_pkg;
return "Unknown svcpart!" unless $self->part_svc;
+ if ( $self->dbdef_table->column('primary_svc') ) {
+ $error = $self->ut_enum('primary_svc', [ '', 'Y' ] );
+ return $error if $error;
+ }
+
''; #no error
}
@@ -135,10 +142,6 @@ sub part_svc {
=back
-=head1 VERSION
-
-$Id: pkg_svc.pm,v 1.1 1999-08-04 09:03:53 ivan Exp $
-
=head1 BUGS
=head1 SEE ALSO