cmc-sales/models/currency.php

39 lines
912 B
PHP
Executable file

<?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' => ''
)
);
var $order = "Currency.name ASC";
}
?>