diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml
index ef5e02b12..548981de1 100644
--- a/src/i18n/locale/en.yml
+++ b/src/i18n/locale/en.yml
@@ -260,6 +260,7 @@ globals:
ticketsMonitor: Tickets monitor
clientsActionsMonitor: Clients and actions
serial: Serial
+ medical: Mutual
created: Created
worker: Worker
now: Now
@@ -878,6 +879,7 @@ worker:
timeControl: Time control
locker: Locker
balance: Balance
+ medical: Medical
list:
name: Name
email: Email
@@ -957,6 +959,15 @@ worker:
amount: Importe
remark: Bonficado
hasDiploma: Diploma
+ medical:
+ tableVisibleColumns:
+ date: Date
+ time: Hour
+ center: Formation Center
+ invoice: Invoice
+ amount: Amount
+ isFit: Fit
+ remark: Observations
imageNotFound: Image not found
balance:
tableVisibleColumns:
diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml
index 7143bf96f..697e6c38c 100644
--- a/src/i18n/locale/es.yml
+++ b/src/i18n/locale/es.yml
@@ -264,6 +264,7 @@ globals:
ticketsMonitor: Monitor de tickets
clientsActionsMonitor: Clientes y acciones
serial: Facturas por serie
+ medical: Mutua
created: Fecha creación
worker: Trabajador
now: Ahora
@@ -881,6 +882,8 @@ worker:
timeControl: Control de horario
locker: Taquilla
balance: Balance
+ formation: Formación
+ medical: Mutua
list:
name: Nombre
email: Email
@@ -951,6 +954,15 @@ worker:
amount: Importe
remark: Bonficado
hasDiploma: Diploma
+ medical:
+ tableVisibleColumns:
+ date: Fecha
+ time: Hora
+ center: Centro de Formación
+ invoice: Factura
+ amount: Importe
+ isFit: Apto
+ remark: Observaciones
imageNotFound: No se ha encontrado la imagen
balance:
tableVisibleColumns:
diff --git a/src/pages/Worker/Card/WorkerMedical.vue b/src/pages/Worker/Card/WorkerMedical.vue
new file mode 100644
index 000000000..6bca4ae85
--- /dev/null
+++ b/src/pages/Worker/Card/WorkerMedical.vue
@@ -0,0 +1,91 @@
+
+
+
+
diff --git a/src/router/modules/worker.js b/src/router/modules/worker.js
index f80df5e06..2a523e7fe 100644
--- a/src/router/modules/worker.js
+++ b/src/router/modules/worker.js
@@ -25,6 +25,7 @@ export default {
'WorkerLocker',
'WorkerBalance',
'WorkerFormation',
+ 'WorkerMedical',
],
},
children: [
@@ -196,6 +197,15 @@ export default {
},
component: () => import('src/pages/Worker/Card/WorkerFormation.vue'),
},
+ {
+ name: 'WorkerMedical',
+ path: 'medical',
+ meta: {
+ title: 'medical',
+ icon: 'medical_information',
+ },
+ component: () => import('src/pages/Worker/Card/WorkerMedical.vue'),
+ },
],
},
],