87 lines
2.8 KiB
HTML
87 lines
2.8 KiB
HTML
|
<div class="search-panel">
|
||
|
<form id="manifold-form" ng-submit="$ctrl.onSearch()">
|
||
|
<vn-horizontal class="vn-px-lg vn-pt-lg">
|
||
|
<vn-date-picker
|
||
|
vn-one
|
||
|
label="Origin date"
|
||
|
ng-model="filter.shipped"
|
||
|
on-change="$ctrl.from = value">
|
||
|
</vn-date-picker>
|
||
|
<vn-date-picker
|
||
|
vn-one
|
||
|
label="Destination date"
|
||
|
ng-model="filter.tfShipped">
|
||
|
</vn-date-picker>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal class="vn-px-lg">
|
||
|
<vn-date-picker
|
||
|
vn-one
|
||
|
label="Origin ETD"
|
||
|
ng-model="filter.originDated"
|
||
|
required="true">
|
||
|
</vn-date-picker>
|
||
|
<vn-date-picker
|
||
|
vn-one
|
||
|
label="Destination ETD"
|
||
|
ng-model="filter.futureDated"
|
||
|
required="true">
|
||
|
</vn-date-picker>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal class="vn-px-lg">
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Max Lines Origin"
|
||
|
ng-model="filter.linesMax"
|
||
|
required="true">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Max Liters Origin"
|
||
|
ng-model="filter.litersMax"
|
||
|
required="true">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal class="vn-px-lg">
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Origin ITP"
|
||
|
ng-model="filter.ITP">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Destination ITP"
|
||
|
ng-model="filter.tfITP">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal class="vn-px-lg">
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Origin Agrupated State"
|
||
|
ng-model="filter.state">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Destination Agrupated State"
|
||
|
ng-model="filter.tfState">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal class="vn-px-lg">
|
||
|
<vn-check
|
||
|
vn-one
|
||
|
label="With problems"
|
||
|
ng-model="filter.problems"
|
||
|
triple-state="true">
|
||
|
</vn-check>
|
||
|
<vn-textfield
|
||
|
vn-one
|
||
|
label="Warehouse"
|
||
|
ng-model="filter.warehouseFk"
|
||
|
required="true">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal class="vn-px-lg vn-pb-lg vn-mt-lg">
|
||
|
<vn-submit label="Search"></vn-submit>
|
||
|
</vn-horizontal>
|
||
|
</form>
|
||
|
</div>
|