87 lines
2.2 KiB
PHP
87 lines
2.2 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use common\components\total\TotalEasyWidget;
|
|
use common\components\total\TotalDetailedProductsWidget;
|
|
use common\components\total\TotalDetailedTicketsWidget;
|
|
use common\components\total\TotalDetailedMoneyMovementWidget;
|
|
use common\components\accountstate\BankNotesWidget;
|
|
use common\components\total\TotalMediumTicketsWidget;
|
|
use common\components\total\TotalMediumProductsWidget;
|
|
use common\components\total\TotalMediumMoneyMovementsWidget;
|
|
use common\components\total\TotalDifferenceWidget;
|
|
use common\models\AccountState;
|
|
use yii\helpers\Url;
|
|
use common\components\accountstate\AccountStateWidget;
|
|
use common\components\total\TotalCassaOpenInfoWidget;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\AccountState */
|
|
if ( $model ->type == AccountState::TYPE_OPEN ){
|
|
$this->title = "Kassza nyitás";
|
|
}else{
|
|
$this->title = "Kassza zárás";
|
|
}
|
|
?>
|
|
|
|
<style>
|
|
|
|
table{
|
|
|
|
}
|
|
th,td{
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
td.money{
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
<div class="account-state-view">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?php
|
|
if ( $model->hasDifferenceToPrevState() ){
|
|
if ( $model->hasMinus()){
|
|
?>
|
|
<div class="alert alert-danger" role="alert">Negatív különbözet</div>
|
|
<?php
|
|
}else{
|
|
?>
|
|
<div class="alert alert-success" role="alert">Pozitív különbözet</div>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
<?php echo AccountStateWidget::widget(['model' =>$model]) ?>
|
|
|
|
|
|
<?php if ( $model->hasDifferenceToPrevState() ){
|
|
?>
|
|
<h2>Különbözet</h2>
|
|
<?php
|
|
echo TotalDifferenceWidget::widget(['model' => $model] );
|
|
|
|
}
|
|
|
|
?>
|
|
<?php if ( $model ->type == AccountState::TYPE_CLOSE ){?>
|
|
|
|
<?php echo TotalEasyWidget::widget(['dailyListing' => $details]);?>
|
|
|
|
<?php echo TotalCassaOpenInfoWidget::widget(['dailyListing' => $details]);?>
|
|
<h2>Közepes összesítés</h2>
|
|
<h3>Bérletek típus szerint</h3>
|
|
<?php echo TotalMediumTicketsWidget::widget(['dailyListing' => $details]);?>
|
|
<h3>Termékek név szerint</h3>
|
|
<?php echo TotalMediumProductsWidget::widget(['dailyListing' => $details]);?>
|
|
<h3>Pénzmozgások típus szerint</h3>
|
|
<?php echo TotalMediumMoneyMovementsWidget::widget(['dailyListing' => $details]);?>
|
|
<?php } ?>
|
|
|
|
</div>
|