add reception key changes, add money movent storno, status display
This commit is contained in:
@@ -22,15 +22,18 @@ use kartik\widgets\DatePicker;
|
||||
]); ?>
|
||||
|
||||
<div class='row'>
|
||||
<div class='col-md-4'>
|
||||
<div class='col-md-3'>
|
||||
<?= $form->field($model, 'id_account')->dropDownList( ['' => Yii::t('common/transfer', 'All')] +HtmlHelper::mkAccountOptions($accounts) ) ?>
|
||||
</div>
|
||||
<div class='col-md-4'>
|
||||
<div class='col-md-3'>
|
||||
<?php echo $form->field($model, 'types')->checkboxList( Transfer::types()) ?>
|
||||
</div>
|
||||
<div class='col-md-4'>
|
||||
<div class='col-md-3'>
|
||||
<?= $form->field($model, 'id_user')->dropDownList( ['' => Yii::t('common/transfer', 'All')] +ArrayHelper::map($users,'id' , 'username') ) ?>
|
||||
</div>
|
||||
<div class='col-md-3'>
|
||||
<?= $form->field($model, 'status')->dropDownList( ['' => "Mind"] + Transfer::statuses() ) ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
|
||||
@@ -75,6 +75,10 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
'attribute' => 'money',
|
||||
'value' => 'signedMoney'
|
||||
],
|
||||
[
|
||||
'attribute' => 'status',
|
||||
'value' => 'statusName'
|
||||
],
|
||||
'created_at:datetime',
|
||||
'paid_at:datetime',
|
||||
|
||||
|
||||
Reference in New Issue
Block a user