2 use base qw( FS::o2m_Common FS::Record );
5 use FS::Record qw( qsearch qsearchs );
6 use FS::rate_tier_detail;
10 FS::rate_tier - Object methods for rate_tier records
16 $record = new FS::rate_tier \%hash;
17 $record = new FS::rate_tier { 'column' => 'value' };
19 $error = $record->insert;
21 $error = $new_record->replace($old_record);
23 $error = $record->delete;
25 $error = $record->check;
29 An FS::rate_tier object represents a set of rate tiers. FS::rate_tier inherits
30 from FS::Record. The following fields are currently supported:
51 Creates a new record. To add the record to the database, see L<"insert">.
53 Note that this stores the hash reference, not a distinct copy of the hash it
54 points to. You can ask the object for a copy with the I<hash> method.
58 # the new method can be inherited from FS::Record, if a table method is defined
60 sub table { 'rate_tier'; }
64 Adds this record to the database. If there is an error, returns the error,
65 otherwise returns false.
69 # the insert method can be inherited from FS::Record
73 Delete this record from the database.
77 # the delete method can be inherited from FS::Record
79 =item replace OLD_RECORD
81 Replaces the OLD_RECORD with this one in the database. If there is an error,
82 returns the error, otherwise returns false.
86 # the replace method can be inherited from FS::Record
90 Checks all fields to make sure this is a valid record. If there is
91 an error, returns the error, otherwise returns false. Called by the insert
96 # the check method should currently be supplied - FS::Record contains some
97 # data checking routines
103 $self->ut_numbern('tiernum')
104 || $self->ut_text('tiername')
106 return $error if $error;
111 =item rate_tier_detail QUANTITY
115 sub rate_tier_detail {
118 if ( defined($_[0]) && length($_[0]) ) {
120 my $quantity = shift;
121 $quantity = int( $quantity + 0.00001 );
124 'table' => 'rate_tier_detail',
125 'hashref' => { 'tiernum' => $self->tiernum,
126 'min_quan' => { op=>'<=', value=>$quantity },
128 'order_by' => 'ORDER BY min_charge ASC LIMIT 1',
134 'table' => 'rate_tier_detail',
135 'hashref' => { 'tiernum' => $self->tiernum, },
136 'order_by' => 'ORDER BY min_quan ASC',
149 L<FS::Record>, schema.html from the base documentation.