2019-04-04 11:06:41 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
2021-05-12 07:51:32 +00:00
|
|
|
url="Routes/getTickets"
|
|
|
|
filter="{id: $ctrl.$params.id}"
|
2019-04-04 11:06:41 +00:00
|
|
|
order="priority ASC"
|
|
|
|
data="$ctrl.tickets"
|
|
|
|
auto-load="true">
|
|
|
|
</vn-crud-model>
|
2021-05-05 11:36:54 +00:00
|
|
|
<vn-data-viewer
|
2022-06-14 11:52:32 +00:00
|
|
|
model="model">
|
2021-05-10 08:32:00 +00:00
|
|
|
<form
|
|
|
|
class="vn-w-xl"
|
|
|
|
name="form">
|
2021-05-05 11:36:54 +00:00
|
|
|
<vn-card class="vn-pa-lg">
|
2019-11-22 12:23:43 +00:00
|
|
|
<vn-tool-bar>
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-button
|
|
|
|
icon="icon-wand"
|
|
|
|
ng-click="$ctrl.guessPriority()"
|
|
|
|
vn-tooltip="Sort routes">
|
|
|
|
</vn-button>
|
|
|
|
<vn-button
|
|
|
|
disabled="!$ctrl.isChecked"
|
|
|
|
ng-click="$ctrl.goToBuscaman()"
|
|
|
|
vn-tooltip="Open buscaman"
|
|
|
|
icon="icon-buscaman">
|
|
|
|
</vn-button>
|
2022-06-14 10:36:08 +00:00
|
|
|
<vn-button
|
|
|
|
disabled="!$ctrl.isChecked"
|
|
|
|
ng-click="$ctrl.deletePriority()()"
|
|
|
|
vn-tooltip="Delete priority"
|
|
|
|
icon="contact_support">
|
|
|
|
</vn-button>
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-tool-bar>
|
2019-11-22 12:23:43 +00:00
|
|
|
</vn-card>
|
2021-05-05 11:36:54 +00:00
|
|
|
<vn-card class="vn-mt-lg">
|
2022-06-14 11:52:32 +00:00
|
|
|
<vn-table model="model" auto-load="false" vn-droppable="$ctrl.onDrop($event)">
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th shrink>
|
|
|
|
<vn-multi-check
|
|
|
|
model="model">
|
|
|
|
</vn-multi-check>
|
|
|
|
</vn-th>
|
2022-06-14 10:36:08 +00:00
|
|
|
<vn-th shrink></vn-th>
|
2021-05-12 07:51:32 +00:00
|
|
|
<vn-th field="priority">Order</vn-th>
|
|
|
|
<vn-th field="street" expand>Street</vn-th>
|
|
|
|
<vn-th field="city">City</vn-th>
|
|
|
|
<vn-th field="postalCode" translate-attr="{title: 'Postcode'}" shrink>PC</vn-th>
|
|
|
|
<vn-th field="clientFk" expand>Client</vn-th>
|
|
|
|
<vn-th field="packages" shrink>Packages</vn-th>
|
|
|
|
<vn-th field="volume" shrink>m³</vn-th>
|
|
|
|
<vn-th field="id" number>Ticket</vn-th>
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-th shrink></vn-th>
|
|
|
|
<vn-th shrink></vn-th>
|
2022-06-14 10:36:08 +00:00
|
|
|
<vn-th shrink></vn-th>
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
2022-06-14 11:52:32 +00:00
|
|
|
<vn-tr ng-repeat="ticket in $ctrl.tickets">
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-td shrink>
|
|
|
|
<vn-check
|
2022-06-14 11:52:32 +00:00
|
|
|
ng-model="ticket.checked">
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-check>
|
|
|
|
</vn-td>
|
2022-06-14 10:36:08 +00:00
|
|
|
<vn-td>
|
|
|
|
<vn-icon-button
|
|
|
|
icon="add_circle"
|
|
|
|
ng-click="$ctrl.setHighestPriority(ticket.id)"
|
2022-06-14 11:52:32 +00:00
|
|
|
tabindex="-1">
|
2022-06-14 10:36:08 +00:00
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
2021-05-05 11:36:54 +00:00
|
|
|
<vn-td>
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-input-number
|
|
|
|
on-change="$ctrl.setPriority(ticket.id, ticket.priority)"
|
|
|
|
ng-model="ticket.priority"
|
2019-11-22 12:23:43 +00:00
|
|
|
rule="Ticket"
|
2022-06-14 11:52:32 +00:00
|
|
|
class="dense">
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-input-number>
|
|
|
|
</vn-td>
|
2021-06-02 08:29:56 +00:00
|
|
|
<vn-td expand title="{{::ticket.street}}">{{::ticket.street}}</vn-td>
|
2021-05-12 07:51:32 +00:00
|
|
|
<vn-td expand>{{::ticket.city}}</vn-td>
|
|
|
|
<vn-td shrink>{{::ticket.postalCode}}</vn-td>
|
2020-10-07 08:52:28 +00:00
|
|
|
<vn-td expand>
|
2019-10-23 07:25:28 +00:00
|
|
|
<span
|
2020-04-25 09:50:04 +00:00
|
|
|
ng-click="clientDescriptor.show($event, ticket.clientFk)"
|
2022-06-14 11:52:32 +00:00
|
|
|
class="link">
|
2021-06-02 08:29:56 +00:00
|
|
|
{{::ticket.nickname}}
|
2019-10-23 07:25:28 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
2021-05-12 07:51:32 +00:00
|
|
|
<vn-td shrink>{{::ticket.packages}}</vn-td>
|
2021-05-27 09:41:45 +00:00
|
|
|
<vn-td shrink>{{::ticket.volume | number:2}}</vn-td>
|
2021-05-05 11:36:54 +00:00
|
|
|
<vn-td number>
|
|
|
|
<span
|
|
|
|
ng-click="ticketDescriptor.show($event, ticket.id)"
|
2022-06-14 11:52:32 +00:00
|
|
|
class="link">
|
2021-05-12 07:51:32 +00:00
|
|
|
{{::ticket.id}}
|
2021-05-05 11:36:54 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-td shrink>
|
2020-05-06 12:38:09 +00:00
|
|
|
<vn-icon
|
2021-06-02 08:29:56 +00:00
|
|
|
ng-if="::ticket.notes.length"
|
|
|
|
title="{{::ticket.notes[0].description}}"
|
2020-05-06 12:38:09 +00:00
|
|
|
icon="insert_drive_file"
|
2022-06-14 11:52:32 +00:00
|
|
|
class="bright">
|
2020-05-06 12:38:09 +00:00
|
|
|
</vn-icon>
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-td>
|
|
|
|
<vn-td>
|
|
|
|
<vn-icon-button
|
2020-03-06 12:06:01 +00:00
|
|
|
translate-attr="{title: 'Remove ticket'}"
|
2019-10-23 07:25:28 +00:00
|
|
|
icon="delete"
|
|
|
|
ng-click="$ctrl.showDeleteConfirm(ticket.id)"
|
2022-06-14 11:52:32 +00:00
|
|
|
tabindex="-1">
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
2022-06-14 10:36:08 +00:00
|
|
|
<vn-td>
|
|
|
|
<vn-icon-button
|
|
|
|
ng-if="::ticket.description"
|
|
|
|
vn-tooltip="{{::ticket.description}}"
|
|
|
|
icon="icon-notes"
|
2022-06-14 11:52:32 +00:00
|
|
|
tabindex="-1">
|
2022-06-14 10:36:08 +00:00
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
2022-06-09 11:48:57 +00:00
|
|
|
</a>
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-card>
|
|
|
|
</form>
|
|
|
|
</vn-data-viewer>
|
2019-04-04 11:06:41 +00:00
|
|
|
<vn-ticket-descriptor-popover
|
|
|
|
vn-id="ticketDescriptor">
|
|
|
|
</vn-ticket-descriptor-popover>
|
|
|
|
<vn-client-descriptor-popover
|
|
|
|
vn-id="clientDescriptor">
|
|
|
|
</vn-client-descriptor-popover>
|
|
|
|
<vn-confirm
|
|
|
|
vn-id="confirm"
|
|
|
|
question="Delete ticket from route?"
|
2021-05-14 17:21:04 +00:00
|
|
|
on-accept="$ctrl.removeTicketFromRoute($index)">
|
2019-10-23 07:25:28 +00:00
|
|
|
</vn-confirm>
|
2022-03-08 14:17:18 +00:00
|
|
|
|
2022-03-09 07:08:13 +00:00
|
|
|
<vn-route-ticket-popup
|
|
|
|
vn-id="ticketPopup"
|
|
|
|
route="$ctrl.$params"
|
|
|
|
parent-reload="$ctrl.$.model.refresh()">
|
|
|
|
</vn-route-ticket-popup>
|
2022-03-08 14:17:18 +00:00
|
|
|
|
2019-10-23 07:25:28 +00:00
|
|
|
<vn-float-button
|
|
|
|
icon="add"
|
2022-03-08 14:17:18 +00:00
|
|
|
ng-click="$ctrl.$.ticketPopup.show()"
|
2019-10-23 07:25:28 +00:00
|
|
|
vn-tooltip="Add ticket"
|
|
|
|
vn-acl="delivery"
|
|
|
|
vn-acl-action="remove"
|
|
|
|
vn-bind="+"
|
|
|
|
fixed-bottom-right>
|
2020-04-30 10:48:52 +00:00
|
|
|
</vn-float-button>
|
2021-06-11 11:02:18 +00:00
|
|
|
<vn-ticket-descriptor-popover
|
|
|
|
vn-id="ticket-descriptor">
|
|
|
|
</vn-ticket-descriptor-popover>
|
|
|
|
<vn-client-descriptor-popover
|
|
|
|
vn-id="client-descriptor">
|
2022-03-08 14:17:18 +00:00
|
|
|
</vn-client-descriptor-popover>
|