Order.php 2.07 KB
Newer Older
Qiang Xue committed
1 2 3 4
<?php

namespace yiiunit\data\ar;

5 6 7 8 9
/**
 * Class Order
 *
 * @property integer $id
 * @property integer $customer_id
Alexander Kochetov committed
10
 * @property integer $created_at
11 12
 * @property string $total
 */
Qiang Xue committed
13 14
class Order extends ActiveRecord
{
15 16 17 18
    public static function tableName()
    {
        return 'tbl_order';
    }
Qiang Xue committed
19

20 21 22 23
    public function getCustomer()
    {
        return $this->hasOne(Customer::className(), ['id' => 'customer_id']);
    }
Qiang Xue committed
24

25 26 27 28
    public function getCustomer2()
    {
        return $this->hasOne(Customer::className(), ['id' => 'customer_id'])->inverseOf('orders2');
    }
29

30 31 32 33
    public function getOrderItems()
    {
        return $this->hasMany(OrderItem::className(), ['order_id' => 'id']);
    }
Qiang Xue committed
34

35 36 37 38 39 40 41
    public function getItems()
    {
        return $this->hasMany(Item::className(), ['id' => 'item_id'])
            ->via('orderItems', function ($q) {
                // additional query configuration
            })->orderBy('id');
    }
Qiang Xue committed
42

43 44 45 46 47 48 49
    public function getItemsInOrder1()
    {
        return $this->hasMany(Item::className(), ['id' => 'item_id'])
            ->via('orderItems', function ($q) {
                $q->orderBy(['subtotal' => SORT_ASC]);
            })->orderBy('name');
    }
50

51 52 53 54 55 56 57
    public function getItemsInOrder2()
    {
        return $this->hasMany(Item::className(), ['id' => 'item_id'])
            ->via('orderItems', function ($q) {
                $q->orderBy(['subtotal' => SORT_DESC]);
            })->orderBy('name');
    }
58

59 60 61 62 63 64
    public function getBooks()
    {
        return $this->hasMany(Item::className(), ['id' => 'item_id'])
            ->viaTable('tbl_order_item', ['order_id' => 'id'])
            ->where(['category_id' => 1]);
    }
Qiang Xue committed
65

66 67 68 69 70 71
    public function getBooks2()
    {
        return $this->hasMany(Item::className(), ['id' => 'item_id'])
            ->onCondition(['category_id' => 1])
            ->viaTable('tbl_order_item', ['order_id' => 'id']);
    }
72

73 74 75 76 77 78 79 80 81 82
    public function beforeSave($insert)
    {
        if (parent::beforeSave($insert)) {
            $this->created_at = time();

            return true;
        } else {
            return false;
        }
    }
Zander Baldwin committed
83
}