Blame view

views/order/print.php 6.72 KB
41f0c492   Yarik   Print and email
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
  <?php
  
  use artweb\artbox\ecommerce\models\Order;
  use artweb\artbox\ecommerce\models\OrderProduct;use yii\data\ArrayDataProvider;
  use yii\grid\GridView;
  use yii\helpers\ArrayHelper;use yii\web\View;
  use yii\widgets\DetailView;
  
  /**
   * @var View $this
   * @var Order $order
   * @var ArrayDataProvider $dataProvider
   */
  ?>
  <?php $this->beginPage(); ?>
  <!DOCTYPE html>
  <html>
  <head>
      <meta charset="utf-8">
      <?php $this->head() ?>
      <script>
  //        window.print();
      </script>
  </head>
  <body>
  <?php  $this->beginBody(); ?>
  <div>
  <?php
      echo DetailView::widget([
          'model' => $order,
          'attributes' => [
              [
                  'attribute' => 'manager.username',
                  'label' => \Yii::t('app', 'Manager Username'),
              ],
              'id',
              'created_at:date',
              [
164cd94a   Yarik   Order print
39
                  'attribute' => 'name',
41f0c492   Yarik   Print and email
40
                  'label' => \Yii::t('app', 'Client Username'),
164cd94a   Yarik   Order print
41
                  'value' => $order->name?:null,
41f0c492   Yarik   Print and email
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
              ],
              [
                  'attribute' => 'email',
                  'value' => $order->email?:(!empty($order->user)?$order->user->email:null),
              ],
              [
                  'attribute' => 'phone',
                  'value' => $order->phone?:(!empty($order->user)?$order->user->phone:null),
              ],
              [
                  'attribute' => 'phone2',
                  'value' => $order->phone2?:null,
              ],
              [
                  'attribute' => 'numbercard',
                  'value' => $order->numbercard?:null,
              ],
              [
                  'attribute' => 'comment',
                  'value' => $order->comment?:null,
              ],
              [
                  'attribute' => 'delivery',
                  'value' => $order->deliveryString?:null,
              ],
              [
                  'attribute' => 'declaration',
                  'value' => $order->declaration?:null,
              ],
              [
b3a3a952   Yarik   Breadcrumbs and o...
72
73
74
75
                  'attribute' => 'consignment',
                  'value' => $order->consignment?:null,
              ],
              [
41f0c492   Yarik   Print and email
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
                  'attribute' => 'stock',
                  'value' => $order->stock?:null,
              ],
              [
                  'attribute' => 'payment',
                  'value' => $order->orderPayment?$order->orderPayment->lang->title:null,
              ],
              [
                  'attribute' => 'insurance',
                  'value' => $order->insurance?:null,
              ],
              [
                  'attribute' => 'amount_imposed',
                  'value' => $order->amount_imposed?:null,
              ],
              [
                  'attribute' => 'shipping_by',
1fc00c33   Yarik   Order print
93
                  'value' => $order->shipping_by?(function() use($order) {
b3a3a952   Yarik   Breadcrumbs and o...
94
95
96
97
98
99
100
101
102
                    switch ($order->shipping_by) {
                      case 1:
                        return 'Отправитель';
                        break;
                      case 2:
                        return 'Получатель';
                        break;
                    }
                    return null;
1fc00c33   Yarik   Order print
103
                  })():null,
41f0c492   Yarik   Print and email
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
              ],
              [
                  'attribute' => 'city',
                  'value' => $order->city?:null,
              ],
              [
                  'attribute' => 'adress',
                  'value' => $order->adress?:null,
              ],
              [
                  'attribute' => 'body',
                  'value' => $order->body?:null,
              ],
          ],
      ]);
   ?>
  </div>
  <div>
  <?php
      if(!empty($order->products)) {
          echo GridView::widget([
              'tableOptions' => [
                  'cellspacing' => '10',
                  'cellpadding' => '3',
              ],
              'dataProvider' => $dataProvider,
              'columns' => [
                  [
                      'class' => 'yii\grid\SerialColumn',
                  ],
                  'sku',
                  [
                      'attribute' => 'productVariant.product.brand.lang.title',
                      'label' => \Yii::t('app', 'Brand'),
                  ],
                  [
                      'attribute' => 'productVariant.product.fullName',
                      'label' => \Yii::t('app', 'Fullname'),
                  ],
                  [
                      'label' => \Yii::t('app', 'Properties'),
                      'value' => function($model) {
                          /**
                          * @var OrderProduct $model
                          */
                          $value = '';
                          foreach ($model->productVariant->properties as $property) {
                                  $value .= $property->lang->title.':'.implode(',', ArrayHelper::getColumn($property->customOptions, 'lang.value')).'<br />';
                              }
                          return $value;
                      },
                      'format' => 'html',
                  ],
                  'count',
                  'price',
                  'sum_cost',
                  'booking',
              ],
              'showOnEmpty' => false,
              'layout' => "{items}",
      ]);
  }
   ?>
  </div>
  <div>
  <div style="display: inline-block; padding-right: 10px"><strong><?php echo $order->getAttributeLabel('total').': '.\Yii::$app->formatter->asDecimal($order->total); ?> грн.</strong></div>
05f3b603   Alexey Boroda   -Print fix
170
  <div style="display: inline-block"><strong><?php echo $order->getAttributeLabel('delivery_cost').': '.\Yii::$app->formatter->asText($order->delivery_cost); ?></strong></div>
41f0c492   Yarik   Print and email
171
172
173
174
175
176
177
178
179
180
  </div>
  <div style="border-bottom: 4px dotted #a1a1a1; width: 100%; margin: 20px 0"></div>
  <div>
  <?php
  echo DetailView::widget([
      'model' => $order,
      'attributes' => [
          'id',
          'created_at:date',
          [
164cd94a   Yarik   Order print
181
              'attribute' => 'name',
41f0c492   Yarik   Print and email
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
              'label' => \Yii::t('app', 'Client Username'),
          ],
          [
              'attribute' => 'phone',
              'value' => $order->phone?:(!empty($order->user)?$order->user->phone:null),
          ],
          [
              'attribute' => 'city',
              'value' => $order->city?:null,
          ],
          [
              'attribute' => 'adress',
              'value' => $order->adress?:null,
          ],
          [
              'attribute' => 'comment',
              'value' => $order->comment?:null,
          ],
          [
              'attribute' => 'stock',
              'value' => $order->stock?:null,
          ],
          [
164cd94a   Yarik   Order print
205
206
207
208
              'attribute' => 'consignment',
              'value' => $order->consignment?:null,
          ],
          [
41f0c492   Yarik   Print and email
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
              'attribute' => 'insurance',
              'value' => $order->insurance?:null,
          ],
          [
              'attribute' => 'amount_imposed',
              'value' => $order->amount_imposed?:null,
          ],
          [
              'attribute' => 'shipping_by',
              'value' => $order->shipping_by?:null,
          ],
      ],
  ]);
   ?>
  </div>
  <?php  $this->endBody(); ?>
  </body>
  </html>
  <?php  $this->endPage(); ?>