88 lines
2.7 KiB
HTML
88 lines
2.7 KiB
HTML
<div class="search-panel">
|
|
<form ng-submit="$ctrl.onSearch()">
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
label="General search"
|
|
ng-model="filter.search"
|
|
info="Search travels by id"
|
|
vn-focus>
|
|
</vn-textfield>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
label="Reference"
|
|
ng-model="filter.ref">
|
|
</vn-textfield>
|
|
<vn-textfield
|
|
vn-one
|
|
label="Total entries"
|
|
ng-model="filter.totalEntries">
|
|
</vn-textfield>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
label="Travel id"
|
|
ng-model="filter.id">
|
|
</vn-textfield>
|
|
<vn-autocomplete vn-one
|
|
label="Agency"
|
|
ng-model="filter.agencyModeFk"
|
|
url="AgencyModes"
|
|
show-field="name"
|
|
value-field="id">
|
|
</vn-autocomplete>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-date-picker
|
|
vn-one
|
|
label="Shipped from"
|
|
ng-model="$ctrl.shippedFrom">
|
|
</vn-date-picker>
|
|
<vn-date-picker
|
|
vn-one
|
|
label="Landed to"
|
|
ng-model="$ctrl.landedTo">
|
|
</vn-date-picker>
|
|
</vn-horizontal>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-autocomplete vn-one
|
|
label="Warehouse Out"
|
|
ng-model="filter.warehouseOutFk"
|
|
url="Warehouses"
|
|
show-field="name"
|
|
value-field="id">
|
|
</vn-autocomplete>
|
|
<vn-autocomplete vn-one
|
|
label="Warehouse In"
|
|
ng-model="filter.warehouseInFk"
|
|
url="Warehouses"
|
|
show-field="name"
|
|
value-field="id">
|
|
</vn-autocomplete>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-autocomplete vn-one
|
|
label="Freighter"
|
|
ng-model="filter.cargoSupplierFk"
|
|
url="Suppliers"
|
|
show-field="name"
|
|
value-field="id">
|
|
</vn-autocomplete>
|
|
<vn-autocomplete vn-one
|
|
label="Continent Out"
|
|
ng-model="filter.continent"
|
|
url="Continents"
|
|
show-field="name"
|
|
value-field="code">
|
|
</vn-autocomplete>
|
|
</vn-horizontal>
|
|
<vn-horizontal class="vn-mt-lg">
|
|
<vn-submit label="Search"></vn-submit>
|
|
</vn-horizontal>
|
|
</form>
|
|
</div>
|