Blame view

common/models/OrdersProducts.php 913 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  <?php
  
  namespace common\models;
  
  use common\modules\product\models\ProductVariant;
  
  class OrdersProducts extends \yii\db\ActiveRecord
  {
      public static function tableName()
      {
          return 'orders_products';
      }
      
      public function rules()
      {
          return [
              [['order_id'], 'required'],
              //['email', 'email'],
              [['product_name','name','price','count','sum_cost','mod_id','sku'], 'safe'],
          ];
      }
      
      
  	public function attributeLabels()
  	{
  		return [
  			'product_name'=>'Продукт',
  			'name'=>'Вид',
                          'art'=>'Артикул',
                          'cost'=>'Цена за один',
  			'count'=>'Кол.',
                          'sum_cost'=>'Сумма',
  		];
  	}
  
      public function getProductVariant()
      {
          return $this->hasOne(ProductVariant::className(), ['product_variant_id' => 'mod_id']);
      }
  }