Files
admin-php-module/web/views/reports/items/move.html
miroman-afk ebd1180d89 v.2.15
Добавлен журнал заказов
Добавлены отчеты: по переносам, по объединениям, по разбиениям
2022-06-13 13:16:50 +03:00

45 lines
2.0 KiB
HTML

<div class="modal-dialog modal-lg">
<div class="modal-content" id="reportMoved">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<button class="btn btn-icon white" ng-click="printElem('#reportMoved')">
<i class="fa fa-print"></i>
</button>
<h4 class="modal-title">{{globals.currentUser.organization.name}}</h4>
<h5 class="modal-title">Отчет по перемещениям</h5>
<span class="text-muted">{{start_date}} - {{end_date}}</span>
</div>
<div class="modal-body p-lg">
<div class="table-responsive" ng-if="report_move.count > 0">
<table class="table table-bordered" ng-repeat="report in report_move">
<tbody>
<td>
<p>Заказ #{{ report.order }} </p>
<p>{{report.move_from}} в {{report.move_from_time}} пользователем {{report.move_from_staff}}</p>
<p>{{report.move_to}} в {{report.move_to_time}} пользователем {{report.move_to_staff}}</p>
</td>
</tbody>
</table>
<hr/>
<table class="table table-bordered">
<tbody>
<tr>
<td>
<strong>Итого</strong>
</td>
<td style="text-align: right">
<strong>{{ report_move.count }}</strong> перемещений</td>
</tr>
</tbody>
</table>
</div>
<div ng-if="report_move.count == 0">
<p>Перемещенные заказы отсутствуют</p>
</div>
</div>
</div>
</div>