2019-01-28 15:24:45 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
|
|
|
url="/agency/api/Workers"
|
2019-01-29 15:37:59 +00:00
|
|
|
include="::$ctrl.include"
|
2019-01-28 15:24:45 +00:00
|
|
|
limit="20"
|
|
|
|
data="workers"
|
2019-01-29 15:37:59 +00:00
|
|
|
auto-load="false">
|
2019-01-28 15:24:45 +00:00
|
|
|
</vn-crud-model>
|
|
|
|
<div class="index-block">
|
|
|
|
<div class="vn-list">
|
|
|
|
<vn-card pad-medium-h>
|
|
|
|
<vn-searchbar
|
|
|
|
panel="vn-worker-search-panel"
|
|
|
|
model="model"
|
|
|
|
expr-builder="$ctrl.exprBuilder(param, value)"
|
|
|
|
vn-focus>
|
|
|
|
</vn-searchbar>
|
|
|
|
</vn-card>
|
|
|
|
<vn-card margin-medium-v>
|
|
|
|
<a ng-repeat="worker in workers track by worker.id"
|
2019-01-29 20:00:27 +00:00
|
|
|
ui-sref="worker.card.summary({id: worker.id})"
|
2019-01-28 15:24:45 +00:00
|
|
|
translate-attr="{title: 'View worker'}"
|
|
|
|
class="vn-list-item">
|
|
|
|
<vn-horizontal ng-click="$ctrl.onClick($event)">
|
|
|
|
<vn-one>
|
2019-01-29 15:37:59 +00:00
|
|
|
<h6>{{::worker.firstName}} {{::worker.name}}</h6>
|
2019-01-28 15:24:45 +00:00
|
|
|
<vn-label-value label="Id"
|
|
|
|
value="{{::worker.id}}">
|
|
|
|
</vn-label-value>
|
2019-01-29 15:37:59 +00:00
|
|
|
<vn-label-value label="User"
|
|
|
|
value="{{::worker.user.name}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Email"
|
|
|
|
value="{{::worker.user.email}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Fiscal identifier"
|
|
|
|
value="{{::worker.client.fi}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Department"
|
|
|
|
value="{{::worker.department.department}}">
|
2019-01-28 15:24:45 +00:00
|
|
|
</vn-label-value>
|
|
|
|
</vn-one>
|
|
|
|
<vn-horizontal class="buttons">
|
|
|
|
<vn-icon
|
|
|
|
ng-click="$ctrl.preview($event, worker)"
|
|
|
|
vn-tooltip="Preview"
|
|
|
|
icon="desktop_windows">
|
|
|
|
</vn-icon>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-horizontal>
|
|
|
|
</a>
|
|
|
|
<vn-empty-rows class="vn-list-item" style="text-align: center"
|
|
|
|
ng-if="model.data.length === 0" translate>
|
|
|
|
No results
|
|
|
|
</vn-empty-rows>
|
|
|
|
<vn-empty-rows class="vn-list-item" style="text-align: center"
|
|
|
|
ng-if="model.data === null" translate>
|
|
|
|
Enter a new search
|
|
|
|
</vn-empty-rows>
|
|
|
|
</vn-card>
|
|
|
|
<vn-pagination model="model"></vn-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<vn-dialog vn-id="preview" class="dialog-summary">
|
|
|
|
<tpl-body>
|
|
|
|
<vn-worker-summary worker="$ctrl.selectedWorker"></vn-worker-summary>
|
|
|
|
</tpl-body>
|
|
|
|
</vn-dialog>
|