2018-03-21 14:51:09 +00:00
|
|
|
<mg-ajax path="/ticket/api/Expeditions/filter" options="vnIndexNonAuto"></mg-ajax>
|
|
|
|
<vn-vertical>
|
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-vertical>
|
|
|
|
<vn-title>Expedition</vn-title>
|
|
|
|
<vn-grid-header on-order="$ctrl.onOrder(field, order)">
|
|
|
|
<vn-column-header vn-one pad-medium-h text="Delete"></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="itemFk" text="Item"></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="name" text="Name" order-locked></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="packageFk" text="Package type"></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="counter" text="Counter"></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="checked" text="Checked"></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="worker" text="Worker"></vn-column-header>
|
|
|
|
<vn-column-header vn-one pad-medium-h field="created" text="Created" default-order="DESC"></vn-column-header>
|
|
|
|
</vn-grid-header>
|
|
|
|
<vn-one class="list list-content">
|
|
|
|
<vn-horizontal
|
|
|
|
vn-one class="list list-element text-center"
|
|
|
|
pad-small-bottom
|
|
|
|
ng-repeat="expedition in index.model.instances track by expedition.id">
|
2018-03-26 12:59:14 +00:00
|
|
|
<vn-one pad-medium-h style="color:#FFA410;">
|
2018-03-21 14:51:09 +00:00
|
|
|
<i
|
|
|
|
pointer
|
|
|
|
class="material-icons"
|
|
|
|
vn-tooltip="delete expedition"
|
|
|
|
ng-click="$ctrl.deleteExpedition(expedition)">delete</i>
|
2018-03-26 12:59:14 +00:00
|
|
|
</vn-one>
|
2018-03-21 14:51:09 +00:00
|
|
|
<vn-one pad-medium-h>{{expedition.itemFk}}</vn-one>
|
|
|
|
<vn-one pad-medium-h>{{expedition.item.name}}</vn-one>
|
|
|
|
<vn-one pad-medium-h>{{expedition.package.name}}</vn-one>
|
|
|
|
<vn-one pad-medium-h>{{expedition.counter}}</vn-one>
|
|
|
|
<vn-one pad-medium-h>{{expedition.checked}}</vn-one>
|
|
|
|
<vn-one pad-medium-h>{{expedition.worker.firstName}} {{expedition.worker.name}}</vn-one>
|
|
|
|
<vn-one pad-medium-h>{{expedition.created | date:'dd/MM/yyyy'}}</vn-one>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-one>
|
|
|
|
<vn-one class="text-center pad-small-v" ng-if="index.model.count === 0" translate>No results</vn-one>
|
|
|
|
<vn-horizontal vn-one class="list list-footer"></vn-horizontal>
|
|
|
|
<vn-paging vn-one margin-large-top index="index" total="index.model.count"></vn-paging>
|
|
|
|
</vn-vertical>
|
|
|
|
</vn-card>
|
|
|
|
</vn-vertical>
|