Blame view

frontend/models/ProductFrontendSearch.php 8.94 KB
3f2bc3d0   Administrator   first commit
1
2
3
4
  <?php

  

  namespace frontend\models;

  

a0be9a4d   Karnovsky A   30062016
5
  use common\modules\product\helpers\ProductHelper;

3f2bc3d0   Administrator   first commit
6
  use common\modules\product\models\Brand;

8724ec1f   Karnovsky A   -
7
8
  use common\modules\product\models\BrandName;

  use common\modules\product\models\CategoryName;

3f2bc3d0   Administrator   first commit
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
41
42
43
44
45
46
47
48
49
50
  use common\modules\product\models\ProductCategory;

  use common\modules\product\models\ProductOption;

  use common\modules\product\models\ProductSearch;

  use common\modules\rubrication\models\TaxGroup;

  use common\modules\rubrication\models\TaxOption;

  use Yii;

  use yii\base\Model;

  use yii\data\ActiveDataProvider;

  use yii\db\ActiveQuery;

  use yii\db\ActiveRecord;

  use yii\web\NotFoundHttpException;

  use common\modules\product\models\Product;

  use common\modules\product\models\ProductVariant;

  

  class ProductFrontendSearch extends Product {

      /**

       * @inheritdoc

       */

      public function rules()

      {

          return [

              [['price_interval', 'brands'], 'safe'],

          ];

      }

  

      /**

       * @inheritdoc

       */

      public function scenarios()

      {

          // bypass scenarios() implementation in the parent class

          return Model::scenarios();

      }

  

      /**

       * Creates data provider instance with search query applied for frontend

       *

       * @param array $params

       *

       * @return ActiveDataProvider

       */

      public function search($category = null, $params = []) {

aa5c63f4   Yarik   Filter fixing
51
          

3f2bc3d0   Administrator   first commit
52
          $dataProvider = new ActiveDataProvider([

09af7db9   Karnovsky A   Fix filter
53
              'query' => $this->getSearchQuery($category, $params),

3f2bc3d0   Administrator   first commit
54
              'pagination' => [

4902c747   Karnovsky A   -
55
                  'pageSize' => 16,

3f2bc3d0   Administrator   first commit
56
57
58
59
60
61
62
63
64
65
66
67
68
              ],

              'sort' => [

                  'attributes' => [

                      'name' => [

                          'asc' => ['name' => SORT_ASC],

                          'desc' => ['name' => SORT_DESC],

                          'default' => SORT_DESC,

                          'label' => 'имени',

                      ],

                      'price' => [

                          'asc' => [ProductVariant::tableName() .'.price' => SORT_ASC],

                          'desc' => [ProductVariant::tableName() .'.price' => SORT_DESC],

                          'default' => SORT_DESC,

49c47c76   Karnovsky A   -
69
                          'label' => 'по цене',

3f2bc3d0   Administrator   first commit
70
71
72
73
74
75
76
77
78
                      ],

                  ],

              ]

          ]);

  

          if (!$this->validate()) {

              return $dataProvider;

          }

  

09af7db9   Karnovsky A   Fix filter
79
80
81
82
83
  

  

          return $dataProvider;

      }

  

e4cea6a9   Administrator   rm node nodule
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  

      /**

       * Creates data provider instance with search query applied for frontend

       *

       * @param array $params

       *

       * @return ActiveDataProvider

       */

      public function searchItem($category = null, $params = []) {

  

          $dataProvider = new ActiveDataProvider([

              'query' => $this->getSearch($category, $params),

              'pagination' => [

                  'pageSize' => 16,

              ],

              'sort' => [

                  'attributes' => [

                      'name' => [

                          'asc' => ['name' => SORT_ASC],

                          'desc' => ['name' => SORT_DESC],

                          'default' => SORT_DESC,

                          'label' => 'имени',

                      ],

                      'price' => [

                          'asc' => [ProductVariant::tableName() .'.price' => SORT_ASC],

                          'desc' => [ProductVariant::tableName() .'.price' => SORT_DESC],

                          'default' => SORT_DESC,

                          'label' => 'по цене',

                      ],

                  ],

              ]

          ]);

  

          if (!$this->validate()) {

              return $dataProvider;

          }

  

  

  

          return $dataProvider;

      }

  

09af7db9   Karnovsky A   Fix filter
126
127
128
129
130
131
132
133
134
      public function getSearchQuery($category = null, $params = []) {

          if (!empty($category)) {

              /** @var ActiveQuery $query */

  //            $query = $category->getRelations('product_categories');

              $query = $category->getProducts();

          } else {

              $query = Product::find();

          }

          $query->select(['product.*']);

1b898c16   Administrator   20.07.16
135
          $query->joinWith(['enabledVariants','brand', 'brand.brandName', 'category', 'category.categoryName']);

09af7db9   Karnovsky A   Fix filter
136
137
138
  

          $query->groupBy(['product.product_id', 'product_variant.price']);

  

a0be9a4d   Karnovsky A   30062016
139
          ProductHelper::_setQueryParams($query, $params);

3f2bc3d0   Administrator   first commit
140
  

3147aab1   Karnovsky A   Fix search with s...
141
142
          $query->andWhere(['!=', ProductVariant::tableName() .'.stock', 0]);

  

09af7db9   Karnovsky A   Fix filter
143
          return $query;

3f2bc3d0   Administrator   first commit
144
145
      }

  

e4cea6a9   Administrator   rm node nodule
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
      public function getSearch($category = null, $params = []) {

          if (!empty($category)) {

              /** @var ActiveQuery $query */

  //            $query = $category->getRelations('product_categories');

              $query = $category->getProducts();

          } else {

              $query = Product::find();

          }

          $query->select(['product.*']);

          $query->joinWith(['variants','brand', 'brand.brandName', 'category', 'category.categoryName']);

  

          $query->groupBy(['product.product_id', 'product_variant.price']);

  

          ProductHelper::_setQueryParams($query, $params);

  

  

1d13b8aa   Administrator   rm node nodule
162
          return $query->orderBy('product_variant.price DESC');

e4cea6a9   Administrator   rm node nodule
163
164
      }

  

3f2bc3d0   Administrator   first commit
165
      public function optionsForCategory($category = null, $params = []) {

3f2bc3d0   Administrator   first commit
166
167
          $query = TaxOption::find()

              ->select([

9d539ac3   Karnovsky A   Brands and option...
168
                  TaxOption::tableName() .'.*',

3f2bc3d0   Administrator   first commit
169
              ])

09af7db9   Karnovsky A   Fix filter
170
              ->leftJoin(ProductOption::tableName(), ProductOption::tableName() .'.option_id='. TaxOption::tableName() .'.tax_option_id')

1b898c16   Administrator   20.07.16
171
              ->joinWith('taxGroup')

9d539ac3   Karnovsky A   Brands and option...
172
173
              ->where([TaxGroup::tableName() .'.is_filter' => true]);

  

09af7db9   Karnovsky A   Fix filter
174
          $query->innerJoin('product_variant', 'product_variant.product_id = '. ProductOption::tableName() .'.product_id');

9d539ac3   Karnovsky A   Brands and option...
175
176
177
178
          $query->andWhere(['!=', 'product_variant.stock', 0]);

          $query->groupBy(TaxOption::tableName() .'.tax_option_id');

  //        $query->having(['>', 'COUNT(product_variant.product_variant_id)', 0]);

  

3f2bc3d0   Administrator   first commit
179
          if (!empty($category)) {

09af7db9   Karnovsky A   Fix filter
180
              $query->innerJoin(ProductCategory::tableName(), ProductCategory::tableName() .'.product_id='. ProductOption::tableName() .'.product_id');

3f2bc3d0   Administrator   first commit
181
182
              $query->andWhere([ProductCategory::tableName() .'.category_id' => $category->category_id]);

          }

9d539ac3   Karnovsky A   Brands and option...
183
  

163914fd   Karnovsky A   -
184
          $query->orderBy(TaxOption::tableName() .'.sort', SORT_ASC);

c34b3aa0   Karnovsky A   -
185
          $query->limit(null);

09af7db9   Karnovsky A   Fix filter
186
  

1b898c16   Administrator   20.07.16
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
  //        $queryCount = ProductOption::find()

  //            ->select(['COUNT('. ProductOption::tableName() .'.product_id)'])

  //            ->where(ProductOption::tableName() .'.option_id = '. TaxOption::tableName() .'.tax_option_id');

  //        $queryCount->andWhere('(SELECT COUNT(pv.product_variant_id) FROM "product_variant" "pv" WHERE pv.stock != 0 AND pv.product_id = '. ProductOption::tableName() .'.product_id) > 0');

  //        if (!empty($category)) {

  //            $queryCount->andWhere('(SELECT COUNT(pc.product_id) FROM product_category pc WHERE pc.product_id = '. ProductOption::tableName() .'.product_id AND pc.category_id = '. $category->category_id .') > 0');

  //        }

  //        if (!empty($params['options'])) {

  //            $queryCount->innerJoin('tax_option', 'tax_option.tax_option_id = product_option.option_id');

  //            $queryCount->innerJoin('tax_group', 'tax_group.tax_group_id = tax_option.tax_group_id');

  //            foreach ($params['options'] as $group => $options) {

  //                $queryCount->andWhere([

  //                    'tax_group.alias' => $group,

  //                    'tax_option.alias' => $options

  //                ]);

  //            }

  //        }

  //        if (!empty($params['brands'])) {

  //            $queryCount->innerJoin(Product::tableName(), 'product.product_id='. ProductOption::tableName() .'.product_id');

  //            $queryCount->andWhere(['product.brand_id' => $params['brands']]);

  //        }

  //        if (!empty($params['prices'])) {

  //            if ($params['prices']['min'] > 0) {

  //                $queryCount->andWhere(['>=', 'pv.price', $params['prices']['min']]);

  //            }

  //            if ($params['prices']['max'] > 0) {

  //                $queryCount->andWhere(['<=', 'pv.price', $params['prices']['max']]);

  //            }

  //        }

103e8126   Karnovsky A   Remove ITEMS_COUN...
216
  //        $query->addSelect(['_items_count' => $queryCount]);

3f2bc3d0   Administrator   first commit
217
  

8724ec1f   Karnovsky A   -
218
          return $query;

3f2bc3d0   Administrator   first commit
219
220
221
222
223
      }

  

      public function priceLimits($category = null, $params = []) {

          if (!empty($category)) {

              /** @var ActiveQuery $query */

8724ec1f   Karnovsky A   -
224
225
  //            $query = $category->getRelations('product_categories');

              $query = $category->getProducts();

3f2bc3d0   Administrator   first commit
226
227
228
229
230
          } else {

              $query = Product::find();

          }

          $query->joinWith('variant');

  

d4859b79   Yarik   Price slider fix
231
232
233
          // Price filter fix

          unset($params['prices']);

          

a0be9a4d   Karnovsky A   30062016
234
          ProductHelper::_setQueryParams($query, $params, false);

3f2bc3d0   Administrator   first commit
235
236
237
238
239
240
241
242
243
244
245
  

  //        $query->select([

  //            'MIN('. ProductVariant::tableName() .'.price) AS priceMIN',

  //            'MAX('. ProductVariant::tableName() .'.price) AS priceMAX',

  //        ]);

  

          return [

              'min' => $query->min(ProductVariant::tableName() .'.price'),

              'max' => $query->max(ProductVariant::tableName() .'.price'),

          ];

      }

3f2bc3d0   Administrator   first commit
246
  }