cmc-sales/models/quote_product.php

48 lines
808 B
PHP
Raw Normal View History

<?php
class QuoteProduct extends AppModel {
var $name = 'QuoteProduct';
/**
* @var QuoteProduct;
*
*/
var $QuoteProduct;
2009-11-15 19:31:10 -08:00
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Quote' => array('className' => 'Quote',
'foreignKey' => 'quote_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Product' => array('className' => 'Product',
'foreignKey' => 'product_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
);
var $hasOne = array(
'Costing' => array('className' => 'Costing',
2009-11-16 14:24:53 -08:00
'foreignKey' => 'quote_product_id')
);
2009-11-16 14:24:53 -08:00
2009-11-15 19:31:10 -08:00
var $order = "item_number ASC";
}
2009-10-10 00:06:46 -07:00
?>