Freeside:3:Documentation:Developer/FS/cust pay batch
From Freeside
< Freeside:3:Documentation:Developer | FS
Revision as of 20:04, 27 June 2012 by Ivan (talk | contribs) (Edit via perl MediaWiki framework (1.13))
Contents
NAME
FS::cust_pay_batch - Object methods for batch cards
SYNOPSIS
use FS::cust_pay_batch; $record = new FS::cust_pay_batch \%hash; $record = new FS::cust_pay_batch { 'column' => 'value' }; $error = $record->insert; $error = $new_record->replace($old_record); $error = $record->delete; $error = $record->check; #deprecated# $error = $record->retriable;
DESCRIPTION
An FS::cust_pay_batch object represents a credit card transaction ready to be batched (sent to a processor). FS::cust_pay_batch inherits from FS::Record. Typically called by the collect method of an FS::cust_main object. The following fields are currently supported:
- paybatchnum - primary key (automatically assigned); batchnum - indentifies group in batch; payby - CARD/CHEK/LECB/BILL/COMP; payinfo; exp - card expiration; amount; invnum - invoice; custnum - customer; payname - name on card; first - name; last - name; address1; address2; city; state; zip; country; status
METHODS
- new HASHREF
- 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.
- 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. If there is an error, returns the error, otherwise returns false.
- 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 transaction. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.
- cust_main
- Returns the customer (see FS::cust_main) for this batched credit card payment.
- approve PAYBATCH
- Approve this payment. This will replace the existing record with the same paybatchnum, set its status to 'Approved', and generate a payment record (FS::cust_pay). This should only be called from the batch import process.
- decline [ REASON ]
- Decline this payment. This will replace the existing record with the same paybatchnum, set its status to 'Declined', and run collection events as appropriate. This should only be called from the batch import process.
- REASON is a string description of the decline reason, defaulting to 'Returned payment'.
BUGS
There should probably be a configuration file with a list of allowed credit card types.