cmc-sales/models/line_item.php

48 lines
792 B
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',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Product' => array('className' => 'Product',
'foreignKey' => 'product_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
);
var $hasOne = array(
'Costing' => array('className' => 'Costing',
'foreignKey' => 'line_item_id')
);
var $order = "item_number ASC";
}
?>