From 22cd0f025540c1dff2f44c6a7a77c594a1dad2c1 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Tue, 19 Mar 2024 11:13:54 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=87=E0=B8=B4=E0=B8=99=E0=B9=80?= =?UTF-8?q?=E0=B8=94=E0=B8=B7=E0=B8=AD=E0=B8=99/=E0=B8=84=E0=B9=88?= =?UTF-8?q?=E0=B8=B2=E0=B8=88=E0=B9=89=E0=B8=B2=E0=B8=87>>=E0=B8=9C?= =?UTF-8?q?=E0=B8=B1=E0=B8=87=E0=B8=9A=E0=B8=B1=E0=B8=8D=E0=B8=8A=E0=B8=B5?= =?UTF-8?q?=E0=B8=84=E0=B9=88=E0=B8=B2=E0=B8=88=E0=B9=89=E0=B8=B2=E0=B8=87?= =?UTF-8?q?=E0=B8=A5=E0=B8=B9=E0=B8=81=E0=B8=88=E0=B9=89=E0=B8=B2=E0=B8=87?= =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=88=E0=B8=B3=20(=E0=B9=81?= =?UTF-8?q?=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=E0=B8=82=E0=B9=89=E0=B8=AD?= =?UTF-8?q?=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=81?= =?UTF-8?q?=E0=B8=B2=E0=B8=A3=E0=B8=AB=E0=B8=A5=E0=B8=B1=E0=B8=81=E0=B9=80?= =?UTF-8?q?=E0=B8=81=E0=B8=93=E0=B8=91=E0=B9=8C=20Error)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/salaryEmployeeChart/DialogFormCriteria.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/13_salary/components/salaryEmployeeChart/DialogFormCriteria.vue b/src/modules/13_salary/components/salaryEmployeeChart/DialogFormCriteria.vue index a9bf2338a..088b523b8 100644 --- a/src/modules/13_salary/components/salaryEmployeeChart/DialogFormCriteria.vue +++ b/src/modules/13_salary/components/salaryEmployeeChart/DialogFormCriteria.vue @@ -254,7 +254,7 @@ function getPosLevel() { .map((i) => ({ id: i.posLevelId, name: i.posLevelName })) .sort((a, b) => a.name - b.name); if (posLevelOp.value.length == 1) { - formData.posLevel = posLevelOp.value[0].id; + formData.posLevel = posLevelOp.value[0]; } } /** ดึงข้อมูล ระดับชั้นงาน */ @@ -267,7 +267,7 @@ function getPosLevelEdit() { .map((i) => ({ id: i.posLevelId, name: i.posLevelName })) .sort((a, b) => a.name - b.name); if (posLevelOp.value.length == 1) { - formData.posLevel = posLevelOp.value[0].id; + formData.posLevel = posLevelOp.value[0]; } }