27 lines
783 B
PHP
27 lines
783 B
PHP
<table class="table table-bordered table-striped table-summary">
|
|
<thead>
|
|
<tr>
|
|
<th>Pénzmozgás típus</th>
|
|
<th>Mennyiség</th>
|
|
<th>Összeg</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ( $model->moneyMovementsByType as $mmStat ) {
|
|
?>
|
|
<tr>
|
|
<td class="name"><?php echo $mmStat['name'] ?></td>
|
|
<td class="count"><?php echo $mmStat['money_movement_count']?> Db</td>
|
|
<td class="money"><?php echo \Yii::$app->formatter->asInteger( $mmStat['money_movement_money'])?> FT</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
<div class="row">
|
|
<div class="col-md-12 text-right" style="text-decoration: underline;">
|
|
Összesen: <?php echo \Yii::$app->formatter->asInteger( $model->moneyMovementMoneis); ?> Ft
|
|
</div>
|
|
</div>
|
|
|