Blame view

controllers/OrderController.php 6.24 KB
e0906f08   Alexey Boroda   -Fixing existing ...
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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
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
154
155
  <?php
      
      namespace artweb\artbox\ecommerce\controllers;
      
      use artweb\artbox\ecommerce\models\OrderSearch;
      use Yii;
      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();
          }
          
          public function actionDelete()
          {
              $model = Order::findOne($_GET[ 'id' ]);
              $model->delete();
              return Yii::$app->response->redirect([ '/order/index' ]);
          }
          
          public function actionAdd()
          {
              $model = new OrderProduct();
              if ($model->load(Yii::$app->request->post())) {
                  /**
                   * @var ProductVariant $modelMod
                   */
                  if (!$modelMod = ProductVariant::find()
                                                 ->with('product.lang')
                                                 ->with('lang')
                                                 ->where([ 'sku' => $model->sku ])
                                                 ->one()
                  ) {
                      throw new HttpException(404, 'Данного артикля не существует!');
                  }
                  $model->product_name = $modelMod->product->lang->title;
                  $model->name = $modelMod->lang->title;
                  $model->sku = $modelMod->sku;
                  $model->price = $modelMod->price;
                  $model->sum_cost = $model->count * $modelMod->price;
                  $model->product_variant_id = $modelMod->id;
                  $model->save();
                  //return Yii::$app->response->redirect(['/admin/order/show','id'=>$_GET['order_id']]);
              }
              
              //return $this->render('add',['model'=>$model]);
          }
          
          public function actionCreate()
          {
              $model = new Order();
              
              if ($model->load(Yii::$app->request->post()) && $model->save()) {
                  return $this->redirect([ 'index' ]);
              } else {
                  return $this->render(
                      'create',
                      [
                          'model' => $model,
                      ]
                  );
              }
          }
          
6f14188b   Alexey Boroda   -Product card fixed
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
          public function actionUpdate($id)
          {
              $model = $this->findModel($id);
      
              if ($model->load(Yii::$app->request->post()) && $model->save()) {
                  return $this->redirect([ 'index' ]);
              } else {
                  return $this->render(
                      'update',
                      [
                          'model' => $model,
                      ]
                  );
              }
          }
          
          public function actionDeleteProduct($id, $order_id)
e0906f08   Alexey Boroda   -Fixing existing ...
173
174
175
          {
              $model = OrderProduct::findOne($id);
              $model->delete();
6f14188b   Alexey Boroda   -Product card fixed
176
177
178
179
180
              \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
              return [
                  'result' => 'success',
                  'id'     => $id,
              ];
e0906f08   Alexey Boroda   -Fixing existing ...
181
182
183
184
          }
          
          protected function findModel($id)
          {
6f14188b   Alexey Boroda   -Product card fixed
185
              if (( $model = Order::findOne($id) ) !== NULL) {
e0906f08   Alexey Boroda   -Fixing existing ...
186
187
188
189
190
191
                  return $model;
              } else {
                  throw new NotFoundHttpException('The requested page does not exist.');
              }
          }
      }