2019-01-30 23:33:43 +00:00
|
|
|
<div class="search-panel">
|
2018-09-04 13:08:36 +00:00
|
|
|
<form ng-submit="$ctrl.onSearch()">
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
2018-11-05 09:14:31 +00:00
|
|
|
label="General search"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.search"
|
2019-04-12 12:33:08 +00:00
|
|
|
info="Search claim by id or client name"
|
2018-09-04 13:08:36 +00:00
|
|
|
vn-focus>
|
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
2018-11-05 09:14:31 +00:00
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
label="Client"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.client">
|
2018-11-05 09:14:31 +00:00
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
2018-09-04 13:08:36 +00:00
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
2018-09-05 05:54:45 +00:00
|
|
|
label="Claim Id"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.id">
|
2018-09-04 13:08:36 +00:00
|
|
|
</vn-textfield>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
2018-09-05 05:54:45 +00:00
|
|
|
label="Client Id"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.clientFk">
|
2018-09-04 13:08:36 +00:00
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-autocomplete
|
|
|
|
vn-one
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.salesPersonFk"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="Clients/activeWorkersWithRole"
|
2019-09-02 10:23:49 +00:00
|
|
|
search-function="{firstName: $search}"
|
|
|
|
value-field="id"
|
|
|
|
where="{role: 'employee'}"
|
|
|
|
label="Salesperson">
|
|
|
|
<tpl-item>{{firstName}} {{name}}</tpl-item>
|
2018-09-04 13:08:36 +00:00
|
|
|
</vn-autocomplete>
|
|
|
|
<vn-autocomplete
|
|
|
|
vn-one
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.attenderFk"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="Clients/activeWorkersWithRole"
|
2018-12-12 08:20:31 +00:00
|
|
|
search-function="{firstName: $search}"
|
|
|
|
value-field="id"
|
|
|
|
where="{role: 'employee'}"
|
2019-09-02 10:23:49 +00:00
|
|
|
label="Attended by">
|
2018-09-04 13:08:36 +00:00
|
|
|
<tpl-item>{{firstName}} {{name}}</tpl-item>
|
|
|
|
</vn-autocomplete>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
2019-09-02 10:23:49 +00:00
|
|
|
<vn-autocomplete vn-one
|
|
|
|
label="State"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.claimStateFk"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="ClaimStates"
|
2019-09-02 10:23:49 +00:00
|
|
|
show-field="description"
|
|
|
|
value-field="id">
|
|
|
|
<tpl-item>{{description}}</tpl-item>
|
|
|
|
</vn-autocomplete>
|
2018-09-04 13:08:36 +00:00
|
|
|
<vn-date-picker
|
|
|
|
vn-one
|
|
|
|
label="Created"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="filter.created">
|
2018-09-04 13:08:36 +00:00
|
|
|
</vn-date-picker>
|
|
|
|
</vn-horizontal>
|
2019-10-04 22:16:57 +00:00
|
|
|
<vn-horizontal class="vn-mt-lg">
|
2018-09-04 13:08:36 +00:00
|
|
|
<vn-submit label="Search"></vn-submit>
|
|
|
|
</vn-horizontal>
|
|
|
|
</form>
|
|
|
|
</div>
|