77 lines
2.4 KiB
HTML
77 lines
2.4 KiB
HTML
<div class="search-panel">
|
|
<form ng-submit="$ctrl.onSearch()">
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
label="General search"
|
|
model="filter.search"
|
|
info="Search routes by id"
|
|
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-date-picker vn-one
|
|
label="From"
|
|
model="filter.from">
|
|
</vn-date-picker>
|
|
<vn-date-picker vn-one
|
|
label="To"
|
|
model="filter.to">
|
|
</vn-date-picker>
|
|
</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-autocomplete
|
|
vn-one
|
|
label="Warehouse"
|
|
field="filter.warehouseFk"
|
|
url="/route/api/Warehouses"
|
|
show-field="name"
|
|
value-field="id">
|
|
</vn-autocomplete>
|
|
<vn-textfield
|
|
vn-one
|
|
label="Description"
|
|
model="filter.description">
|
|
</vn-textfield>
|
|
</vn-horizontal>
|
|
<vn-horizontal class="vn-mt-lg">
|
|
<vn-submit label="Search"></vn-submit>
|
|
</vn-horizontal>
|
|
</form>
|
|
</div>
|