forked from verdnatura/salix-front
fix: refs #6553 fix front and translations
This commit is contained in:
parent
9ab6ac9718
commit
916842ba93
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue