1 package FS::reg_code_pkg;
5 use FS::Record qw(qsearchs);
13 FS::reg_code_pkg - Class linking registration codes (see L<FS::reg_code>) with package definitions (see L<FS::part_pkg>)
19 $record = new FS::reg_code_pkg \%hash;
20 $record = new FS::reg_code_pkg { 'column' => 'value' };
22 $error = $record->insert;
24 $error = $new_record->replace($old_record);
26 $error = $record->delete;
28 $error = $record->check;
32 An FS::reg_code_pkg object links a registration code to a package definition.
33 FS::table_name inherits from FS::Record. The following fields are currently
38 =item codepkgnum - primary key
40 =item codenum - registration code (see L<FS::reg_code>)
42 =item pkgpart - package definition (see L<FS::part_pkg>)
52 Creates a new registration code. To add the registration code to the database,
55 Note that this stores the hash reference, not a distinct copy of the hash it
56 points to. You can ask the object for a copy with the I<hash> method.
60 # the new method can be inherited from FS::Record, if a table method is defined
62 sub table { 'reg_code_pkg'; }
66 Adds this record to the database. If there is an error, returns the error,
67 otherwise returns false.
71 # the insert method can be inherited from FS::Record
75 Delete this record from the database.
79 # the delete method can be inherited from FS::Record
81 =item replace OLD_RECORD
83 Replaces the OLD_RECORD with this one in the database. If there is an error,
84 returns the error, otherwise returns false.
88 # the replace method can be inherited from FS::Record
92 Checks all fields to make sure this is a valid record. If there is
93 an error, returns the error, otherwise returns false. Called by the insert
98 # the check method should currently be supplied - FS::Record contains some
99 # data checking routines
105 $self->ut_numbern('codepkgnum')
106 || $self->ut_foreign_key('codenum', 'reg_code', 'codenum')
107 || $self->ut_foreign_key('pkgpart', 'part_pkg', 'pkgpart')
109 return $error if $error;
116 Returns the package definition (see L<FS::part_pkg>)
122 qsearchs('part_pkg', { 'pkgpart' => $self->pkgpart } );
133 L<FS::reg_code_pkg>, L<FS::Record>, schema.html from the base documentation.