git-svn-id: file:///svn-source/pmgr/branches/invoice_receipt_20090629@195 97e9348a-65ac-dc4b-aefc-98561f571b83
16 lines
327 B
PHP
16 lines
327 B
PHP
<?php
|
|
class Reconciliation extends AppModel {
|
|
|
|
var $belongsTo = array(
|
|
'DebitLedgerEntry' => array(
|
|
'className' => 'LedgerEntry',
|
|
//'foreignKey' => 'credit_ledger_entry_id',
|
|
),
|
|
'CreditLedgerEntry' => array(
|
|
'className' => 'LedgerEntry',
|
|
//'foreignKey' => 'credit_ledger_entry_id',
|
|
),
|
|
);
|
|
|
|
}
|