salix/client/ticket/src/expedition/index.html

70 lines
2.9 KiB
HTML
Raw Normal View History

2018-07-17 06:44:31 +00:00
<vn-crud-model
vn-id="model"
2018-09-04 09:57:41 +00:00
url="/ticket/api/Expeditions/filter"
2018-07-17 06:44:31 +00:00
link="{ticketFk: $ctrl.$stateParams.id}"
limit="20"
data="expeditions">
</vn-crud-model>
2018-03-21 14:51:09 +00:00
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Expedition</vn-title>
2018-07-17 06:44:31 +00:00
<vn-table model="model">
<vn-thead>
<vn-tr>
<vn-th></vn-th>
<vn-th field="itemFk" number>Item</vn-th>
<vn-th field="name">Name</vn-th>
<vn-th field="isBox">Package type</vn-th>
<vn-th field="counter" number>Counter</vn-th>
<vn-th field="checked" number>Checked</vn-th>
<vn-th field="worker">Worker</vn-th>
<vn-th field="created" default-order="DESC">Created</vn-th>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="expedition in expeditions">
<vn-td pad-medium-h style="width:30px;color:#FFA410;">
2018-07-17 06:44:31 +00:00
<i
pointer
class="material-icons"
vn-tooltip="Delete expedition"
ng-click="$ctrl.deleteExpedition(expedition)">delete</i>
</vn-td>
<vn-td number>
2018-09-06 09:15:53 +00:00
<span
ng-class="{'link pointer':expedition.itemFk}"
ng-click="$ctrl.showDescriptor($event, expedition.itemFk)">
{{("000000"+expedition.itemFk).slice(-6)}}
</span>
2018-07-17 06:44:31 +00:00
</vn-td>
2018-09-04 09:57:41 +00:00
<vn-td>{{::expedition.namePackage}}</vn-td>
<vn-td>{{::expedition.nameBox}}</vn-td>
2018-07-17 06:44:31 +00:00
<vn-td number>{{::expedition.counter}}</vn-td>
<vn-td number>{{::expedition.checked}}</vn-td>
2018-09-04 09:57:41 +00:00
<vn-td>{{::expedition.firstName}} {{::expedition.nameWorker}}</vn-td>
<vn-td>{{::expedition.created | date:'dd/MM/yyyy HH:mm'}}</vn-td>
2018-07-17 06:44:31 +00:00
</vn-tr>
</vn-tbody>
<vn-empty-rows ng-if="model.data.length === 0" translate>
No results
</vn-empty-rows>
</vn-table>
</vn-vertical>
2018-07-17 06:44:31 +00:00
<vn-pagination
model="model"
scroll-selector="ui-view">
</vn-pagination>
2018-03-21 14:51:09 +00:00
</vn-card>
2018-09-04 10:01:44 +00:00
2018-09-04 09:49:00 +00:00
</vn-vertical>
<vn-item-descriptor-popover vn-id="descriptor"
quicklinks="$ctrl.quicklinks">
2018-09-04 10:01:44 +00:00
</vn-item-descriptor-popover>
2018-09-04 09:57:41 +00:00
<vn-confirm
vn-id="delete-expedition"
on-response="$ctrl.returnDialog(response)"
question="Delete expedition"
message="Are you sure you want to delete this expedition?">
</vn-confirm>