Order.php 2.04 KB
Newer Older
1 2 3
<?php

namespace yiiunit\data\ar\elasticsearch;
AlexGx committed
4

5
use yii\elasticsearch\Command;
6 7 8 9 10 11

/**
 * Class Order
 *
 * @property integer $id
 * @property integer $customer_id
Alexander Kochetov committed
12
 * @property integer $created_at
13 14 15 16
 * @property string $total
 */
class Order extends ActiveRecord
{
17 18
	public static function primaryKey()
	{
19
		return ['id'];
20 21
	}

22
	public function attributes()
23
	{
Alexander Kochetov committed
24
		return ['id', 'customer_id', 'created_at', 'total'];
25 26 27 28
	}

	public function getCustomer()
	{
29
		return $this->hasOne(Customer::className(), ['id' => 'customer_id']);
30 31 32 33
	}

	public function getOrderItems()
	{
34
		return $this->hasMany(OrderItem::className(), ['order_id' => 'id']);
35 36 37 38
	}

	public function getItems()
	{
39
		return $this->hasMany(Item::className(), ['id' => 'item_id'])
40
			->via('orderItems')->orderBy('id');
41 42
	}

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

	public function getItemsInOrder2()
	{
		return $this->hasMany(Item::className(), ['id' => 'item_id'])
			->via('orderItems', function ($q) {
				$q->orderBy(['subtotal' => SORT_DESC]);
			})->orderBy('name');
	}

59 60
//	public function getBooks()
//	{
61 62
//		return $this->hasMany('Item', ['id' => 'item_id'])
//			->viaTable('tbl_order_item', ['order_id' => 'id'])
63 64
//			->where(['category_id' => 1]);
//	}
65 66 67 68

	public function beforeSave($insert)
	{
		if (parent::beforeSave($insert)) {
Alexander Kochetov committed
69
//			$this->created_at = time();
70 71 72 73 74
			return true;
		} else {
			return false;
		}
	}
75 76 77 78 79 80 81 82 83 84 85 86 87

	/**
	 * sets up the index for this record
	 * @param Command $command
	 */
	public static function setUpMapping($command)
	{
		$command->deleteMapping(static::index(), static::type());
		$command->setMapping(static::index(), static::type(), [
			static::type() => [
				"_id" => ["path" => "id", "index" => "not_analyzed", "store" => "yes"],
				"properties" => [
					"customer_id" => ["type" => "integer"],
Alexander Kochetov committed
88
//					"created_at" => ["type" => "string", "index" => "not_analyzed"],
89 90 91 92 93 94
					"total" => ["type" => "integer"],
				]
			]
		]);

	}
95
}