add feature payout_later
This commit is contained in:
@@ -18,7 +18,7 @@ use yii\helpers\Url;
|
||||
/* @var $searchModel backend\models\TransferSearch */
|
||||
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||
|
||||
$this->title = Yii::t('frontend/transfer', 'Transfers');
|
||||
$this->title = "Tranzakciók későbbi utalás fizetés típussal";
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
|
||||
?>
|
||||
@@ -34,14 +34,29 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
<div class="transfer-index">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
<?php // echo $this->render('_search', ['model' => $searchModel, 'accounts' => $accounts,'users' => $users,]); ?>
|
||||
<?php echo $this->render('_search_payment_later', ['model' => $searchModel, ]); ?>
|
||||
|
||||
|
||||
<div style="margin-bottom: 6px;">
|
||||
<?php
|
||||
echo Html::a("Összes kiválasztása",null, ['class' => 'btn btn-primary select-all' ,'style' => 'margin-right: 6px;',
|
||||
'onclick' => "$('.table-transfer').find(\"input[type='checkbox']\").prop('checked',true);"
|
||||
]);
|
||||
echo Html::a("Egyiket sem",null, ['class' => 'btn btn-primary deselect-all',
|
||||
'onclick' => "$('.table-transfer').find(\"input[type='checkbox']\").prop('checked',false);"
|
||||
|
||||
]);
|
||||
|
||||
?>
|
||||
</div>
|
||||
<div class="transfer-form">
|
||||
|
||||
<?php $form = ActiveForm::begin(
|
||||
[ 'action' => Url::current() ]
|
||||
); ?>
|
||||
|
||||
<p>
|
||||
Összesen: <?php echo $searchModel->total_money;?> Ft
|
||||
</p>
|
||||
<?= GridView::widget([
|
||||
'tableOptions' => ['class' => 'table table-striped table-bordered table-transfer'],
|
||||
'dataProvider' => $dataProvider,
|
||||
|
||||
Reference in New Issue
Block a user