Files
admin-php-module/web/views/dashboard/items/more-table.html
miroman-afk 2702c4b6e9 v.2.3
Happy New Year!
2021-12-29 13:17:03 +03:00

47 lines
1.9 KiB
HTML

<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h5 class="modal-title">{{ table_ord.title }}</h5>
</div>
<div class="modal-body p-lg">
<div class="table-responsive" ng-repeat="order in table_ord.orders">
<h5>Заказ № {{ order.number }}</h5>
<table class="table">
<thead>
<tr>
<th style="width: 35%">Блюдо</th>
<th style="width: 25%">Количество</th>
<th class="text-right" style="width: 40%">Сумма, BYN</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in order.items">
<td>{{ item.name }}</td>
<td>{{ item.count }}</td>
<td class="text-right">{{ item.sale_price | curr }}</td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="3" class="text-right">Итого: {{ order.total | curr }} BYN</th>
</tr>
</thead>
</table>
<hr>
</div>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th colspan="2"></th>
<th class="text-right">Общий итог: {{ table_ord.total | curr }} BYN</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>