salix/modules/claim/front/index/index.html

84 lines
3.0 KiB
HTML
Raw Normal View History

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-10-08 07:23:29 +00:00
order="claimStateFk ASC, created DESC"
auto-load="true">
2018-08-07 09:57:11 +00:00
</vn-crud-model>
2019-01-30 22:47:06 +00:00
<div class="content-block">
2019-10-08 07:23:29 +00:00
<vn-card pad-medium-h class="vn-w-sm">
<vn-searchbar
panel="vn-claim-search-panel"
on-search="$ctrl.onSearch($params)"
info="Search claim by id or client name"
vn-focus>
</vn-searchbar>
</vn-card>
<vn-data-viewer
model="model"
class="vn-w-md"
margin-medium-v>
<vn-card>
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"
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>
<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}}
</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
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>
2019-10-08 07:23:29 +00:00
</vn-card>
</vn-data-viewer>
2018-08-31 12:35:20 +00:00
</div>
2019-10-08 07:23:29 +00:00
<vn-client-descriptor-popover
vn-id="clientDescriptor">
</vn-client-descriptor-popover>
<vn-worker-descriptor-popover
vn-id="workerDescriptor"
worker-fk="$ctrl.selectedWorker">
</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>