Blame view

backend/views/check-price/view.php 980 Bytes
1fa22312   Mihail   add auto upload a...
1
2
3
4
5
6
7
8
9
10
  <?php
  use yii\helpers\Html;
  use yii\grid\GridView;
  use yii\grid\SerialColumn;
  use yii\bootstrap\Modal;
  
  
  /* @var $this yii\web\View */
  /* @var $searchModel backend\models\CatalogSearch */
  /* @var $dataProvider yii\data\ActiveDataProvider */
741ecd87   Mihail   add migration for...
11
  $this->title = 'Прайс ' . Html::encode("{$importer->name} от {$date}");
1fa22312   Mihail   add auto upload a...
12
13
14
  $this->params['breadcrumbs'][] = $this->title;
  
  ?>
741ecd87   Mihail   add migration for...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
      <div class="catalog-index">
  
          <h1><?= Html::encode($this->title) ?></h1>
  
          <?= GridView::widget( ['dataProvider' => $dataProvider,
              'columns' => [
                  ['attribute' => 'FULL_ARTICLE'],
                  ['attribute' => 'ARTICLE'],
                  ['attribute' => 'BRAND'],
                  ['attribute' => 'DESCR'],
                  ['attribute' => 'BOX'],
                  ['attribute' => 'ADD_BOX'],
                  ['attribute' => 'GROUP'],
                  ['attribute' => 'name'],
                  ['attribute' => 'PRICE'],
          ]
          ] ); ?>
  
      </div>
1fa22312   Mihail   add auto upload a...
34
35
36
  <?php
  
  ?>