From ef9c99b8aeaac74a03c5a0e912b2ae8671447831 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Tue, 31 Oct 2023 16:26:31 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=84=E0=B8=B3?= =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1=E0=B9=80=E0=B8=95?= =?UTF-8?q?=E0=B8=B4=E0=B8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/09_leave/components/3_WorkTime/DialogForm.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/09_leave/components/3_WorkTime/DialogForm.vue b/src/modules/09_leave/components/3_WorkTime/DialogForm.vue index e28aaa796..dfa142987 100644 --- a/src/modules/09_leave/components/3_WorkTime/DialogForm.vue +++ b/src/modules/09_leave/components/3_WorkTime/DialogForm.vue @@ -238,10 +238,10 @@ watch( return 'ต้องมากกว่าเวลาเข้างาน'; } if (val >= formData.am && val <= formData.amOut) { - return 'เวลาออกงานต้องไม่อยู่ในช่วงเช้า'; + return 'ช่วงเวลาทับซ้อนกับช่วงเช้า'; } if(val === formData.pm){ - return 'เวลาเข้างานช่วงบ่ายต้องไม่ซ้ำกับออกงานช่วงบ่าย' + return 'เวลาออกงานช่วงบ่ายต้องไม่ซ้ำกับเข้างานช่วงบ่าย' } } return true;