94 lines
4.8 KiB
HTML
94 lines
4.8 KiB
HTML
<div class="modal-dialog modal-lg">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-toggle="modal" data-target="#items-total" ng-click="returnModal('total')">
|
||
<i class="material-icons md-24">arrow_back</i>
|
||
</button>
|
||
<h5 class="modal-title" style="padding-bottom: 12px;">Подробнее о заказе № {{ order.title }}</h5>
|
||
<div class="row">
|
||
<div class="col-xs-6 col-md-3">
|
||
<p class="text-muted m-b-0">Открыт</p>
|
||
<p class="m-b-0">{{ order.who_open }}</p>
|
||
<p class="m-b-0">{{ order.opened }}</p>
|
||
</div>
|
||
<div class="col-xs-6 col-md-3">
|
||
<div ng-if="getClosedDate(order.closed) == NOT_CLOSED">
|
||
<p class="text-muted m-b-0">{{NOT_CLOSED}}</p>
|
||
</div>
|
||
<div ng-if="getClosedDate(order.closed) != NOT_CLOSED">
|
||
<p class="text-muted m-b-0">Закрыт</p>
|
||
<p class="m-b-0">{{ order.who_close }}</p>
|
||
<p class="m-b-0">{{ order.closed }}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="modal-body p-lg">
|
||
<div>
|
||
<div class="b-b nav-active-bg">
|
||
<ul class="nav nav-tabs">
|
||
<li class="nav-item">
|
||
<a class="nav-link active" href="" data-toggle="tab" data-target="#tab1" aria-expanded="true">Товары</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="" data-toggle="tab" data-target="#tab2" aria-expanded="false">Журнал заказа</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<div class="tab-content p-a m-b-md">
|
||
<div class="tab-pane animated fadeIn text-muted active" id="tab1" aria-expanded="true">
|
||
<div class="table-responsive">
|
||
<table class="table m-a-0">
|
||
<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.sale_price | curr }}</td>
|
||
</tr>
|
||
</tbody>
|
||
<thead>
|
||
<tr>
|
||
<th colspan="2"></th>
|
||
<th class="text-right">Итого: {{ order.total | curr }} BYN</th>
|
||
</tr>
|
||
</thead>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
<div class="tab-pane animated fadeIn text-muted" id="tab2" aria-expanded="false">
|
||
<div class="table-responsive">
|
||
<table class="table m-a-0">
|
||
<thead>
|
||
<tr>
|
||
<th>Действие</th>
|
||
<th>Персонал</th>
|
||
<th>Время</th>
|
||
<th>Группа</th>
|
||
<th>Место</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr ng-repeat="action in actions.actions">
|
||
<td>{{ action.action }}</td>
|
||
<td>{{ action.who }}</td>
|
||
<td>{{ action.time }}</td>
|
||
<td>{{ action.workgroup }}</td>
|
||
<td>{{ action.workcode }}</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div> |