8df8067a
Administrator
basket
|
1
2
3
4
|
<?php
namespace backend\controllers;
|
94984376
Administrator
add active menu
|
5
|
use backend\models\OrdersSearch;
|
8df8067a
Administrator
basket
|
6
7
|
use Yii;
use yii\web\Controller;
|
8df8067a
Administrator
basket
|
8
9
10
|
use yii\filters\VerbFilter;
use yii\data\ActiveDataProvider;
use yii\web\HttpException;
|
4994ab9e
Eugeny Galkovskiy
150616
|
11
|
use common\models\Orders;
|
8df8067a
Administrator
basket
|
12
13
|
use backend\models\OrdersProducts;
use common\modules\product\models\ProductVariant;
|
94984376
Administrator
add active menu
|
14
|
use yii\web\NotFoundHttpException;
|
d8d0c38c
Administrator
add active menu
|
15
|
use developeruz\db_rbac\behaviors\AccessBehavior;
|
8df8067a
Administrator
basket
|
16
17
18
|
class OrdersController extends Controller
{
|
8df8067a
Administrator
basket
|
19
20
21
22
23
24
|
/**
* @inheritdoc
*/
public function behaviors()
{
return [
|
d8d0c38c
Administrator
add active menu
|
25
26
27
28
29
30
31
32
33
34
35
36
|
'access'=>[
'class' => AccessBehavior::className(),
'rules' =>
['site' =>
[
[
'actions' => ['login', 'error'],
'allow' => true,
]
]
]
],
|
8df8067a
Administrator
basket
|
37
38
39
40
41
42
43
44
45
46
47
|
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
public function actionIndex()
{
|
94984376
Administrator
add active menu
|
48
49
50
|
$searchModel = new OrdersSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
8df8067a
Administrator
basket
|
51
52
53
54
55
56
57
58
59
60
61
|
return $this->render('index', [
'dataProvider'=>$dataProvider,
'searchModel'=>$searchModel,
]);
}
public function actionShow($id)
{
$model = $this->findModel((int)$id);
$dataProvider = new ActiveDataProvider([
|
d8d0c38c
Administrator
add active menu
|
62
|
'query' => OrdersProducts::find()->where(['order_id'=>(int)$id]),
|
8df8067a
Administrator
basket
|
63
64
65
66
67
68
69
70
71
72
|
'pagination' => [
'pageSize' => 20,
],
]);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['index']);
} else {
$model_orderproducts = new OrdersProducts;
|
94984376
Administrator
add active menu
|
73
|
return $this->renderAjax('show', [
|
8df8067a
Administrator
basket
|
74
75
76
77
78
79
80
81
82
83
84
|
'model' => $model,
'model_orderproducts'=>$model_orderproducts,
'dataProvider' => $dataProvider,
]);
}
}
public function actionLabelupdate(){
$model = Orders::findOne($_POST['order_id']);
$model->label = $_POST['label_id'];
$model->save();
|
8df8067a
Administrator
basket
|
85
86
87
88
89
90
|
}
public function actionPayupdate(){
$model = Orders::findOne($_POST['order_id']);
$model->pay = $_POST['pay_id'];
$model->save();
|
8df8067a
Administrator
basket
|
91
92
93
94
95
|
}
public function actionDelete(){
$model = Orders::findOne($_GET['id']);
$model->delete();
|
4994ab9e
Eugeny Galkovskiy
150616
|
96
|
return Yii::$app->response->redirect(['/orders/index']);
|
8df8067a
Administrator
basket
|
97
98
99
100
101
102
103
|
}
public function actionAdd(){
$model = new OrdersProducts;
if ($model->load(Yii::$app->request->post())) {
|
94984376
Administrator
add active menu
|
104
105
106
107
108
109
110
111
112
|
if(!$modelMod = ProductVariant::find()->with(['product'])->where(['sku'=>$model->sku])->one())
throw new HttpException(404, 'Данного артикля не существует!');
$model->product_name = $modelMod->product->name;
$model->name = $modelMod->name;
$model->sku = $modelMod->sku;
$model->price = $modelMod->price;
$model->sum_cost = $model->count*$modelMod->price;
$model->mod_id = $modelMod->id;
$model->save();
|
8df8067a
Administrator
basket
|
113
114
115
116
117
|
//return Yii::$app->response->redirect(['/admin/orders/show','id'=>$_GET['order_id']]);
}
//return $this->render('add',['model'=>$model]);
}
|
4994ab9e
Eugeny Galkovskiy
150616
|
118
119
120
121
122
123
124
125
126
127
128
129
|
public function actionCreate(){
$model = new Orders();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['index']);
} else {
return $this->render('create', [
'model' => $model,
]);
}
}
|
8df8067a
Administrator
basket
|
130
131
132
133
134
|
public function actionDelete_product(){
$model = OrdersProducts::findOne($_GET['id']);
$model->delete();
return Yii::$app->response->redirect(['/admin/orders/show','id'=>$_GET['order_id']]);
|
4994ab9e
Eugeny Galkovskiy
150616
|
135
|
}
|
8df8067a
Administrator
basket
|
136
137
138
139
140
141
142
143
144
145
|
protected function findModel($id)
{
if (($model = Orders::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}
}
|