111 lines
2.7 KiB
PHP
111 lines
2.7 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use frontend\components\TransferTotalWidget;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Collection */
|
|
|
|
$this->title = Yii::t('frontend/collection', 'Create Collection');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('frontend/collection', 'Collections'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="collection-create">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<dl class='dl-horizontal'>
|
|
<dt><?= Yii::t('frontend/collection', "Last collection")?></dt>
|
|
<dd><?php echo isset($model->lastCollection) ? Yii::$app->formatter->asDatetime($model->lastCollection->end) : Yii::t('frontend/collection', "No collection found") ?></dd>
|
|
|
|
<dt><?= Yii::t('frontend/collection', "Start of interval")?></dt>
|
|
<dd><?php echo Yii::$app->formatter->asDatetime($model->timestampStart) ?></dd>
|
|
|
|
<dt><?= Yii::t('frontend/collection', "End of interval")?></dt>
|
|
<dd><?php echo Yii::$app->formatter->asDatetime($model->timestampEnd) ?></dd>
|
|
</dl>
|
|
|
|
<p>
|
|
<?= Html::a(Yii::t('frontend/collection', 'Refresh'), ['create', 'id_account' => $model->id_account], ['class' => 'btn btn-primary']) ?>
|
|
<?= Html::a(Yii::t('frontend/collection', 'Select another account'), ['select-account' ], ['class' => 'btn btn-primary']) ?>
|
|
</p>
|
|
|
|
<div class='row'>
|
|
<div class='col-md-4'>
|
|
<?php
|
|
echo TransferTotalWidget::widget([
|
|
'options' => [
|
|
'statistic' => $model->totals['created_at'],
|
|
'panelHeading' => 'Kiadva',
|
|
]
|
|
]);
|
|
?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php
|
|
echo TransferTotalWidget::widget([
|
|
'options' => [
|
|
'statistic' => $model->totals['created_at_paid'],
|
|
'panelHeading' => 'Kiadva/fizetve',
|
|
]
|
|
]);
|
|
?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php
|
|
echo TransferTotalWidget::widget([
|
|
'options' => [
|
|
'statistic' => $model->totals['created_at_not_paid'],
|
|
'panelHeading' => 'Kiadva/nem fizetve (Hitel)',
|
|
'panel-type' => 'panel-danger'
|
|
]
|
|
]);
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div class='row'>
|
|
<div class='col-md-4'>
|
|
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php
|
|
echo TransferTotalWidget::widget([
|
|
'options' => [
|
|
'statistic' => $model->totals['paid_at_not_created_at'],
|
|
'panelHeading' => 'Adósság (Hitel)/Fizetve' ,
|
|
]
|
|
]);
|
|
?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class='row'>
|
|
<div class='col-md-4'>
|
|
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php
|
|
echo TransferTotalWidget::widget([
|
|
'options' => [
|
|
'statistic' => $model->totals['paid_at'],
|
|
'panelHeading' => 'Fizetve' ,
|
|
'panel-type' => 'panel-success'
|
|
]
|
|
]);
|
|
?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|