1 package FS::cust_pkg_detail;
5 use FS::Record; # qw( qsearch qsearchs );
11 FS::cust_pkg_detail - Object methods for cust_pkg_detail records
15 use FS::cust_pkg_detail;
17 $record = new FS::cust_pkg_detail \%hash;
18 $record = new FS::cust_pkg_detail { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::cust_pkg_detail object represents additional customer package details.
31 FS::cust_pkg_detail inherits from FS::Record. The following fields are
42 pkgnum (see L<FS::cust_pkg>)
50 "I" for Invoice details or "C" for comments
54 Optional display weight
64 Creates a new record. To add the record to the database, see L<"insert">.
66 Note that this stores the hash reference, not a distinct copy of the hash it
67 points to. You can ask the object for a copy with the I<hash> method.
71 # the new method can be inherited from FS::Record, if a table method is defined
73 sub table { 'cust_pkg_detail'; }
77 Adds this record to the database. If there is an error, returns the error,
78 otherwise returns false.
82 # the insert method can be inherited from FS::Record
86 Delete this record from the database.
90 # the delete method can be inherited from FS::Record
92 =item replace OLD_RECORD
94 Replaces the OLD_RECORD with this one in the database. If there is an error,
95 returns the error, otherwise returns false.
99 # the replace method can be inherited from FS::Record
103 Checks all fields to make sure this is a valid record. If there is
104 an error, returns the error, otherwise returns false. Called by the insert
109 # the check method should currently be supplied - FS::Record contains some
110 # data checking routines
116 $self->ut_numbern('pkgdetailnum')
117 || $self->ut_foreign_key('pkgnum', 'cust_pkg', 'pkgnum')
118 || $self->ut_text('detail')
119 || $self->ut_enum('detailtype', [ 'I', 'C' ] )
120 || $self->ut_numbern('weight')
122 return $error if $error;
124 $self->weight(0) unless $self->weight;
135 L<FS::cust_pkg>, L<FS::Record>, schema.html from the base documentation.