Files
admin-php-module/web/views/clients/order.html
miroman-afk 61d8b4e1d2 v2.5
Update RestoreShift frontend
2022-01-13 15:43:04 +03:00

36 lines
1.4 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">История заказа</h5>
<span class="text-muted">{{order.opened}} - {{order.closed}}</span>
</div>
<div class="modal-body p-lg">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>Блюдо</th>
<th>Количество</th>
<th class="text-right">Сумма, 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.amount}}</td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="2"></th>
<th class="text-right">Итого: {{ order.amount | curr }} BYN</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>