git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716@360 97e9348a-65ac-dc4b-aefc-98561f571b83
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
class DoubleEntry extends AppModel {
|
|
|
|
var $belongsTo = array(
|
|
'DebitEntry' => array(
|
|
'className' => 'LedgerEntry',
|
|
),
|
|
'CreditEntry' => array(
|
|
'className' => 'LedgerEntry',
|
|
),
|
|
);
|
|
|
|
}
|