diff --git a/src/pages/Worker/Card/WorkerFormation.vue b/src/pages/Worker/Card/WorkerFormation.vue index f8e458e1b..312acf4f2 100644 --- a/src/pages/Worker/Card/WorkerFormation.vue +++ b/src/pages/Worker/Card/WorkerFormation.vue @@ -58,6 +58,44 @@ const columns = computed(() => [ { align: 'left', name: 'invoice', + label: t('worker.formation.tableVisibleColumns.invoice'), + isTitle: true, + component: 'input', + }, + { + align: 'left', + name: 'amount', + label: t('worker.formation.tableVisibleColumns.amount'), + isTitle: true, + component: 'input', + props: (prop) => ({ + disable: true, + 'model-value': prop.row.amount, + }), + create: true, + }, + { + align: 'left', + name: 'remark', + label: t('worker.formation.tableVisibleColumns.remark'), + isTitle: true, + component: 'checkbox', + props: (prop) => ({ + disable: true, + 'model-value': prop.row.remark, + }), + create: true, + }, + { + align: 'left', + name: 'hasDiploma', + label: t('worker.formation.tableVisibleColumns.hasDiploma'), + isTitle: true, + props: (prop) => ({ + disable: true, + 'model-value': prop.row.hasDiploma, + }), + create: true, }, ]);