2019-02-10 21:52:35 +00:00
|
|
|
<vn-crud-model
|
2018-07-17 06:44:31 +00:00
|
|
|
vn-id="model"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="Expeditions/filter"
|
2020-03-18 07:35:59 +00:00
|
|
|
link="{ticketFk: $ctrl.$params.id}"
|
2018-07-17 06:44:31 +00:00
|
|
|
limit="20"
|
2019-10-11 15:38:04 +00:00
|
|
|
data="expeditions"
|
|
|
|
order="created DESC"
|
|
|
|
auto-load="true">
|
2018-07-17 06:44:31 +00:00
|
|
|
</vn-crud-model>
|
2019-10-11 15:38:04 +00:00
|
|
|
<vn-data-viewer model="model">
|
2022-09-22 12:58:38 +00:00
|
|
|
<vn-card class="vn-pa-lg">
|
|
|
|
<vn-horizontal class="header">
|
|
|
|
<vn-tool-bar class="vn-mb-md">
|
|
|
|
<vn-button icon="keyboard_arrow_down"
|
2022-09-23 06:50:11 +00:00
|
|
|
label="Move"
|
2022-09-22 12:58:38 +00:00
|
|
|
ng-click="moreOptions.show($event)"
|
2022-10-07 08:47:54 +00:00
|
|
|
disabled="!$ctrl.totalChecked">
|
2022-09-22 12:58:38 +00:00
|
|
|
</vn-button>
|
|
|
|
<vn-button
|
2022-10-07 08:47:54 +00:00
|
|
|
disabled="!$ctrl.checked.length"
|
2022-10-06 08:18:19 +00:00
|
|
|
ng-click="removeConfirm.show()"
|
2022-09-22 12:58:38 +00:00
|
|
|
icon="delete"
|
|
|
|
vn-tooltip="Delete expedition">
|
|
|
|
</vn-button>
|
|
|
|
</vn-tool-bar>
|
|
|
|
<vn-one class="taxes" ng-if="$ctrl.sales.length > 0">
|
|
|
|
<p><vn-label translate>Subtotal</vn-label> {{$ctrl.ticket.totalWithoutVat | currency: 'EUR':2}}</p>
|
|
|
|
<p><vn-label translate>VAT</vn-label> {{$ctrl.ticket.totalWithVat - $ctrl.ticket.totalWithoutVat | currency: 'EUR':2}}</p>
|
|
|
|
<p><vn-label><strong>Total</strong></vn-label> <strong>{{$ctrl.ticket.totalWithVat | currency: 'EUR':2}}</strong></p>
|
|
|
|
</vn-one>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th shrink>
|
|
|
|
<vn-multi-check
|
|
|
|
model="model">
|
|
|
|
</vn-multi-check>
|
|
|
|
</vn-th>
|
|
|
|
<vn-th field="itemFk" number>Expedition</vn-th>
|
|
|
|
<vn-th field="itemFk" number>Item</vn-th>
|
|
|
|
<vn-th field="packageItemName">Name</vn-th>
|
|
|
|
<vn-th field="freightItemName">Package type</vn-th>
|
|
|
|
<vn-th field="counter" number>Counter</vn-th>
|
|
|
|
<vn-th field="externalId" number>externalId</vn-th>
|
|
|
|
<vn-th field="created" expand>Created</vn-th>
|
|
|
|
<vn-th field="state" expand>State</vn-th>
|
|
|
|
<vn-th></vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="expedition in expeditions">
|
|
|
|
<vn-td shrink>
|
|
|
|
<vn-check tabindex="-1"
|
|
|
|
ng-model="expedition.checked">
|
|
|
|
</vn-check>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number expand>{{expedition.id | zeroFill:6}}</vn-td>
|
|
|
|
<vn-td number>
|
|
|
|
<span
|
|
|
|
ng-class="{link: expedition.packagingItemFk}"
|
|
|
|
ng-click="itemDescriptor.show($event, expedition.packagingItemFk)">
|
|
|
|
{{expedition.packagingFk}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td>{{::expedition.packageItemName}}</vn-td>
|
|
|
|
<vn-td>{{::expedition.freightItemName}}</vn-td>
|
|
|
|
<vn-td number>{{::expedition.counter}}</vn-td>
|
|
|
|
<vn-td expand>{{::expedition.externalId}}</vn-td>
|
|
|
|
<vn-td shrink-datetime>{{::expedition.created | date:'dd/MM/yyyy HH:mm'}}</vn-td>
|
|
|
|
<vn-td>{{::expedition.state}}</vn-td>
|
|
|
|
<vn-td>
|
|
|
|
<vn-icon-button
|
|
|
|
vn-click-stop="$ctrl.showLog(expedition)"
|
|
|
|
vn-tooltip="Status log"
|
|
|
|
icon="history">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
2018-03-21 14:51:09 +00:00
|
|
|
</vn-card>
|
2019-10-11 15:38:04 +00:00
|
|
|
</vn-data-viewer>
|
2019-02-15 11:39:21 +00:00
|
|
|
<vn-item-descriptor-popover
|
2021-05-21 13:31:28 +00:00
|
|
|
vn-id="item-descriptor"
|
|
|
|
warehouse-fk="$ctrl.ticket.warehouseFk",
|
2020-04-30 10:48:52 +00:00
|
|
|
ticket-fk="$ctrl.ticket.id">
|
2018-09-04 10:01:44 +00:00
|
|
|
</vn-item-descriptor-popover>
|
2019-02-15 11:39:21 +00:00
|
|
|
<vn-worker-descriptor-popover
|
2021-05-21 13:31:28 +00:00
|
|
|
vn-id="worker-descriptor">
|
2019-02-15 11:39:21 +00:00
|
|
|
</vn-worker-descriptor-popover>
|
2022-10-06 08:18:19 +00:00
|
|
|
<vn-confirm
|
|
|
|
vn-id="removeConfirm"
|
|
|
|
message="Are you sure you want to delete this expedition?"
|
2018-09-04 09:57:41 +00:00
|
|
|
question="Delete expedition"
|
2022-10-06 08:18:19 +00:00
|
|
|
on-accept="$ctrl.onRemove()">
|
2022-05-04 08:35:31 +00:00
|
|
|
</vn-confirm>
|
2022-05-04 09:27:03 +00:00
|
|
|
|
2022-05-04 08:35:31 +00:00
|
|
|
<vn-popup vn-id="statusLog">
|
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
|
|
|
url="ExpeditionStates/filter"
|
|
|
|
link="{expeditionFk: $ctrl.expedition.id}"
|
|
|
|
data="expeditionStates"
|
|
|
|
order="created DESC"
|
|
|
|
auto-load="true">
|
|
|
|
</vn-crud-model>
|
|
|
|
<vn-data-viewer model="model">
|
|
|
|
<vn-card class="vn-w-md">
|
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="state">State</vn-th>
|
|
|
|
<vn-th field="worker">Worker</vn-th>
|
|
|
|
<vn-th field="created">Created</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="expeditionState in expeditionStates">
|
2022-05-12 06:47:17 +00:00
|
|
|
<vn-td>{{::expeditionState.state}}</vn-td>
|
2022-05-04 08:35:31 +00:00
|
|
|
<vn-td expand>
|
|
|
|
<span
|
|
|
|
ng-class="{'link': expeditionState.workerFk}"
|
|
|
|
ng-click="workerDescriptor.show($event, expeditionState.workerFk)">
|
|
|
|
{{::expeditionState.name || 'System' | translate}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink-datetime>{{::expeditionState.created | date:'dd/MM/yyyy HH:mm'}}</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-card>
|
|
|
|
</vn-data-viewer>
|
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="workerDescriptor">
|
|
|
|
</vn-worker-descriptor-popover>
|
2022-09-23 06:50:11 +00:00
|
|
|
</vn-popup>
|
|
|
|
|
|
|
|
<vn-menu vn-id="moreOptions">
|
|
|
|
<vn-item translate
|
|
|
|
name="sms"
|
2022-10-03 13:18:07 +00:00
|
|
|
ng-click="$ctrl.createTicket()">
|
2022-09-23 06:50:11 +00:00
|
|
|
New ticket without route
|
|
|
|
</vn-item>
|
|
|
|
<vn-item translate
|
|
|
|
name="calculatePrice"
|
2022-10-03 13:18:07 +00:00
|
|
|
ng-click="selectRoute.show()">
|
2022-09-23 06:50:11 +00:00
|
|
|
New ticket with route
|
|
|
|
</vn-item>
|
2022-10-03 13:18:07 +00:00
|
|
|
</vn-menu>
|
|
|
|
|
|
|
|
<vn-dialog
|
|
|
|
vn-id="selectRoute"
|
|
|
|
on-accept="$ctrl.createTicket($ctrl.ticket.newRoute)">
|
|
|
|
<tpl-body>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
label="Id route"
|
|
|
|
ng-model="$ctrl.ticket.newRoute">
|
|
|
|
</vn-textfield>
|
|
|
|
</tpl-body>
|
|
|
|
<tpl-buttons>
|
|
|
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
|
|
|
<button response="accept" translate>Accept</button>
|
|
|
|
</tpl-buttons>
|
|
|
|
</vn-dialog>
|