salix/modules/worker/front/department/summary/index.html

68 lines
2.4 KiB
HTML
Raw Normal View History

2023-05-15 08:43:06 +00:00
<vn-card class="summary">
<h5>
2023-05-15 11:15:33 +00:00
<a ng-if="::$ctrl.department.id"
vn-tooltip="Go to the department"
ui-sref="department.card.summary({id: {{::$ctrl.department.id}}})"
2023-05-15 08:43:06 +00:00
name="goToSummary">
<vn-icon-button icon="launch"></vn-icon-button>
</a>
2023-05-15 11:15:33 +00:00
<span>{{department.name}}</span>
2023-05-15 08:43:06 +00:00
</h5>
<vn-horizontal class="vn-pa-md">
<vn-one>
<h4 ng-show="$ctrl.isHr">
<a
2023-05-15 11:15:33 +00:00
ui-sref="department.card.basicData({id:$ctrl.department.id})">
2023-05-15 08:43:06 +00:00
<span translate vn-tooltip="Go to">Basic data</span>
</a>
</h4>
<h4
translates
ng-show="!$ctrl.isHr">
Basic data
</h4>
2023-05-15 11:15:33 +00:00
<vn-label-value label="Nombre:"
value="{{department.name}}">
2023-05-15 08:43:06 +00:00
</vn-label-value>
2023-05-15 11:15:33 +00:00
<vn-label-value label="Code:" no-ellipsize
value="{{department.code}}">
2023-05-15 08:43:06 +00:00
</vn-label-value>
2023-05-15 11:15:33 +00:00
<vn-label-value label="Chat:"
value="{{department.chat}}">
2023-05-15 08:43:06 +00:00
</vn-label-value>
<vn-label-value
2023-05-15 11:15:33 +00:00
label="Boss:">
2023-05-15 08:43:06 +00:00
<span
ng-click="workerDescriptor.show($event, worker.boss.id)"
class="link">
{{::worker.boss.nickname}}
</span>
</vn-label-value>
2023-05-15 11:15:33 +00:00
<vn-label-value label="Email:"
value="{{department.notificationEmail}}">
2023-05-15 08:43:06 +00:00
</vn-label-value>
2023-05-15 11:15:33 +00:00
<vn-label-value label="Cliente autoconsumo"
value="{{department.workerFk}}">
2023-05-15 08:43:06 +00:00
</vn-label-value>
</vn-one>
<vn-one>
<h4 translate>User data</h4>
<vn-label-value label="User id"
value="{{worker.userFk}}">
</vn-label-value>
<vn-label-value label="User"
value="{{worker.user.name}}">
</vn-label-value>
<vn-label-value label="Role"
value="{{worker.user.role.name}}">
</vn-label-value>
<vn-label-value label="Extension"
value="{{worker.sip.extension}}">
</vn-label-value>
</vn-one>
</vn-horizontal>
</vn-card>
2023-05-15 11:15:33 +00:00
<vn-worker-department-descriptor-popover
vn-id="workerDepartmentDescriptor">
</vn-worker-department-descriptor-popover>