v.2.3
Happy New Year!
This commit is contained in:
42
web/views/dashboard/items/more-staff.html
Normal file
42
web/views/dashboard/items/more-staff.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<div class="modal-dialog modal-lg">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal">×</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>
|
||||
Reference in New Issue
Block a user