cmc-sales/models/costing.php
2009-11-18 09:42:42 +11:00

33 lines
923 B
PHP
Executable file

<?php
class Costing extends AppModel {
var $name = 'Costing';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Product' => array('className' => 'Product',
'foreignKey' => 'product_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'QuoteProduct' => array('className'=>'QuoteProduct','foreignKey' => 'quote_product_id'
),
'PurchaseCurrency' => array('className' => 'Currency', 'foreignKey' => 'purchase_currency_id'),
'SaleCurrency' => array('className' => 'Currency', 'foreignKey' => 'sale_currency_id')
//'ProductOption' => array('className' => 'ProductOption', 'foreignKey' => 'product_option_id'),
//'QuoteProductOption'
);
}
?>