CORE POS - Fannie
The CORE POS back end
Public Member Functions | Protected Attributes | List of all members
GumLoanAccountsModel Class Reference
Inheritance diagram for GumLoanAccountsModel:
BasicModel

Public Member Functions

 gumLoanAccountID ()
 
 card_no ()
 
 accountNumber ()
 
 loanDate ()
 
 principal ()
 
 termInMonths ()
 
 interestRate ()
 
- Public Member Functions inherited from BasicModel
 db ()
 
 preferredDB ()
 
 setConfig ($c)
 
 __construct ($con)
 
 whichDB ($db_name)
 
 getDefinition ()
 
 create ()
 
 createIfNeeded ($db_name)
 
 load ()
 
 reset ()
 
 getColumns ()
 
 getName ()
 
 getFullQualifiedName ()
 
 find ($sort='', $reverse=false)
 
 delete ()
 
 save ()
 
 pushToLanes ()
 
 deleteFromLanes ()
 
 normalize ($db_name, $mode=BasicModel::NORMALIZE_MODE_CHECK, $doCreate=False)
 
 doc ()
 
 generate ($filename)
 
 newModel ($name, $as_view=false)
 
 getModels ()
 
 toJSON ()
 

Protected Attributes

 $name = "GumLoanAccounts"
 
 $columns
 
 $unique = array('accountNumber')
 
- Protected Attributes inherited from BasicModel
 $name
 
 $fq_name
 
 $columns = array()
 
 $unique = array()
 
 $meta_types
 
 $connection = false
 
 $record_changed = false
 
 $instance = array()
 
 $filters = array()
 
 $normalize_lanes = false
 
 $currently_normalizing_lane = false
 
 $cached_definition = false
 
 $config
 
 $preferred_db = ''
 
 $hooks = array()
 

Additional Inherited Members

- Public Attributes inherited from BasicModel
const NORMALIZE_MODE_CHECK = 1
 
const NORMALIZE_MODE_APPLY = 2
 
- Protected Member Functions inherited from BasicModel
 getMeta ($type, $dbms)
 
 validateOp ($operator)
 
 insertRecord ()
 
 updateRecord ()
 
 normalizeLanes ($db_name, $mode=BasicModel::NORMALIZE_MODE_CHECK, $doCreate=False)
 
 loadHooks ()
 

Detailed Description

This table stores member loans/bonds. The fields are pretty straightforward. Note that a given member may have multiple loan accounts so card_no is not necessarily unique; gumLoanAccountID and accountNumber are both unique.

When loans are paid back, an entry for that check is created in GumPayoffs. That table can be joined to this table via GumLoanPayoffMap.

Member Data Documentation

GumLoanAccountsModel::$columns
protected
Initial value:
= array(
'gumLoanAccountID' => array('type'=>'INT', 'increment'=>true, 'primary_key'=>true),
'card_no' => array('type'=>'INT', 'index'=>true),
'accountNumber' => array('type'=>'VARCHAR(25)', 'index'=>true),
'loanDate' => array('type'=>'datetime'),
'principal' => array('type'=>'MONEY'),
'termInMonths' => array('type'=>'INT'),
'interestRate' => array('type'=>'DOUBLE'),
)

The documentation for this class was generated from the following file: