Yii2 Bootstrap 3
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.

36 lines
726 B

13 years ago
<?php
namespace yiiunit\data\ar;
class Order extends ActiveRecord
{
12 years ago
public static function tableName()
13 years ago
{
return 'tbl_order';
}
13 years ago
public function getCustomer()
13 years ago
{
12 years ago
return $this->hasOne('Customer', array('id' => 'customer_id'));
}
public function getOrderItems()
12 years ago
{
return $this->hasMany('OrderItem', array('order_id' => 'id'));
}
public function getItems()
12 years ago
{
return $this->hasMany('Item', array('id' => 'item_id'))
->via('orderItems', function($q) {
// additional query configuration
})->orderBy('id');
12 years ago
}
public function getBooks()
13 years ago
{
12 years ago
return $this->hasMany('Item', array('id' => 'item_id'))
12 years ago
->viaTable('tbl_order_item', array('order_id' => 'id'))
12 years ago
->where(array('category_id' => 1));
12 years ago
}
13 years ago
}