so Search.tsf and Search.rdf work
[freeside.git] / FS / FS / type_pkgs.pm
index efba60d..bf34e7c 100644 (file)
@@ -35,6 +35,8 @@ FS::Record.  The following fields are currently supported:
 
 =over 4
 
+=item typepkgnum - primary key
+
 =item typenum - Agent type, see L<FS::agent_type>
 
 =item pkgpart - Billing item definition, see L<FS::part_pkg>
@@ -80,7 +82,8 @@ sub check {
   my $self = shift;
 
   my $error = 
-    $self->ut_number('typenum')
+       $self->ut_numbern('typepkgnum')
+    || $self->ut_number('typenum')
     || $self->ut_number('pkgpart')
   ;
   return $error if $error;
@@ -91,7 +94,7 @@ sub check {
   return "Unknown pkgpart"
     unless qsearchs( 'part_pkg', { 'pkgpart' => $self->pkgpart } );
 
-  ''; #no error
+  $self->SUPER::check;
 }
 
 =item part_pkg
@@ -109,10 +112,6 @@ sub part_pkg {
 
 =back
 
-=head1 VERSION
-
-$Id: type_pkgs.pm,v 1.2 2002-10-04 12:57:06 ivan Exp $
-
 =head1 BUGS
 
 =head1 SEE ALSO