cmc-sales/models/currency.php

39 lines
903 B
PHP
Raw Normal View History

<?php
class Currency extends AppModel {
var $name = 'Currency';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $hasMany = array(
'Country' => array('className' => 'Country',
'foreignKey' => 'currency_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
),
'Principle' => array('className' => 'Principle',
'foreignKey' => 'currency_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
2010-02-04 08:30:49 -08:00
);
2012-03-02 13:01:31 -08:00
var $order = "name ASC";
}
?>