1 package FS::cdr_termination;
4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
9 FS::cdr_termination - Object methods for cdr_termination records
13 use FS::cdr_termination;
15 $record = new FS::cdr_termination \%hash;
16 $record = new FS::cdr_termination { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::cdr_termination object represents an CDR termination status.
29 FS::cdr_termination inherits from FS::Record. The following fields are
56 svc_phone record associated with this transaction, if there is one.
66 Creates a new record. To add the record to the database, see L<"insert">.
68 Note that this stores the hash reference, not a distinct copy of the hash it
69 points to. You can ask the object for a copy with the I<hash> method.
73 # the new method can be inherited from FS::Record, if a table method is defined
75 sub table { 'cdr_termination'; }
79 Adds this record to the database. If there is an error, returns the error,
80 otherwise returns false.
84 # the insert method can be inherited from FS::Record
88 Delete this record from the database.
92 # the delete method can be inherited from FS::Record
94 =item replace OLD_RECORD
96 Replaces the OLD_RECORD with this one in the database. If there is an error,
97 returns the error, otherwise returns false.
101 # the replace method can be inherited from FS::Record
105 Checks all fields to make sure this is a valid record. If there is
106 an error, returns the error, otherwise returns false. Called by the insert
111 # the check method should currently be supplied - FS::Record contains some
112 # data checking routines
118 $self->ut_numbern('cdrtermnum')
119 || $self->ut_foreign_key('acctid', 'cdr', 'acctid')
120 #|| $self->ut_foreign_key('termpart', 'part_termination', 'termpart')
121 || $self->ut_number('termpart')
122 || $self->ut_floatn('rated_price')
123 || $self->ut_enum('status', [ '', 'processing-tiered', 'done' ] ) # , 'skipped' ] )
125 return $error if $error;
130 #=item set_status_and_rated_price STATUS [ RATED_PRICE ]
132 #Sets the status to the provided string. If there is an error, returns the
133 #error, otherwise returns false.
137 #sub set_status_and_rated_price {
138 # my($self, $status, $rated_price) = @_;
139 # $self->status($status);
140 # $self->rated_price($rated_price);
150 L<FS::cdr>, L<FS::Record>, schema.html from the base documentation.