% include( '/elements/header.html', 'Developer Documentation' ) %> <& /elements/menubar.html, 'Freeside Perl Modules' => $fsurl.'docs/library/FS.html', 'Complete Index' => $fsurl.'docs/library/index.html', &>
FS::cust_bill_pkg_tax_rate_location - Object methods for cust_bill_pkg_tax_rate_location records
use FS::cust_bill_pkg_tax_rate_location;
$record = new FS::cust_bill_pkg_tax_rate_location \%hash;
$record = new FS::cust_bill_pkg_tax_rate_location { 'column' => 'value' };
$error = $record->insert;
$error = $new_record->replace($old_record);
$error = $record->delete;
$error = $record->check;
An FS::cust_bill_pkg_tax_rate_location object represents an record of taxation based on package location. FS::cust_bill_pkg_tax_rate_location inherits from FS::Record. The following fields are currently supported:
billpkgtaxratelocationnum
billpkgnum
taxnum
taxtype
locationtaxid
taxratelocationnum
amount
Creates a new record. 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.
Adds this record to the database. If there is an error, returns the error, otherwise returns false.
Delete this record from the database.
Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false.
Checks all fields to make sure this is a valid record. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
Returns the associated cust_bill_pkg object
Returns the associated tax_rate_location object
Returns the tax name (the itemdesc).
Returns a description for this tax line item constituent. Currently this is the desc of the associated line item followed by the state,county,city,locationtaxid for the location in parentheses.
Returns the amount owed (still outstanding) on this tax line item which is the amount of this record minus all payment applications and credit applications.
FS::Record, schema.html from the base documentation.