salix/modules/route/front/descriptor/index.html

76 lines
2.4 KiB
HTML
Raw Normal View History

2020-05-06 12:38:09 +00:00
<vn-descriptor-content
module="route"
description="$ctrl.route.name"
summary="$ctrl.$.summary">
<slot-menu>
2020-05-06 12:38:09 +00:00
<vn-item
ng-click="$ctrl.showRouteReport()"
translate>
Show route report
</vn-item>
<vn-item
ng-click="$ctrl.sendRouteReport()"
translate>
Send route report
</vn-item>
<vn-item
ng-click="updateVolumeConfirmation.show()"
2023-06-21 11:34:27 +00:00
vn-acl="deliveryAssistant"
2020-05-06 12:38:09 +00:00
vn-acl-action="remove"
translate>
Update volume
</vn-item>
2022-11-15 07:24:10 +00:00
<vn-item
ng-click="$ctrl.deleteCurrentRoute()"
2023-06-21 11:34:27 +00:00
vn-acl="deliveryAssistant"
2022-11-15 07:24:10 +00:00
vn-acl-action="remove"
translate>
Delete route
</vn-item>
</slot-menu>
<slot-body>
2019-03-22 10:07:44 +00:00
<div class="attributes">
<vn-label-value
2023-06-12 12:58:28 +00:00
label="Date"
value="{{$ctrl.route.created | date: 'dd/MM/yyyy'}}">
2019-03-22 10:07:44 +00:00
</vn-label-value>
<vn-label-value
2023-06-12 12:58:28 +00:00
label="Agency"
2019-03-22 10:07:44 +00:00
value="{{$ctrl.route.agencyMode.name}}">
</vn-label-value>
<vn-label-value
2023-06-12 12:58:28 +00:00
label="Zone"
2019-10-16 05:18:05 +00:00
value="{{$ctrl.route.zone.name}}">
</vn-label-value>
<vn-label-value
2023-06-12 12:58:28 +00:00
label="Volume"
2019-03-22 10:07:44 +00:00
value="{{$ctrl.route.m3 | dashIfEmpty}} / {{$ctrl.route.vehicle.m3 | dashIfEmpty}} m³">
</vn-label-value>
<vn-label-value
2023-06-12 12:58:28 +00:00
label="Description"
2019-03-22 10:07:44 +00:00
value="{{$ctrl.route.description}}">
</vn-label-value>
</div>
<div class="icons">
<vn-icon
vn-tooltip="Volume exceded"
icon="icon-volume"
2020-12-04 12:40:58 +00:00
ng-if="$ctrl.route.m3 > $ctrl.route.vehicle.m3 && $ctrl.route.vehicle.m3 != NULL">
2019-03-22 10:07:44 +00:00
</vn-icon>
</div>
<div class="quicklinks">
<div ng-transclude="btnOne"></div>
<div ng-transclude="btnTwo"></div>
<div ng-transclude="btnThree"></div>
</div>
2019-03-22 10:07:44 +00:00
</div>
</div>
<vn-confirm
vn-id="updateVolumeConfirmation"
on-accept="$ctrl.updateVolume()"
question="Are you sure you want to update the volume?">
</vn-confirm>
<vn-popup vn-id="summary">
<vn-route-summary route="$ctrl.route"></vn-route-summary>
2023-06-12 12:58:28 +00:00
</vn-popup>