Compare commits

..

7 commits
v1.1.42 ... dev

Author SHA1 Message Date
ac7da9c363 Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m4s
* develop:
  fixed format email
2026-04-20 09:55:37 +07:00
5193720567 fixed format email 2026-04-20 09:55:27 +07:00
f7412ca1a8 Merge branch 'develop' into dev
* develop:
  fixed#1565 ระบบแจ้งปัญหาบังคับให้กรอกอีเมล และระบุข้อความว่า admin จะติดต่อกลับทางอีเมลเป็นลำดับแรกกรุณาตรวจสอบที่อีเมล
  fixed#2435 ระบบแก้ไขทะเบียนประวัติตำแหน่ง/เงินเดือน >> เพิ่มตำแหน่ง/เงินเดือน (ชื่อช่องกรอกข้อมูลหาย)
2026-04-20 09:47:36 +07:00
0ccda33b37 fixed#1565
ระบบแจ้งปัญหาบังคับให้กรอกอีเมล และระบุข้อความว่า admin จะติดต่อกลับทางอีเมลเป็นลำดับแรกกรุณาตรวจสอบที่อีเมล
2026-04-20 09:47:20 +07:00
cba8f4b703 fixed#2435
ระบบแก้ไขทะเบียนประวัติตำแหน่ง/เงินเดือน >> เพิ่มตำแหน่ง/เงินเดือน (ชื่อช่องกรอกข้อมูลหาย)
2026-04-20 09:40:16 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
926c47f273 Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m27s
2026-04-17 15:29:31 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
d6e75d6966 refactor(command): dialogMessageNotify messageWarning 2026-04-17 15:29:11 +07:00
3 changed files with 12 additions and 11 deletions

View file

@ -354,6 +354,11 @@ function onClose() {
<div class="col-12">
<div class="row col-12 q-col-gutter-sm">
<div class="col-12">
<div class="text-caption text-grey-8">
แลระบบจะตดตอกลบผานทางอเมลทานระบ กรณาตรวจสอบอเมลของทานเปนระยะ
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-6">
<q-input
dense
@ -363,10 +368,11 @@ function onClose() {
class="inputgreen"
hide-bottom-space
:rules="[
() =>
!!formData.email ||
!!formData.phone ||
'กรุณากรอกอีเมลหรือเบอร์โทรติดต่อกลับ',
(val: string) => !!val || 'กรุณากรอกที่อยู่อีเมล',
(val: string) => {
const emailPattern = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return emailPattern.test(val) || 'กรุณากรอกที่อยู่อีเมลในรูปแบบที่ถูกต้อง';
}
]"
/>
</div>
@ -378,12 +384,6 @@ function onClose() {
v-model="formData.phone"
class="inputgreen"
hide-bottom-space
:rules="[
() =>
!!formData.email ||
!!formData.phone ||
'กรุณากรอกอีเมลหรือเบอร์โทรติดต่อกลับ',
]"
/>
</div>
</div>

View file

@ -706,6 +706,7 @@ function classInput(val: boolean) {
hide-bottom-space
autocomplete="on"
name="organization"
:label="`${'หน่วยงาน'}`"
/>
</div>

View file

@ -321,7 +321,7 @@ function onConfirmOrder() {
} else {
const messageWarning = !store.isIdofficer
? "ไม่สามารถดำเนินการต่อได้ กรุณากรอกเลขที่คำสั่ง วันที่ลงนาม และวันที่คำสั่งมีผลให้ครบ"
: "ไม่สามารถดำเนินการต่อได้ กรุณากรอกเลขที่คำสั่ง วันที่ลงนาม วันที่คำสั่งมีผล และเลือกประเภทคำสั่งให้ครบ";
: "ไม่สามารถดำเนินการต่อได้ กรุณากรอกเลขที่คำสั่ง วันที่ลงนาม วันที่คำสั่งมีผล และเลือกคำสั่งให้ครบ";
dialogMessageNotify($q, messageWarning);
}
}