git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@71 97e9348a-65ac-dc4b-aefc-98561f571b83
37 lines
697 B
PHP
37 lines
697 B
PHP
<?php
|
|
class Transaction extends AppModel {
|
|
|
|
var $name = 'Transaction';
|
|
var $validate = array(
|
|
'id' => array('numeric'),
|
|
'stamp' => array('time')
|
|
);
|
|
|
|
var $belongsTo = array(
|
|
'Customer' => array(
|
|
'className' => 'Customer',
|
|
'foreignKey' => 'customer_id',
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''
|
|
),
|
|
);
|
|
|
|
var $hasMany = array(
|
|
'LedgerEntry' => array(
|
|
'className' => 'LedgerEntry',
|
|
'foreignKey' => 'transaction_id',
|
|
'dependent' => false,
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => '',
|
|
'limit' => '',
|
|
'offset' => '',
|
|
'exclusive' => '',
|
|
'finderQuery' => '',
|
|
'counterQuery' => ''
|
|
)
|
|
);
|
|
|
|
}
|
|
?>
|