view.php
3.39 KB
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
<?php
use yii\bootstrap\Html;
use yii\widgets\DetailView;
use yiister\gentelella\widgets\Panel;
/* @var $this yii\web\View */
/* @var $model artbox\order\models\Order */
$this->title = $model->name;
$this->params[ 'breadcrumbs' ][] = [
'label' => Yii::t('order', 'Orders'),
'url' => [ 'index' ],
];
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="order-view">
<?php
$xPanel = Panel::begin(
[
'header' => $this->title,
]
);
?>
<p>
<?= Html::a(
Yii::t('order', 'Update'),
[
'update',
'id' => $model->id,
],
[ 'class' => 'btn btn-primary' ]
) ?>
<?= Html::a(
Yii::t('order', 'Delete'),
[
'delete',
'id' => $model->id,
],
[
'class' => 'btn btn-danger',
'data' => [
'confirm' => Yii::t('order', 'Are you sure you want to delete this item?'),
'method' => 'post',
],
]
) ?>
</p>
<?= DetailView::widget(
[
'model' => $model,
'attributes' => [
'id',
'user_id',
'name',
'phone',
'email:email',
'city',
'address',
'comment',
'created_at:datetime',
'updated_at:datetime',
'deleted_at:datetime',
[
'label' => \Yii::t('order', 'Label'),
'attribute' => 'label.title',
],
[
'label' => \Yii::t('order', 'Delivery'),
'attribute' => 'delivery.title',
],
[
'label' => \Yii::t('order', 'Payment'),
'attribute' => 'payment.title',
],
[
'label' => \Yii::t('order', 'Products'),
'value' => function () use ($model) {
$items = '';
foreach ($model->orderProducts as $orderProduct) {
$sum = $orderProduct->price * $orderProduct->count;
$items .= Html::tag(
'li',
Html::a(
$orderProduct->variant->product->lang->title . ' (' . $orderProduct->sku . ')',
[
'product/view',
'id' => $orderProduct->variant->product->id,
],
[
'class' => 'test',
'target' => '_blank',
]
) . ' - ' . $orderProduct->price . 'грн.' . ' * ' . $orderProduct->count . 'x = ' . $sum . 'грн.'
);
}
return Html::tag('ul', $items);
},
'format' => 'html',
],
],
]
) ?>
<?php
$xPanel::end();
?>
</div>