Freeside:3:Documentation:Developer/FS/tax rate location
From Freeside
Contents
NAME
FS::tax_rate_location - Object methods for tax_rate_location records
SYNOPSIS
use FS::tax_rate_location; $record = new FS::tax_rate_location \%hash; $record = new FS::tax_rate_location { 'column' => 'value' }; $error = $record->insert; $error = $new_record->replace($old_record); $error = $record->delete; $error = $record->check;
DESCRIPTION
An FS::tax_rate_location object represents an example. FS::tax_rate_location inherits from FS::Record. The following fields are currently supported:
- taxratelocationnum
- Primary key (assigned automatically for new tax_rate_locations)
- data_vendor
- The tax data vendor
- geocode
- A unique geographic location code provided by the data vendor
- city
- City
- county
- County
- state
- State
- disabled
- If 'Y' this record is no longer active.
METHODS
- new HASHREF
- Creates a new tax rate location. To add the record to the database, see "insert".
- Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the hash method.
- insert
- Adds this record to the database. If there is an error, returns the error, otherwise returns false.
- delete
- Delete this record from the database.
- replace OLD_RECORD
- Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false.
- check
- Checks all fields to make sure this is a valid tax rate location. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
CLASS METHODS
- location_sql KEY => VALUE, ...
- Returns an SQL fragment identifying matching tax_rate_location / cust_bill_pkg_tax_rate_location records.
- Parameters are county, state, city and locationtaxid
SUBROUTINES
- batch_import
BUGS
Currently somewhat specific to CCH supplied data.
SEE ALSO
FS::Record, schema.html from the base documentation.
POD ERRORS
Hey! The above document had some coding errors, which are explained below:
- Around line 156:
- '=item' outside of any '=over'
- Around line 337:
- You forgot a '=back' before '=head1'