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 isSsDiscounted: SS Bonification
hasMachineryAuthorized: Machinery authorized hasMachineryAuthorized: Machinery authorized
isDisable: Disable isDisable: Disable
business: Business
started: Started
ended: Ended
reasonEnd: Reason End
department: Departament
workerBusinessCategory: Worker Business Category
notes: Notes
notificationsManager: notificationsManager:
activeNotifications: Active notifications activeNotifications: Active notifications
availableNotifications: Available notifications availableNotifications: Available notifications

View File

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

View File

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