cmc-sales/models/line_item.php

41 lines
643 B
PHP
Executable file

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