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

75 lines
2.8 KiB
HTML
Raw Normal View History

2018-08-07 09:57:11 +00:00
<vn-crud-model
vn-id="model"
2018-08-07 10:48:55 +00:00
url="/claim/api/Claims"
2018-08-07 09:57:11 +00:00
filter="::$ctrl.filter"
limit="20"
2018-08-07 10:48:55 +00:00
data="claims"
2018-08-07 09:57:11 +00:00
auto-load="false">
</vn-crud-model>
<div margin-medium>
<div class="vn-list">
<vn-card pad-medium-h>
<vn-searchbar
panel="vn-claim-search-panel"
2018-08-07 09:57:11 +00:00
model="model"
expr-builder="$ctrl.exprBuilder(param, value)"
auto-load="true"
vn-focus>
2018-08-07 09:57:11 +00:00
</vn-searchbar>
</vn-card>
</div>
2018-12-14 11:56:21 +00:00
<vn-card margin-medium-v pad-medium 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>
<vn-th field="created">Created</vn-th>
<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"
ui-sref="claim.card.summary({id: claim.id})">
2018-08-07 10:48:55 +00:00
<vn-td number>{{::claim.id}}</vn-td>
2018-09-06 10:47:25 +00:00
<vn-td>
<span class="link" ng-click="$ctrl.showDescriptor($event, claim.client.id)">
{{::claim.client.name}}
</span>
</vn-td>
2018-08-07 10:48:55 +00:00
<vn-td>{{::claim.created | date:'dd/MM/yyyy'}}</vn-td>
<vn-td>{{::claim.worker.firstName}} {{::claim.worker.name}}</vn-td>
2019-01-16 14:05:35 +00:00
<vn-td class="{{::claim.claimState.description}}">{{::claim.claimState.description}}</vn-td>
2018-08-07 10:48:55 +00:00
<vn-td>
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-empty-rows ng-if="model.data.length === 0" translate>
No results
</vn-empty-rows>
<vn-empty-rows ng-if="model.data === null" translate>
Enter a new search
2018-09-19 13:05:07 +00:00
</vn-empty-rows>
2018-08-07 10:48:55 +00:00
</vn-table>
2018-08-07 09:57:11 +00:00
</vn-card>
<vn-pagination
model="model"
scroll-selector="ui-view">
</vn-pagination>
2018-08-31 12:35:20 +00:00
</div>
2018-09-05 11:47:15 +00:00
<vn-client-descriptor-popover vn-id="descriptor"></vn-client-descriptor-popover>
<vn-dialog class="dialog-summary"
vn-id="dialog-summary-claim">
<tpl-body>
<vn-claim-summary claim="$ctrl.claimSelected"></vn-claim-summary>
</tpl-body>
</vn-dialog>