add reception account transfer/mixed
This commit is contained in:
21
frontend/views/account-state/_mixed.php
Normal file
21
frontend/views/account-state/_mixed.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php use common\components\total\TotalMediumTicketsWidget;
|
||||
use common\components\total\TotalProductsByCategoryWidget;
|
||||
use common\components\total\TotalDetailedMoneyMovementWidget;
|
||||
|
||||
?>
|
||||
|
||||
<p>Bérletek típus szerint</p>
|
||||
<?php echo TotalMediumTicketsWidget::widget(['dailyListing' => $details]);?>
|
||||
<p>Termékek kategória szerint</p>
|
||||
<?php echo TotalProductsByCategoryWidget::widget(['dailyListing' => $details]);?>
|
||||
<p>Pénzmozgások</p>
|
||||
<?php echo TotalDetailedMoneyMovementWidget::widget(['dailyListing' => $details]);?>
|
||||
|
||||
<p>Összesen </p>
|
||||
<table class="table table-bordered table-striped table-summary table-total">
|
||||
<tr>
|
||||
<th>Végösszeg bruttó</th>
|
||||
<td class="money"><span style='border-bottom: 1px solid black'><?php echo \Yii::$app->formatter->asInteger( $model->money)?> FT</span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user