salix/modules/ticket/front/expedition/index.html

77 lines
3.3 KiB
HTML
Raw Normal View History

2019-02-10 21:52:35 +00:00
<vn-crud-model
auto-load="false"
2018-07-17 06:44:31 +00:00
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>
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>Expedition</vn-th>
<vn-th field="itemFk" number>Envialia</vn-th>
2018-07-17 06:44:31 +00:00
<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;">
<vn-icon-button icon="delete"
ng-click="$ctrl.deleteExpedition(expedition)"
vn-tooltip="Delete expedition">
</vn-icon-button>
2018-07-17 06:44:31 +00:00
</vn-td>
<vn-td number>{{expedition.id | zeroFill:6}}</vn-td>
<vn-td number>{{expedition.externalId | zeroFill:6}}</vn-td>
<vn-td number>
2018-09-06 09:15:53 +00:00
<span
2019-02-10 21:52:35 +00:00
ng-class="{link: expedition.itemFk}"
ng-click="$ctrl.showItemDescriptor($event, expedition.itemFk)">
2019-01-14 12:40:39 +00:00
{{expedition.itemFk | zeroFill: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>
<vn-td expand>
<span
class="link"
ng-click="$ctrl.showWorkerDescriptor($event, expedition.workerFk)">
{{::expedition.userNickname | dashIfEmpty}}
</span>
</vn-td>
2019-02-27 16:04:00 +00:00
<vn-td>{{::expedition.created | dateTime:'dd/MM/yyyy HH:mm'}}</vn-td>
2018-07-17 06:44:31 +00:00
</vn-tr>
</vn-tbody>
</vn-table>
</vn-vertical>
2019-01-20 17:48:03 +00:00
<vn-pagination model="model"></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="itemDescriptor"
2018-09-04 09:49:00 +00:00
quicklinks="$ctrl.quicklinks">
2018-09-04 10:01:44 +00:00
</vn-item-descriptor-popover>
<vn-worker-descriptor-popover
vn-id="workerDescriptor"
worker-fk="$ctrl.selectedWorker">
</vn-worker-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>