cmc-sales/models/costing.php
2009-10-08 19:42:23 +11:00

28 lines
532 B
PHP

<?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'
)
);
}
?>