You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
11 years ago
|
<?php
|
||
|
|
||
|
namespace yiiunit\data\ar\elasticsearch;
|
||
|
|
||
|
/**
|
||
|
* Class Order
|
||
|
*
|
||
|
* @property integer $id
|
||
|
* @property integer $customer_id
|
||
|
* @property integer $create_time
|
||
|
* @property string $total
|
||
|
*/
|
||
|
class Order extends ActiveRecord
|
||
|
{
|
||
|
public static function columns()
|
||
|
{
|
||
|
return array(
|
||
|
'id' => 'integer',
|
||
|
'customer_id' => 'integer',
|
||
|
'create_time' => 'integer',
|
||
|
'total' => 'integer',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getCustomer()
|
||
|
{
|
||
|
return $this->hasOne('Customer', array('id' => 'customer_id'));
|
||
|
}
|
||
|
|
||
|
public function getOrderItems()
|
||
|
{
|
||
|
return $this->hasMany('OrderItem', array('order_id' => 'id'));
|
||
|
}
|
||
|
|
||
|
public function getItems()
|
||
|
{
|
||
|
return $this->hasMany('Item', array('id' => 'item_id'))
|
||
|
->via('orderItems', function ($q) {
|
||
|
// additional query configuration
|
||
|
})->orderBy('id');
|
||
|
}
|
||
|
|
||
|
public function getBooks()
|
||
|
{
|
||
|
return $this->hasMany('Item', array('id' => 'item_id'))
|
||
|
->viaTable('tbl_order_item', array('order_id' => 'id'))
|
||
|
->where(array('category_id' => 1));
|
||
|
}
|
||
|
|
||
|
public function beforeSave($insert)
|
||
|
{
|
||
|
if (parent::beforeSave($insert)) {
|
||
|
$this->create_time = time();
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|