2018-08-07 09:57:11 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
2019-04-15 09:06:42 +00:00
|
|
|
url="/claim/api/Claims/filter"
|
2018-08-07 09:57:11 +00:00
|
|
|
limit="20"
|
2018-08-07 10:48:55 +00:00
|
|
|
data="claims"
|
2019-04-15 09:06:42 +00:00
|
|
|
order="claimStateFk ASC, created DESC">
|
2018-08-07 09:57:11 +00:00
|
|
|
</vn-crud-model>
|
2019-01-30 22:47:06 +00:00
|
|
|
<div class="content-block">
|
2018-08-07 09:57:11 +00:00
|
|
|
<div class="vn-list">
|
|
|
|
<vn-card pad-medium-h>
|
|
|
|
<vn-searchbar
|
2018-09-04 13:08:36 +00:00
|
|
|
panel="vn-claim-search-panel"
|
2019-04-15 09:06:42 +00:00
|
|
|
on-search="$ctrl.onSearch($params)"
|
2019-04-12 12:33:08 +00:00
|
|
|
info="Search claim by id or client name"
|
2018-09-17 12:54:38 +00:00
|
|
|
vn-focus>
|
2018-08-07 09:57:11 +00:00
|
|
|
</vn-searchbar>
|
|
|
|
</vn-card>
|
|
|
|
</div>
|
2019-02-10 21:52:35 +00:00
|
|
|
<vn-card margin-medium-v compact>
|
2018-08-07 10:48:55 +00:00
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="id" number>Id</vn-th>
|
|
|
|
<vn-th field="clientFk">Client</vn-th>
|
2019-02-10 21:52:35 +00:00
|
|
|
<vn-th field="created" center>Created</vn-th>
|
2018-08-07 10:48:55 +00:00
|
|
|
<vn-th field="workerFk">Worker</vn-th>
|
|
|
|
<vn-th field="claimStateFk">State</vn-th>
|
|
|
|
<vn-th></vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
2018-12-12 08:20:31 +00:00
|
|
|
<a
|
|
|
|
ng-repeat="claim in claims"
|
2019-01-22 12:18:20 +00:00
|
|
|
class="{{::$ctrl.compareDate(ticket.shipped)}} clickable vn-tr searchResult"
|
2018-12-12 08:20:31 +00:00
|
|
|
ui-sref="claim.card.summary({id: claim.id})">
|
2018-08-07 10:48:55 +00:00
|
|
|
<vn-td number>{{::claim.id}}</vn-td>
|
2019-02-10 21:52:35 +00:00
|
|
|
<vn-td expand>
|
2019-04-24 07:10:56 +00:00
|
|
|
<span class="link" ng-click="$ctrl.showClientDescriptor($event, claim.clientFk)">
|
2019-04-15 09:06:42 +00:00
|
|
|
{{::claim.name}}
|
2018-09-06 10:47:25 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
2019-02-27 16:04:00 +00:00
|
|
|
<vn-td center>{{::claim.created | dateTime:'dd/MM/yyyy'}}</vn-td>
|
2019-02-15 11:39:21 +00:00
|
|
|
<vn-td expand>
|
|
|
|
<span
|
|
|
|
class="link"
|
2019-04-24 07:10:56 +00:00
|
|
|
ng-click="$ctrl.showWorkerDescriptor($event, claim.workerFk)">
|
2019-04-15 09:06:42 +00:00
|
|
|
{{::claim.nickName}}
|
2019-02-15 11:39:21 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
2018-08-07 10:48:55 +00:00
|
|
|
<vn-td>
|
2019-02-10 21:52:35 +00:00
|
|
|
<span class="chip {{::$ctrl.stateColor(claim)}}">
|
2019-04-15 09:06:42 +00:00
|
|
|
{{::claim.description}}
|
2019-02-10 21:52:35 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td shrink>
|
2018-08-07 09:57:11 +00:00
|
|
|
<vn-icon-button
|
2018-11-21 13:30:32 +00:00
|
|
|
ng-click="$ctrl.preview($event, claim)"
|
2018-08-07 09:57:11 +00:00
|
|
|
vn-tooltip="Preview"
|
|
|
|
icon="desktop_windows">
|
|
|
|
</vn-icon-button>
|
2018-08-07 10:48:55 +00:00
|
|
|
</vn-td>
|
2018-12-12 08:20:31 +00:00
|
|
|
</a>
|
2018-08-07 10:48:55 +00:00
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
2018-08-07 09:57:11 +00:00
|
|
|
</vn-card>
|
2019-01-20 17:48:03 +00:00
|
|
|
<vn-pagination model="model"></vn-pagination>
|
2018-08-31 12:35:20 +00:00
|
|
|
</div>
|
2019-02-15 11:39:21 +00:00
|
|
|
<vn-client-descriptor-popover vn-id="clientDescriptor"></vn-client-descriptor-popover>
|
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="workerDescriptor"
|
2019-04-25 12:24:02 +00:00
|
|
|
worker-fk="$ctrl.selectedWorker">
|
2019-02-15 11:39:21 +00:00
|
|
|
</vn-worker-descriptor-popover>
|
2018-09-05 11:47:15 +00:00
|
|
|
<vn-dialog class="dialog-summary"
|
|
|
|
vn-id="dialog-summary-claim">
|
|
|
|
<tpl-body>
|
|
|
|
<vn-claim-summary claim="$ctrl.claimSelected"></vn-claim-summary>
|
|
|
|
</tpl-body>
|
2019-09-05 11:06:40 +00:00
|
|
|
</vn-dialog>
|
|
|
|
<vn-scroll-up></vn-scroll-up>
|