23 lines
827 B
PHP
23 lines
827 B
PHP
<?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>
|