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

42 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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">{{ staff.title }}</h5>
</div>
<div class="modal-body p-lg">
<div class="table-responsive">
<table class="table m-a-0 table-hover">
<thead>
<tr>
<th>Заказ №</th>
<th>Открыт</th>
<th>Закрыт</th>
<th>Зал</th>
<th>Стол</th>
<th class="text-right">Итого, BYN</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="order in staff.orders" ng-click="getItems('staff', order)">
<td>{{order.number}}</td>
<td>{{order.opened}}</td>
<td>{{ getClosedDate(order.closed) }}</td>
<td>{{order.place}}</td>
<td>{{order.table}}</td>
<td class="text-right">{{order.sum | curr}}</td>
</tr>
</tbody>
<thead>
<tr>
<th class="text-left" colspan="4">Всего: {{staff.count}} {{ GetCountTotalOrders(staff.count) }}</th>
<th class="text-right" colspan="2">Итого: {{staff.total|curr}} BYN</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>