Merge pull request 'feat: refs #7409 add dialog with validations' (!1056) from 7409-hotfix-addValidations into master
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
Reviewed-on: #1056 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
1a954459eb
|
@ -15,6 +15,9 @@ const columns = computed(() => [
|
|||
name: 'paymentDate',
|
||||
label: t('worker.balance.tableVisibleColumns.paymentDate'),
|
||||
create: true,
|
||||
columnCreate: {
|
||||
required: true,
|
||||
},
|
||||
component: 'date',
|
||||
field: 'paymentDate',
|
||||
cardVisible: true,
|
||||
|
@ -24,6 +27,9 @@ const columns = computed(() => [
|
|||
name: 'incomeTypeFk',
|
||||
label: t('worker.balance.tableVisibleColumns.incomeType'),
|
||||
create: true,
|
||||
columnCreate: {
|
||||
required: true,
|
||||
},
|
||||
component: 'select',
|
||||
attrs: {
|
||||
options: payrollComponents,
|
||||
|
@ -37,6 +43,9 @@ const columns = computed(() => [
|
|||
name: 'debit',
|
||||
label: t('worker.balance.tableVisibleColumns.debit'),
|
||||
create: true,
|
||||
columnCreate: {
|
||||
required: true,
|
||||
},
|
||||
component: 'input',
|
||||
field: 'debit',
|
||||
cardVisible: true,
|
||||
|
@ -46,6 +55,9 @@ const columns = computed(() => [
|
|||
name: 'credit',
|
||||
label: t('worker.balance.tableVisibleColumns.credit'),
|
||||
create: true,
|
||||
columnCreate: {
|
||||
required: true,
|
||||
},
|
||||
component: 'input',
|
||||
field: 'credit',
|
||||
cardVisible: true,
|
||||
|
|
Loading…
Reference in New Issue