8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
3 changed files with 18 additions and 15 deletions
Showing only changes of commit 916842ba93 - Show all commits

View File

@ -633,6 +633,13 @@ worker:
isSsDiscounted: SS Bonification
hasMachineryAuthorized: Machinery authorized
isDisable: Disable
business: Business
started: Started
ended: Ended
reasonEnd: Reason End
department: Departament
workerBusinessCategory: Worker Business Category
notes: Notes
notificationsManager:
activeNotifications: Active notifications
availableNotifications: Available notifications

View File

@ -638,6 +638,13 @@ worker:
isSsDiscounted: Bonificación SS
hasMachineryAuthorized: Autorizado para maquinaria
isDisable: Deshabilitado
business: Contrato
started: Antigüedad
ended: Fin
reasonEnd: Motivo finalización
department: Departamento
workerBusinessCategory: Categoria profesional
notes: Notas
notificationsManager:
activeNotifications: Notificaciones activas
availableNotifications: Notificaciones disponibles

View File

@ -194,7 +194,6 @@ const filter = {
:value="worker.user?.emailUser?.email"
copy
/>
{{ worker }}
<VnLv :label="t('worker.summary.role')">
<template #value>
<span class="link">
@ -218,30 +217,20 @@ const filter = {
/>
<VnLv
:label="t('worker.summary.started')"
:value="toDate(worker?.business?.started)"
:value="toDate(worker?.business[0]?.started)"
/>
<VnLv
:label="t('worker.summary.ended')"
:value="toDate(worker?.business?.ended)"
:value="toDate(worker?.business[0]?.ended)"
/>
<VnLv
:label="t('worker.summary.reasonEnd')"
:value="worker?.business?.reasonEnd?.reason"
/>
<VnLv
:label="t('worker.summary.department')"
:value="worker?.business?.department?.name"
/>
<VnLv
:label="t('worker.summary.workerBusinessCategory')"
:value="
worker?.business?.workerBusinessProfessionalCategory?.description
"
:value="worker?.business[0]?.reasonEnd?.reason"
/>
<VnLv
:label="t('worker.summary.notes')"
:value="worker?.business?.notes"
:value="worker?.business[0]?.notes"
/>
</QCard>
</template>