48 lines
1.0 KiB
PHP
48 lines
1.0 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use yii\helpers\Html;
|
||
|
|
use yii\grid\GridView;
|
||
|
|
|
||
|
|
/* @var $this yii\web\View */
|
||
|
|
/* @var $searchModel frontend\modules\approve\models\SendHisSearch */
|
||
|
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||
|
|
|
||
|
|
$this->title = 'Send Report to HIS List';
|
||
|
|
$this->params['breadcrumbs'][] = $this->title;
|
||
|
|
?>
|
||
|
|
<div class="send-his-index">
|
||
|
|
|
||
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
<?php //= Html::a('Create Send His', ['create'], ['class' => 'btn btn-success']) ?>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<?php // echo $this->render('_search', ['model' => $searchModel]);
|
||
|
|
?>
|
||
|
|
|
||
|
|
<?= GridView::widget([
|
||
|
|
'dataProvider' => $dataProvider,
|
||
|
|
'filterModel' => $searchModel,
|
||
|
|
'columns' => [
|
||
|
|
['class' => 'yii\grid\SerialColumn'],
|
||
|
|
|
||
|
|
//'id',
|
||
|
|
//'approve_id',
|
||
|
|
'id_case',
|
||
|
|
'report_type',
|
||
|
|
//'diagnosis_id',
|
||
|
|
//'is_send',
|
||
|
|
'send_at',
|
||
|
|
'response:ntext',
|
||
|
|
//'created_at',
|
||
|
|
//'updated_at',
|
||
|
|
//'created_by',
|
||
|
|
//'updated_by',
|
||
|
|
|
||
|
|
//['class' => 'yii\grid\ActionColumn'],
|
||
|
|
],
|
||
|
|
]); ?>
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|