55 lines
1.7 KiB
HTML
55 lines
1.7 KiB
HTML
<vn-descriptor-content module="zone">
|
|
<slot-menu>
|
|
<ul class="vn-list">
|
|
<li>
|
|
<div class="vn-item"
|
|
ng-click="deleteZone.show()"
|
|
translate>
|
|
Delete
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</slot-menu>
|
|
<slot-body>
|
|
<div class="attributes">
|
|
<vn-label-value
|
|
label="Id"
|
|
value="{{$ctrl.zone.id}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Name"
|
|
value="{{$ctrl.zone.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Warehouse"
|
|
value="{{$ctrl.zone.warehouse.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Agency"
|
|
value="{{$ctrl.zone.agencyMode.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Closing hour (ETD)"
|
|
value="{{$ctrl.zone.hour | date: 'HH:mm'}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Traveling days"
|
|
value="{{$ctrl.zone.travelingDays}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Price"
|
|
value="{{$ctrl.zone.price | currency: 'EUR': 2}}">
|
|
</vn-label-value>
|
|
<vn-label-value
|
|
label="Bonus"
|
|
value="{{$ctrl.zone.bonus | currency: 'EUR': 2}}">
|
|
</vn-label-value>
|
|
</div>
|
|
</slot-body>
|
|
</vn-descriptor-content>
|
|
<vn-confirm
|
|
vn-id="deleteZone"
|
|
on-accept="$ctrl.onDeleteAccept()"
|
|
question="Are you sure you want to delete this zone?"
|
|
message="This zone will be removed">
|
|
</vn-confirm> |