show_order.php
1.05 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
<?php
use yii\helpers\Html;
use yii\grid\GridView;
use yii\bootstrap\ActiveForm;
$this->title = 'Заказ №'.$model->id;
$this->params['breadcrumbs'][] = $this->title;
?>
<h1>Заказ №<?=$model->id?></h1>
<hr />
<?= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
[
'attribute' => 'id',
'value'=>'id',
'contentOptions'=>['style'=>'width: 70px;']
],
[
'attribute' => 'art',
'value'=>'art',
'contentOptions'=>['style'=>'width: 50px;']
],
[
'attribute' => 'product_name',
'value'=>'product_name',
//'contentOptions'=>['style'=>'max-width: 300px;']
],
[
'attribute' => 'name',
'value'=>'name',
//'contentOptions'=>['style'=>'max-width: 300px;']
],
[
'attribute' => 'cost',
'value'=>'cost',
'contentOptions'=>['style'=>'width: 100px;']
],
[
'attribute' => 'count',
'value'=>'count',
'contentOptions'=>['style'=>'width: 30px;']
],
[
'attribute' => 'sum_cost',
'value'=>'sum_cost',
'contentOptions'=>['style'=>'width: 100px;']
],
],
]) ?>