Difference between revisions of "Freeside:3:Documentation:Developer/FS/quotation pkg discount"
From Freeside
m (Edit via perl MediaWiki framework (1.13)) |
m (Edit via perl MediaWiki framework (1.13)) |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 23: | Line 23: | ||
:primary key | :primary key | ||
; quotationpkgnum | ; quotationpkgnum | ||
| − | :quotationpkgnum | + | :quotationpkgnum of the [[Freeside:3:Documentation:Developer/FS/quotation pkg|FS::quotation_pkg]] record that this discount is for. |
; discountnum | ; discountnum | ||
| − | :discountnum | + | :discountnum ([[Freeside:3:Documentation:Developer/FS/discount|FS::discount]]) |
| + | ; setup_amount | ||
| + | :Amount that will be discounted from setup fees, per package quantity. | ||
| + | ; recur_amount | ||
| + | :Amount that will be discounted from recurring fees in the first billing cycle, per package quantity. | ||
==METHODS== | ==METHODS== | ||
| Line 40: | Line 44: | ||
; check | ; check | ||
:Checks all fields to make sure this is a valid quotation package discount. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods. | :Checks all fields to make sure this is a valid quotation package discount. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods. | ||
| + | |||
| + | ; description | ||
| + | :Returns a string describing the discount (for use on the quotation). | ||
==BUGS== | ==BUGS== | ||
==SEE ALSO== | ==SEE ALSO== | ||
[[Freeside:3:Documentation:Developer/FS/Record|FS::Record]], schema.html from the base documentation. | [[Freeside:3:Documentation:Developer/FS/Record|FS::Record]], schema.html from the base documentation. | ||
| + | |||
| + | ==POD ERRORS== | ||
| + | Hey! '''The above document had some coding errors, which are explained below:''' | ||
| + | |||
| + | ; Around line 121: | ||
| + | :'=item' outside of any '=over' | ||
| + | ; Around line 153: | ||
| + | :You forgot a '=back' before '=head1' | ||
Latest revision as of 11:03, 10 April 2015
NAME
FS::quotation_pkg_discount - Object methods for quotation_pkg_discount records
SYNOPSIS
use FS::quotation_pkg_discount;
$record = new FS::quotation_pkg_discount \%hash;
$record = new FS::quotation_pkg_discount { 'column' => 'value' };
$error = $record->insert;
$error = $new_record->replace($old_record);
$error = $record->delete;
$error = $record->check;
DESCRIPTION
An FS::quotation_pkg_discount object represents a quotation package discount. FS::quotation_pkg_discount inherits from FS::Record. The following fields are currently supported:
- quotationpkgdiscountnum
- primary key
- quotationpkgnum
- quotationpkgnum of the FS::quotation_pkg record that this discount is for.
- discountnum
- discountnum (FS::discount)
- setup_amount
- Amount that will be discounted from setup fees, per package quantity.
- recur_amount
- Amount that will be discounted from recurring fees in the first billing cycle, per package quantity.
METHODS
- new HASHREF
- Creates a new quotation package discount. To add the quotation package discount 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 quotation package discount. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
- description
- Returns a string describing the discount (for use on the quotation).
BUGS
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 121:
- '=item' outside of any '=over'
- Around line 153:
- You forgot a '=back' before '=head1'