Blame view

controllers/OrderController.php 12.2 KB
e0906f08   Alexey Boroda   -Fixing existing ...
1
2
3
4
5
  <?php
      
      namespace artweb\artbox\ecommerce\controllers;
      
      use artweb\artbox\ecommerce\models\OrderSearch;
2ad65823   Alexey Boroda   -Added date range...
6
      use phpDocumentor\Reflection\Types\Null_;
e0906f08   Alexey Boroda   -Fixing existing ...
7
      use Yii;
2ad65823   Alexey Boroda   -Added date range...
8
      use yii\helpers\ArrayHelper;
7520dc0e   Alexey Boroda   -Grid with input ...
9
      use yii\helpers\Json;
e0906f08   Alexey Boroda   -Fixing existing ...
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
      use yii\web\Controller;
      use yii\filters\VerbFilter;
      use yii\data\ActiveDataProvider;
      use yii\web\HttpException;
      use artweb\artbox\ecommerce\models\Order;
      use artweb\artbox\ecommerce\models\OrderProduct;
      use artweb\artbox\ecommerce\models\ProductVariant;
      use yii\web\NotFoundHttpException;
      use developeruz\db_rbac\behaviors\AccessBehavior;
      
      class OrderController extends Controller
      {
          /**
           * @inheritdoc
           */
          public function behaviors()
          {
              return [
                  'access' => [
                      'class' => AccessBehavior::className(),
                      'rules' => [
                          'site' => [
                              [
                                  'actions' => [
                                      'login',
                                      'error',
                                  ],
                                  'allow'   => true,
                              ],
                          ],
                      ],
                  ],
                  'verbs'  => [
                      'class'   => VerbFilter::className(),
                      'actions' => [
                          'delete' => [ 'POST' ],
                      ],
                  ],
              ];
          }
          
          public function actionIndex()
          {
              $searchModel = new OrderSearch();
              $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
              
              return $this->render(
                  'index',
                  [
                      'dataProvider' => $dataProvider,
                      'searchModel'  => $searchModel,
                  ]
              );
          }
          
          public function actionShow($id)
          {
              
              $model = $this->findModel((int) $id);
              $dataProvider = new ActiveDataProvider(
                  [
                      'query'      => OrderProduct::find()
                                                  ->where([ 'order_id' => (int) $id ]),
                      'pagination' => [
                          'pageSize' => 20,
                      ],
                  ]
              );
              if ($model->load(Yii::$app->request->post()) && $model->save()) {
                  return $this->redirect([ 'index' ]);
              } else {
                  $model_orderproduct = new OrderProduct();
                  
                  return $this->renderAjax(
                      'show',
                      [
                          'model'              => $model,
                          'model_orderproduct' => $model_orderproduct,
                          'dataProvider'       => $dataProvider,
                      ]
                  );
              }
          }
          
          public function actionLabelUpdate()
          {
              $model = Order::findOne($_POST[ 'order_id' ]);
              $model->label = $_POST[ 'label_id' ];
              $model->save();
          }
          
          public function actionPayUpdate()
          {
              $model = Order::findOne($_POST[ 'order_id' ]);
              $model->pay = $_POST[ 'pay_id' ];
              $model->save();
          }
          
2ad65823   Alexey Boroda   -Added date range...
108
          public function actionDelete($id)
e0906f08   Alexey Boroda   -Fixing existing ...
109
          {
2ad65823   Alexey Boroda   -Added date range...
110
111
112
113
114
              $model = OrderProduct::findOne($id);
              $orderId = $model->order_id;
              if ($model->delete()) {
                  return $this->actionUpdate($orderId);
              }
e0906f08   Alexey Boroda   -Fixing existing ...
115
116
117
118
          }
          
          public function actionAdd()
          {
2ad65823   Alexey Boroda   -Added date range...
119
120
121
              if (!empty( \Yii::$app->request->post() )) {
                  $id = \Yii::$app->request->post('OrderProduct')[ 'id' ];
                  $order_id = \Yii::$app->request->post('OrderProduct')[ 'order_id' ];
0893579c   Alexey Boroda   -Bug fixed
122
                  if (!empty( \Yii::$app->request->post('OrderProduct')[ 'count' ] )) {
2ad65823   Alexey Boroda   -Added date range...
123
                      $count = \Yii::$app->request->post('OrderProduct')[ 'count' ];
0893579c   Alexey Boroda   -Bug fixed
124
                  } else {
2ad65823   Alexey Boroda   -Added date range...
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
                      $count = 1;
                  }
                  $productVariant = ProductVariant::findOne($id);
                  
                  $model = OrderProduct::find()
                                       ->where(
                                           [
                                               'order_id' => $order_id,
                                           ]
                                       )
                                       ->andWhere(
                                           [
                                               'product_variant_id' => $id,
                                           ]
                                       )
                                       ->one();
                  
                  if (!empty( $model )) {
                      $model->count += $count;
                  } else {
                      $model = new OrderProduct();
                      
                      $model->order_id = $order_id;
                      $model->product_variant_id = $productVariant->id;
                      $model->product_name = $productVariant->product->lang->title;
                      $model->name = $productVariant->lang->title;
                      $model->sku = $productVariant->sku;
                      $model->price = $productVariant->price;
                      $model->count = $count;
e0906f08   Alexey Boroda   -Fixing existing ...
154
                  }
2ad65823   Alexey Boroda   -Added date range...
155
156
157
158
159
160
161
162
163
164
                  \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
                  
                  if ($model->save()) {
                      return [ 'status' => 'success' ];
                  } else {
                      return [ 'status' => 'fail' ];
                  }
                  
              } else {
                  throw new NotFoundHttpException();
e0906f08   Alexey Boroda   -Fixing existing ...
165
              }
e0906f08   Alexey Boroda   -Fixing existing ...
166
167
168
169
          }
          
          public function actionCreate()
          {
2ad65823   Alexey Boroda   -Added date range...
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
              if (\Yii::$app->request->post('hasEditable')) {
                  $orderProductId = \Yii::$app->request->post('editableKey');
                  $orderProduct = OrderProduct::findOne($orderProductId);
                  $out = Json::encode(
                      [
                          'output'  => '',
                          'message' => '',
                      ]
                  );
                  
                  $posted = current(\Yii::$app->request->post('OrderProduct'));
                  $post = [ 'OrderProduct' => $posted ];
                  
                  if ($orderProduct->load($post)) {
                      $orderProduct->save();
                      $output = '';
                      if (isset( $posted[ 'count' ] )) {
                          $output = Yii::$app->formatter->asDecimal($orderProduct->count, 0);
                      }
                      $out = Json::encode(
                          [
                              'output'  => $output,
                              'message' => '',
                          ]
                      );
                  }
                  
                  return $out;
              }
              
e0906f08   Alexey Boroda   -Fixing existing ...
200
201
              $model = new Order();
              
7520dc0e   Alexey Boroda   -Grid with input ...
202
203
              $dataProvider = new ActiveDataProvider(
                  [
0893579c   Alexey Boroda   -Bug fixed
204
205
                      'query' => $model->getProducts()
                                       ->joinWith('productVariant'),
7520dc0e   Alexey Boroda   -Grid with input ...
206
207
208
                  ]
              );
              
e0906f08   Alexey Boroda   -Fixing existing ...
209
210
211
212
213
214
              if ($model->load(Yii::$app->request->post()) && $model->save()) {
                  return $this->redirect([ 'index' ]);
              } else {
                  return $this->render(
                      'create',
                      [
7520dc0e   Alexey Boroda   -Grid with input ...
215
216
                          'model'        => $model,
                          'dataProvider' => $dataProvider,
e0906f08   Alexey Boroda   -Fixing existing ...
217
218
219
220
                      ]
                  );
              }
          }
0893579c   Alexey Boroda   -Bug fixed
221
222
223
          
          public function actionPrint()
          {
54e2e678   Administrator   slider
224
              $orderId = Yii::$app->request->get("order_id");
0893579c   Alexey Boroda   -Bug fixed
225
              if (!empty( $orderId )) {
54e2e678   Administrator   slider
226
                  $order = $this->findModel($orderId);
0893579c   Alexey Boroda   -Bug fixed
227
228
229
230
231
232
                  return $this->renderPartial(
                      '@frontend/views/cabinet/order_print',
                      [
                          'order' => $order,
                      ]
                  );
54e2e678   Administrator   slider
233
234
235
              } else {
                  throw new NotFoundHttpException('The requested page does not exist.');
              }
0893579c   Alexey Boroda   -Bug fixed
236
              
54e2e678   Administrator   slider
237
          }
0893579c   Alexey Boroda   -Bug fixed
238
          
6f14188b   Alexey Boroda   -Product card fixed
239
240
          public function actionUpdate($id)
          {
2ad65823   Alexey Boroda   -Added date range...
241
              if (\Yii::$app->request->post('hasEditable')) {
7520dc0e   Alexey Boroda   -Grid with input ...
242
243
                  $orderProductId = \Yii::$app->request->post('editableKey');
                  $orderProduct = OrderProduct::findOne($orderProductId);
2ad65823   Alexey Boroda   -Added date range...
244
245
246
247
248
249
250
                  $out = Json::encode(
                      [
                          'output'  => '',
                          'message' => '',
                      ]
                  );
                  
7520dc0e   Alexey Boroda   -Grid with input ...
251
                  $posted = current(\Yii::$app->request->post('OrderProduct'));
2ad65823   Alexey Boroda   -Added date range...
252
                  $post = [ 'OrderProduct' => $posted ];
7520dc0e   Alexey Boroda   -Grid with input ...
253
                  
2ad65823   Alexey Boroda   -Added date range...
254
                  if ($orderProduct->load($post)) {
7520dc0e   Alexey Boroda   -Grid with input ...
255
256
                      $orderProduct->save();
                      $output = '';
2ad65823   Alexey Boroda   -Added date range...
257
                      if (isset( $posted[ 'count' ] )) {
7520dc0e   Alexey Boroda   -Grid with input ...
258
259
                          $output = Yii::$app->formatter->asDecimal($orderProduct->count, 0);
                      }
2ad65823   Alexey Boroda   -Added date range...
260
261
262
263
264
265
                      $out = Json::encode(
                          [
                              'output'  => $output,
                              'message' => '',
                          ]
                      );
7520dc0e   Alexey Boroda   -Grid with input ...
266
                  }
2ad65823   Alexey Boroda   -Added date range...
267
                  
7520dc0e   Alexey Boroda   -Grid with input ...
268
269
270
271
272
273
274
                  return $out;
              }
              
              $model = $this->findModel($id);
              
              $dataProvider = new ActiveDataProvider(
                  [
0893579c   Alexey Boroda   -Bug fixed
275
276
                      'query' => $model->getProducts()
                                       ->joinWith('productVariant.product.brand'),
7520dc0e   Alexey Boroda   -Grid with input ...
277
278
279
                  ]
              );
              
6f14188b   Alexey Boroda   -Product card fixed
280
281
282
283
284
285
              if ($model->load(Yii::$app->request->post()) && $model->save()) {
                  return $this->redirect([ 'index' ]);
              } else {
                  return $this->render(
                      'update',
                      [
7520dc0e   Alexey Boroda   -Grid with input ...
286
287
                          'model'        => $model,
                          'dataProvider' => $dataProvider,
6f14188b   Alexey Boroda   -Product card fixed
288
289
290
291
292
                      ]
                  );
              }
          }
          
2ad65823   Alexey Boroda   -Added date range...
293
          public function actionFindProduct($q = NULL, $id = NULL)
e0906f08   Alexey Boroda   -Fixing existing ...
294
          {
6f14188b   Alexey Boroda   -Product card fixed
295
              \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
2ad65823   Alexey Boroda   -Added date range...
296
297
              $out = [
                  'results' => [
0893579c   Alexey Boroda   -Bug fixed
298
299
                      'id'  => '',
                      'sku' => '',
2ad65823   Alexey Boroda   -Added date range...
300
                  ],
6f14188b   Alexey Boroda   -Product card fixed
301
              ];
2ad65823   Alexey Boroda   -Added date range...
302
303
              if (!is_null($q)) {
                  $result = ProductVariant::find()
0893579c   Alexey Boroda   -Bug fixed
304
305
306
307
308
309
310
311
  //                                        ->select(
  //                                            [
  //                                                'id',
  //                                                'sku',
  //                                                'product_lang.title AS name'
  //                                            ]
  //                                        )
                                          ->joinWith('product.lang')
2ad65823   Alexey Boroda   -Added date range...
312
313
314
315
316
317
318
319
320
321
322
323
324
                                          ->where(
                                              [
                                                  'like',
                                                  'sku',
                                                  $q,
                                              ]
                                          )
                                          ->limit(20)
                                          ->asArray()
                                          ->all();
                  
                  $out[ 'results' ] = $result;
              }
2ad65823   Alexey Boroda   -Added date range...
325
              return $out;
e0906f08   Alexey Boroda   -Fixing existing ...
326
327
          }
          
2ad65823   Alexey Boroda   -Added date range...
328
329
330
331
332
333
334
335
336
337
338
          //        public function actionDeleteProduct($id, $order_id)
          //        {
          //            $model = OrderProduct::findOne($id);
          //            $model->delete();
          //            \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
          //            return [
          //                'result' => 'success',
          //                'id'     => $id,
          //            ];
          //        }
          
e0906f08   Alexey Boroda   -Fixing existing ...
339
340
          protected function findModel($id)
          {
6f14188b   Alexey Boroda   -Product card fixed
341
              if (( $model = Order::findOne($id) ) !== NULL) {
e0906f08   Alexey Boroda   -Fixing existing ...
342
343
344
345
346
347
                  return $model;
              } else {
                  throw new NotFoundHttpException('The requested page does not exist.');
              }
          }
      }