cmc-sales/models/line_item.php

55 lines
1.1 KiB
PHP
Raw Normal View History

<?php
class LineItem extends AppModel {
var $name = 'LineItem';
/**
* @var QuoteProduct;
*
*/
var $LineItem;
//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',
2010-03-15 15:59:08 -07:00
'counterCache' => true,
'conditions' => '',
'fields' => '',
'order' => ''
),
'Product' => array('className' => 'Product',
'foreignKey' => 'product_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Principle' => array('className' => 'Principle',
'foreignKey' =>'principle_id'),
'Page' => array('className'=>'Page',
'foreignKey'=>'page_id')
);
var $hasOne = array(
'Costing' => array('className' => 'Costing',
'foreignKey' => 'line_item_id')
);
2010-03-15 15:59:08 -07:00
var $order = "LineItem.item_number ASC";
}
?>