salix/modules/zone/front/location/index.html

29 lines
799 B
HTML
Raw Permalink Normal View History

2018-12-04 12:18:27 +00:00
<vn-crud-model
vn-id="model"
url="Zones/{{$ctrl.$params.id}}/getLeaves"
filter="$ctrl.filter">
2018-12-04 12:18:27 +00:00
</vn-crud-model>
2019-11-10 10:08:44 +00:00
<vn-portal slot="topbar">
2020-03-13 19:33:12 +00:00
<vn-searchbar
on-search="$ctrl.onSearch($params)"
auto-state="false">
</vn-searchbar>
2019-11-10 10:08:44 +00:00
</vn-portal>
2019-10-08 07:23:29 +00:00
<div class="vn-w-md">
2020-03-13 19:33:12 +00:00
<vn-card class="vn-pa-lg">
<vn-treeview
vn-id="treeview"
root-label="Locations"
fetch-func="$ctrl.onFetch($item)"
sort-func="$ctrl.onSort($a, $b)">
2023-06-21 11:34:27 +00:00
<vn-check acl-role="deliveryAssistant"
2020-03-13 19:33:12 +00:00
ng-model="item.selected"
2023-06-12 12:58:28 +00:00
on-change="$ctrl.onSelection(value, item)"
2020-03-13 19:33:12 +00:00
triple-state="true"
ng-click="$event.preventDefault()"
2023-06-12 12:58:28 +00:00
label="{{::item.name}}">
2020-03-13 19:33:12 +00:00
</vn-check>
</vn-treeview>
2019-02-01 16:11:14 +00:00
</vn-card>
2019-10-08 11:06:50 +00:00
</div>