1 package FS::rate_detail;
5 use FS::Record qw( qsearch qsearchs );
13 FS::rate_detail - Object methods for rate_detail records
19 $record = new FS::rate_detail \%hash;
20 $record = new FS::rate_detail { 'column' => 'value' };
22 $error = $record->insert;
24 $error = $new_record->replace($old_record);
26 $error = $record->delete;
28 $error = $record->check;
32 An FS::rate_detail object represents an call plan rate. FS::rate_detail
33 inherits from FS::Record. The following fields are currently supported:
37 =item ratedetailnum - primary key
39 =item ratenum - rate plan (see L<FS::rate>)
41 =item orig_regionnum - call origination region
43 =item dest_regionnum - call destination region
45 =item min_included - included minutes
47 =item min_charge - charge per minute
49 =item sec_granularity - granularity in seconds, i.e. 6 or 60
59 Creates a new call plan rate. To add the call plan rate to the database, see
62 Note that this stores the hash reference, not a distinct copy of the hash it
63 points to. You can ask the object for a copy with the I<hash> method.
67 # the new method can be inherited from FS::Record, if a table method is defined
69 sub table { 'rate_detail'; }
73 Adds this record to the database. If there is an error, returns the error,
74 otherwise returns false.
78 # the insert method can be inherited from FS::Record
82 Delete this record from the database.
86 # the delete method can be inherited from FS::Record
88 =item replace OLD_RECORD
90 Replaces the OLD_RECORD with this one in the database. If there is an error,
91 returns the error, otherwise returns false.
95 # the replace method can be inherited from FS::Record
99 Checks all fields to make sure this is a valid call plan rate. If there is
100 an error, returns the error, otherwise returns false. Called by the insert
105 # the check method should currently be supplied - FS::Record contains some
106 # data checking routines
112 $self->ut_numbern('ratedetailnum')
113 || $self->ut_foreign_key('ratenum', 'rate', 'ratenum')
114 || $self->ut_foreign_keyn('orig_regionnum', 'rate_region', 'regionnum' )
115 || $self->ut_foreign_key('dest_regionnum', 'rate_region', 'regionnum' )
116 || $self->ut_number('min_included')
118 #|| $self->ut_money('min_charge')
119 #good enough for now...
120 || $self->ut_float('min_charge')
122 || $self->ut_number('sec_granularity')
124 return $error if $error;
131 Returns the origination region (see L<FS::rate_region>) associated with this
138 qsearchs('rate_region', { 'regionnum' => $self->orig_regionnum } );
143 Returns the destination region (see L<FS::rate_region>) associated with this
150 qsearchs('rate_region', { 'regionnum' => $self->dest_regionnum } );
159 L<FS::rate>, L<FS::rate_region>, L<FS::Record>,
160 schema.html from the base documentation.