From 4da65305aa1780073c9f7dc351f22143eed0ea36 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Tue, 11 Mar 2025 23:41:41 +0700 Subject: [PATCH] remove . form posNoAbb --- .../components/detail/GovernmentInformation/07_Position.vue | 2 +- .../detail/GovernmentInformation/07_PositionHistory.vue | 2 +- .../components/detail/Salary/01_PositionSalary.vue | 2 +- .../components/detail/Salary/01_PositionSalaryHistory.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue b/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue index c94945e6d..29283c712 100644 --- a/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue +++ b/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue @@ -88,7 +88,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}.${row.posNo}` + ? `${row.posNoAbb}${row.posNo}` : row.posNo ? row.posNo : "-"; diff --git a/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_PositionHistory.vue b/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_PositionHistory.vue index dadf2cdc2..e02989e1c 100644 --- a/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_PositionHistory.vue +++ b/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_PositionHistory.vue @@ -60,7 +60,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}.${row.posNo}` + ? `${row.posNoAbb}${row.posNo}` : row.posNo ? row.posNo : "-"; diff --git a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue index bd2e63563..4582b2920 100644 --- a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue +++ b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue @@ -86,7 +86,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}.${row.posNo}` + ? `${row.posNoAbb}${row.posNo}` : row.posNo ? row.posNo : "-"; diff --git a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalaryHistory.vue b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalaryHistory.vue index 71a03fcb8..37a31a381 100644 --- a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalaryHistory.vue +++ b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalaryHistory.vue @@ -61,7 +61,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}.${row.posNo}` + ? `${row.posNoAbb}${row.posNo}` : row.posNo ? row.posNo : "-";