1 package FS::cust_main_exemption;
2 use base qw( FS::Record );
9 FS::cust_main_exemption - Object methods for cust_main_exemption records
13 use FS::cust_main_exemption;
15 $record = new FS::cust_main_exemption \%hash;
16 $record = new FS::cust_main_exemption { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::cust_main_exemption object represents a customer tax exemption from a
29 specific tax name (prefix). FS::cust_main_exemption inherits from
30 FS::Record. The following fields are currently supported:
40 Customer (see L<FS::cust_main>)
58 Creates a new record. To add the record to the database, see L<"insert">.
60 Note that this stores the hash reference, not a distinct copy of the hash it
61 points to. You can ask the object for a copy with the I<hash> method.
65 # the new method can be inherited from FS::Record, if a table method is defined
67 sub table { 'cust_main_exemption'; }
71 Adds this record to the database. If there is an error, returns the error,
72 otherwise returns false.
76 # the insert method can be inherited from FS::Record
80 Delete this record from the database.
84 # the delete method can be inherited from FS::Record
86 =item replace OLD_RECORD
88 Replaces the OLD_RECORD with this one in the database. If there is an error,
89 returns the error, otherwise returns false.
93 # the replace method can be inherited from FS::Record
97 Checks all fields to make sure this is a valid record. If there is
98 an error, returns the error, otherwise returns false. Called by the insert
103 # the check method should currently be supplied - FS::Record contains some
104 # data checking routines
110 $self->ut_numbern('exemptionnum')
111 || $self->ut_foreign_key('custnum', 'cust_main', 'custnum')
112 || $self->ut_text('taxname')
113 || $self->ut_textn('exempt_number')
115 return $error if $error;
117 my $conf = new FS::Conf;
118 return 'Tax exemption number required for '. $self->taxname. ' exemption'
119 if ! $self->exempt_number
120 && ( $conf->exists('tax-cust_exempt-groups-require_individual_nums')
121 || $conf->config('tax-cust_exempt-groups-num_req') eq 'all'
122 || ( $conf->config('tax-cust_exempt-groups-num_req') eq 'residential'
123 && ! $self->cust_main->company
136 L<FS::cust_main>, L<FS::Record>, schema.html from the base documentation.