Compare commits

...

11 commits
v1.1.38 ... dev

Author SHA1 Message Date
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
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
170568384d Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m33s
2026-04-17 15:00:02 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
7f25ed4ef1 Merge branch 'develop' of https://github.com/Frappet/bma-ehr-frontend into develop 2026-04-17 14:59:29 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
8a0a6ea873 fix(command): validate if isIdofficer isBangkok fields to show warnings 2026-04-17 14:59:22 +07:00
833718d276 Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 5m4s
* develop:
  add permission owner
2026-04-16 20:56:07 +07:00
73335d7dd5 add permission owner 2026-04-16 20:55:51 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
07659ecc6c Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m0s
2026-04-16 16:14:51 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
9d9cd92d6b refactor(retire-old): standardize API response by renaming data to result 2026-04-16 16:14:33 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
40ebaa646f Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m8s
2026-04-16 13:41:07 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
c700cf0abd feat(placement): add UpdateDraftStatus menu option 2026-04-16 13:40:48 +07:00
7 changed files with 77 additions and 24 deletions

View file

@ -27,6 +27,7 @@ export default {
placementDefermentInfo: (id: string) => `${placement}/pass/deferment/${id}`,
placementDisclaimInfo: (id: string) => `${placement}/pass/disclaim/${id}`,
placementUpdatePass: `${placement}/pass/update-status`,
placementUpdateDraftStatus: `${placement}/update/draft-status`,
//personal
placementPersonalId: (personalId: string) =>

View file

@ -967,6 +967,28 @@ function onUpdateStatus(id: string) {
);
}
function onUpdateDraftStatus(id: string) {
dialogConfirm(
$q,
async () => {
showLoader();
try {
await http.post(config.API.placementUpdateDraftStatus, {
personalId: id,
});
await success($q, "บันทึกสำเร็จ");
await getTable();
} catch (error) {
messageError($q, error);
} finally {
hideLoader();
}
},
"ยืนยันการยกเลิกการส่งตัว",
"ต้องการยกเลิกการส่งตัวรายชื่อนี้ใช่หรือไม่ ?"
);
}
onMounted(async () => {
await getWorkFlow();
await getTable();
@ -1029,6 +1051,30 @@ onMounted(async () => {
</q-item-section>
<q-item-section>รายละเอยด</q-item-section>
</q-item>
<q-item
v-if="
checkPermission($route)?.attrIsUpdate &&
props.row.isDraft &&
props.row.statusId === 'PREPARE-CONTAIN' &&
(DataStore.isOfficer || checkPermission($route)?.attrOwnership == 'OWNER')
"
clickable
v-close-popup
@click="onUpdateDraftStatus(props.row.personalId)"
>
<q-item-section
style="min-width: 0px"
avatar
class="q-py-sm"
>
<q-icon
color="red"
size="xs"
name="mdi-account-arrow-left-outline"
/>
</q-item-section>
<q-item-section>ยกเลกการสงต</q-item-section>
</q-item>
<q-item
v-if="

View file

@ -151,7 +151,7 @@ async function fetchDataRetirement() {
firstNameTH: filter.value.firstNameTH.trim(),
lastNameTH: filter.value.lastNameTH.trim(),
});
const data: RetirementOld = response.data.data;
const data: RetirementOld = response.data.result;
pagination.value.rowsNumber = data.totalRecords;
rows.value = data.dataRecords;
} catch (error) {

View file

@ -61,7 +61,6 @@ let formData = reactive<FormDataDetail>({
});
const commandVolume = ref<string>(""); //
const commandChapter = ref<string>(""); //
const isIdofficer = ref<boolean>(false); // .
const rows = ref<Array<DataOperators>>([]);
const columns = ref<QTableProps["columns"]>([
@ -114,17 +113,7 @@ const visibleColumns = ref<Array<string>>([
const modalAddOperator = ref<boolean>(false); //
/** ฟังก์ชันเช็ค สกจ.*/
async function fetchCheckIdofficer() {
await http
.get(config.API.checkIdofficer)
.then((res) => {
isIdofficer.value = res.data.result;
})
.catch((err) => {
messageError($q, err);
});
}
/**
* งกนบนทกขอมลรายละเอยดคำส
@ -133,7 +122,7 @@ async function fetchCheckIdofficer() {
async function onSubmit() {
// .
if (
isIdofficer.value &&
store.isIdofficer &&
formData.isBangkok !== "BANGKOK" &&
formData.isBangkok !== "OFFICE"
) {
@ -225,7 +214,6 @@ function onDeleteData(id: string) {
onMounted(async () => {
try {
showLoader();
await fetchCheckIdofficer();
await fetchDataOperatorList();
formData.commandNo = props.formCommandList.commandNo;
formData.commandYear = props.formCommandList.commandYear;
@ -235,7 +223,7 @@ onMounted(async () => {
formData.issue = props.formCommandList.issue;
formData.commandAffectDate = props.formCommandList.commandAffectDate;
formData.commandExcecuteDate = props.formCommandList.commandExcecuteDate;
formData.isBangkok = !isIdofficer.value
formData.isBangkok = !store.isIdofficer
? null
: props.formCommandList.isBangkok;
commandCode.value = props.formCommandList.commandCode;
@ -500,7 +488,7 @@ onMounted(async () => {
<div
class="col-12 q-gutter-sm"
v-if="isIdofficer && commandCode !== 'C-PM-47'"
v-if="store.isIdofficer && commandCode !== 'C-PM-47'"
>
<q-radio
:disable="store.readonly"

View file

@ -292,7 +292,10 @@ function onConfirmOrder() {
if (
store?.dataCommand?.commandNo !== "" &&
store?.dataCommand?.commandAffectDate !== null &&
store?.dataCommand?.commandExcecuteDate !== null
store?.dataCommand?.commandExcecuteDate !== null &&
(!store.isIdofficer ||
store?.dataCommand?.isBangkok === "BANGKOK" ||
store?.dataCommand?.isBangkok === "OFFICE")
) {
dialogConfirm(
$q,
@ -316,10 +319,10 @@ function onConfirmOrder() {
"คุณต้องการยืนยันการส่งออกคำสั่งใช่หรือไม่?"
);
} else {
dialogMessageNotify(
$q,
"ไม่สามารถดำเนินการต่อได้ กรุณากรอกเลขที่คำสั่ง วันที่ลงนาม และวันที่คำสั่งมีผลให้ครบ"
);
const messageWarning = !store.isIdofficer
? "ไม่สามารถดำเนินการต่อได้ กรุณากรอกเลขที่คำสั่ง วันที่ลงนาม และวันที่คำสั่งมีผลให้ครบ"
: "ไม่สามารถดำเนินการต่อได้ กรุณากรอกเลขที่คำสั่ง วันที่ลงนาม วันที่คำสั่งมีผล และเลือกคำสั่งให้ครบ";
dialogMessageNotify($q, messageWarning);
}
}

View file

@ -7,7 +7,8 @@ export const useCommandDetail = defineStore("commandDetailStore", () => {
const readonly = ref<boolean>(false);
const dataCommand = ref<FormDataDetail>();
const status = ref<string>("");
const isSalary = ref<boolean>(false)
const isSalary = ref<boolean>(false);
const isIdofficer = ref<boolean>(false);
function checkStep(val: string) {
status.value = val;
switch (val) {
@ -39,6 +40,7 @@ export const useCommandDetail = defineStore("commandDetailStore", () => {
readonly,
status,
dataCommand,
isSalary
isSalary,
isIdofficer,
};
});

View file

@ -92,12 +92,25 @@ async function fetchDataCommandList() {
});
}
/** ฟังก์ชันเช็ค สกจ.*/
async function fetchCheckIdofficer() {
await http
.get(config.API.checkIdofficer)
.then((res) => {
store.isIdofficer = res.data.result;
})
.catch((err) => {
messageError($q, err);
});
}
/**
* ทำงานเม Components กเรยกใชงาน
* กำหนดค `store.readonly` เม route.name เป "commandViewDetailPage" จะอานขอมลไดอยางเดยว
*/
onMounted(async () => {
await fetchDataCommandList();
await fetchCheckIdofficer();
store.readonly =
route.name === "commandViewDetailPage" ||
formCommandList.status === "REPORTED" ||