58 lines
1.8 KiB
HTML
58 lines
1.8 KiB
HTML
|
<div class="search-panel">
|
||
|
<form ng-submit="$ctrl.onSearch()">
|
||
|
<vn-horizontal>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="General search"
|
||
|
model="filter.search"
|
||
|
vn-focus>
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal>
|
||
|
<vn-autocomplete
|
||
|
vn-one
|
||
|
field="filter.workerFk"
|
||
|
url="/client/api/Clients/activeWorkersWithRole"
|
||
|
show-field="nickname"
|
||
|
search-function="{firstName: $search}"
|
||
|
value-field="id"
|
||
|
where="{role: 'employee'}"
|
||
|
label="Worker">
|
||
|
</vn-autocomplete>
|
||
|
<vn-autocomplete
|
||
|
vn-one
|
||
|
label="Agency"
|
||
|
field="filter.agencyModeFk"
|
||
|
url="/agency/api/AgencyModes/isActive"
|
||
|
show-field="name"
|
||
|
value-field="id">
|
||
|
</vn-autocomplete>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal>
|
||
|
<vn-autocomplete
|
||
|
vn-one
|
||
|
label="Vehicle"
|
||
|
field="filter.vehicleFk"
|
||
|
url="/route/api/Vehicles"
|
||
|
show-field="numberPlate"
|
||
|
value-field="id">
|
||
|
</vn-autocomplete>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="m³"
|
||
|
model="filter.m3">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Description"
|
||
|
model="filter.description">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal margin-large-top>
|
||
|
<vn-submit label="Search"></vn-submit>
|
||
|
</vn-horizontal>
|
||
|
</form>
|
||
|
</div>
|