35 lines
1.5 KiB
HTML
35 lines
1.5 KiB
HTML
<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">Отчет по удалениям</h5>
|
|
</div>
|
|
<div class="modal-body p-lg">
|
|
<div class="table-responsive" ng-if="report_delete.length > 0">
|
|
<table class="table table-bordered m-a-" ng-repeat="report in report_delete">
|
|
<thead>
|
|
<th>Заказ #{{ report.order_code }}</th>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr ng-repeat="item in report.items">
|
|
<td>
|
|
<h6>{{ item.dish_name }} <small>(<strong>{{ item.count }}</strong> на сумму <strong>{{ item.sum }} BYN</strong>)</small></h6>
|
|
|
|
<p>
|
|
Удалил: <strong>{{ item.who }}</strong><br/>
|
|
Подтвердил: <strong>{{ item.approved }}</strong><br/>
|
|
Причина: <strong>{{ item.reason }}</strong>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div ng-if="report_delete.length == 0">
|
|
<p>Удаления отсутствуют</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |