72 lines
2.1 KiB
HTML
72 lines
2.1 KiB
HTML
<vn-crud-model
|
|
vn-id="model"
|
|
url="ExpeditionTrucks"
|
|
where="{roadmapFk: $ctrl.$params.id}"
|
|
order="eta ASC"
|
|
data="$ctrl.expeditionTrucks"
|
|
auto-load="true">
|
|
</vn-crud-model>
|
|
<vn-watcher
|
|
vn-id="watcher"
|
|
data="$ctrl.expeditionTrucks"
|
|
form="form">
|
|
</vn-watcher>
|
|
<form class="vn-w-md" name="form" ng-submit="$ctrl.onSubmit()">
|
|
<vn-card class="vn-pa-lg">
|
|
<vn-horizontal ng-repeat="expeditionTruck in $ctrl.expeditionTrucks">
|
|
<vn-autocomplete vn-one
|
|
label="Warehouse"
|
|
ng-model="expeditionTruck.warehouseFk"
|
|
url="Warehouses"
|
|
show-field="name"
|
|
value-field="id"
|
|
vn-focus
|
|
rule>
|
|
</vn-autocomplete>
|
|
<vn-date-picker vn-one
|
|
label="ETA date"
|
|
ng-model="expeditionTruck.eta"
|
|
rule>
|
|
</vn-date-picker>
|
|
<vn-input-time
|
|
vn-one
|
|
label="ETA hour"
|
|
ng-model="expeditionTruck.eta">
|
|
</vn-input-time>
|
|
<vn-textArea
|
|
vn-one
|
|
label="Description"
|
|
ng-model="expeditionTruck.description"
|
|
rule>
|
|
</vn-textArea>
|
|
<vn-none>
|
|
<vn-icon-button
|
|
vn-tooltip="Remove stop"
|
|
icon="delete"
|
|
ng-click="model.remove($index)"
|
|
tabindex="-1">
|
|
</vn-icon-button>
|
|
</vn-none>
|
|
</vn-horizontal>
|
|
<vn-one>
|
|
<vn-icon-button
|
|
vn-bind="+"
|
|
vn-tooltip="Add stop"
|
|
icon="add_circle"
|
|
ng-click="$ctrl.add()">
|
|
</vn-icon-button>
|
|
</vn-one>
|
|
</vn-card>
|
|
<vn-button-bar>
|
|
<vn-submit
|
|
disabled="!watcher.dataChanged()"
|
|
label="Save">
|
|
</vn-submit>
|
|
</vn-button-bar>
|
|
</form>
|
|
<vn-confirm
|
|
vn-id="confirm"
|
|
question="Delete stop?"
|
|
on-accept="$ctrl.removeTicketFromRoute($index)">
|
|
</vn-confirm>
|