1 package FS::pkg_referral;
5 use FS::Record qw( qsearch qsearchs );
11 FS::pkg_referral - Object methods for pkg_referral records
17 $record = new FS::pkg_referral \%hash;
18 $record = new FS::pkg_referral { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::pkg_referral object represents the association of an advertising source
31 with a specific customer package (purchase). FS::pkg_referral inherits from
32 FS::Record. The following fields are currently supported:
36 =item pkgrefnum - primary key
38 =item pkgnum - Customer package. See L<FS::cust_pkg>
40 =item refnum - Advertising source. See L<FS::part_referral>
50 Creates a new record. To add the record to the database, see L<"insert">.
52 Note that this stores the hash reference, not a distinct copy of the hash it
53 points to. You can ask the object for a copy with the I<hash> method.
57 # the new method can be inherited from FS::Record, if a table method is defined
59 sub table { 'pkg_referral'; }
63 Adds this record to the database. If there is an error, returns the error,
64 otherwise returns false.
68 # the insert method can be inherited from FS::Record
72 Delete this record from the database.
76 # the delete method can be inherited from FS::Record
78 =item replace OLD_RECORD
80 Replaces the OLD_RECORD with this one in the database. If there is an error,
81 returns the error, otherwise returns false.
85 # the replace method can be inherited from FS::Record
89 Checks all fields to make sure this is a valid record. If there is
90 an error, returns the error, otherwise returns false. Called by the insert
95 # the check method should currently be supplied - FS::Record contains some
96 # data checking routines
102 $self->ut_numbern('pkgrefnum')
103 || $self->ut_foreign_key('pkgnum', 'cust_pkg', 'pkgnum' )
104 || $self->ut_foreign_key('refnum', 'part_referral', 'refnum' )
106 return $error if $error;
115 Multiple pkg_referral records for a single package (configured off by default)
120 L<FS::part_referral>, L<FS::cust_pkg>, L<FS::Record>, schema.html from the