so Search.tsf and Search.rdf work
[freeside.git] / FS / FS / rate_detail.pm
1 package FS::rate_detail;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::Record qw( qsearch qsearchs );
6 use FS::rate;
7 use FS::rate_region;
8
9 @ISA = qw(FS::Record);
10
11 =head1 NAME
12
13 FS::rate_detail - Object methods for rate_detail records
14
15 =head1 SYNOPSIS
16
17   use FS::rate_detail;
18
19   $record = new FS::rate_detail \%hash;
20   $record = new FS::rate_detail { 'column' => 'value' };
21
22   $error = $record->insert;
23
24   $error = $new_record->replace($old_record);
25
26   $error = $record->delete;
27
28   $error = $record->check;
29
30 =head1 DESCRIPTION
31
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:
34
35 =over 4
36
37 =item ratedetailnum - primary key
38
39 =item ratenum - rate plan (see L<FS::rate>)
40
41 =item orig_regionnum - call origination region
42
43 =item dest_regionnum - call destination region
44
45 =item min_included - included minutes
46
47 =item min_charge - charge per minute
48
49 =item sec_granularity - granularity in seconds, i.e. 6 or 60
50
51 =back
52
53 =head1 METHODS
54
55 =over 4
56
57 =item new HASHREF
58
59 Creates a new example.  To add the example to the database, see L<"insert">.
60
61 Note that this stores the hash reference, not a distinct copy of the hash it
62 points to.  You can ask the object for a copy with the I<hash> method.
63
64 =cut
65
66 # the new method can be inherited from FS::Record, if a table method is defined
67
68 sub table { 'rate_detail'; }
69
70 =item insert
71
72 Adds this record to the database.  If there is an error, returns the error,
73 otherwise returns false.
74
75 =cut
76
77 # the insert method can be inherited from FS::Record
78
79 =item delete
80
81 Delete this record from the database.
82
83 =cut
84
85 # the delete method can be inherited from FS::Record
86
87 =item replace OLD_RECORD
88
89 Replaces the OLD_RECORD with this one in the database.  If there is an error,
90 returns the error, otherwise returns false.
91
92 =cut
93
94 # the replace method can be inherited from FS::Record
95
96 =item check
97
98 Checks all fields to make sure this is a valid example.  If there is
99 an error, returns the error, otherwise returns false.  Called by the insert
100 and replace methods.
101
102 =cut
103
104 # the check method should currently be supplied - FS::Record contains some
105 # data checking routines
106
107 sub check {
108   my $self = shift;
109
110   my $error = 
111        $self->ut_numbern('ratedetailnum')
112     || $self->ut_foreign_key('ratenum', 'rate', 'ratenum')
113     || $self->ut_foreign_keyn('orig_regionnum', 'rate_region', 'regionnum' )
114     || $self->ut_foreign_key('dest_regionnum', 'rate_region', 'regionnum' )
115     || $self->ut_number('min_included')
116     || $self->ut_money('min_charge')
117     || $self->ut_number('sec_granularity')
118   ;
119   return $error if $error;
120
121   $self->SUPER::check;
122 }
123
124 =back
125
126 =head1 BUGS
127
128 =head1 SEE ALSO
129
130 L<FS::rate>, L<FS::rate_region>, L<FS::Record>,
131 schema.html from the base documentation.
132
133 =cut
134
135 1;
136