49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\grid\GridView;
|
|
use common\components\RoleDefinition;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $searchModel backend\models\DiscountSearch */
|
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
|
|
|
$this->title = Yii::t('common/discount', 'Discounts');
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="discount-index">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
|
|
<?php if ( RoleDefinition::isAdmin() ) {?>
|
|
<p>
|
|
<?= Html::a(Yii::t('common/discount', 'Create Discount'), ['create'], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
<?php }?>
|
|
|
|
<?= GridView::widget([
|
|
'dataProvider' => $dataProvider,
|
|
'columns' => [
|
|
'name',
|
|
[
|
|
'attribute' => 'status',
|
|
'value' => 'statusHuman',
|
|
],
|
|
[
|
|
'attribute' => 'type',
|
|
'value' => 'typeHuman',
|
|
],
|
|
'value',
|
|
'created_at:datetime',
|
|
'updated_at:datetime',
|
|
|
|
[
|
|
'class' => 'yii\grid\ActionColumn',
|
|
'template' => RoleDefinition::getRoleTemplate( ['admin' => '{view} {update}','employee' => '{view}' , 'reception' => '{view}']),
|
|
],
|
|
],
|
|
]); ?>
|
|
|
|
</div>
|