0
0
Fork 0

fix: refs #6553 fix front and translations

This commit is contained in:
Carlos Satorres 2025-01-07 10:34:07 +01:00
parent 9ab6ac9718
commit 916842ba93
3 changed files with 18 additions and 15 deletions

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>