Merge branch 'develop' of github.com:Frappet/bma-ehr-frontend into develop

This commit is contained in:
Warunee Tamkoo 2024-09-13 14:17:31 +07:00
commit 760d467d0d
12 changed files with 391 additions and 211 deletions

View file

@ -221,7 +221,7 @@ function updateSelected(data: DataTree) {
seletcId.value = ""; seletcId.value = "";
selectedPos.value = []; selectedPos.value = [];
datePos.value = new Date(); datePos.value = new Date();
selectedModal.value = []
nodeId.value = data.orgTreeId ? data.orgTreeId : ""; nodeId.value = data.orgTreeId ? data.orgTreeId : "";
nodeLevel.value = data.orgLevel; nodeLevel.value = data.orgLevel;
getDataTable(data.orgTreeId, data.orgLevel); getDataTable(data.orgTreeId, data.orgLevel);
@ -367,7 +367,7 @@ watch(
} }
); );
function onSubmit() { function onSubmit() {
if (nodeId.value == "") { if (selectedModal.value?.length == 0) {
dialogMessageNotify($q, "กรุณาเลือกตำแหน่ง"); dialogMessageNotify($q, "กรุณาเลือกตำแหน่ง");
} else { } else {
dialogConfirm($q, async () => { dialogConfirm($q, async () => {
@ -567,6 +567,7 @@ function resetFilter() {
</q-card> </q-card>
</q-dialog> </q-dialog>
</template> </template>
<style scoped> <style scoped>
.my-list-link { .my-list-link {
color: rgb(118, 168, 222); color: rgb(118, 168, 222);

View file

@ -97,7 +97,7 @@ function fetchOrganizationActive() {
function fetchTreeStrategy() { function fetchTreeStrategy() {
showLoader(); showLoader();
http http
.get(config.API.devStrategy + `/indicator`) .get(config.API.devStrategy + `/edit/indicator`)
.then((res) => { .then((res) => {
const data = res.data.result; const data = res.data.result;
nodeplan.value = data; nodeplan.value = data;

View file

@ -35,7 +35,7 @@ const titleDialog = ref<string>("");
function fetchDataTree() { function fetchDataTree() {
showLoader(); showLoader();
http http
.get(config.API.devStrategy + `/edit`) .get(config.API.devStrategy + `/edit/strategic`)
.then((res) => { .then((res) => {
const data: DataStrategic[] = res.data.result; const data: DataStrategic[] = res.data.result;
nodes.value = data; nodes.value = data;

View file

@ -294,7 +294,7 @@ function fetchData() {
function fetchTree() { function fetchTree() {
showLoader(); showLoader();
http http
.get(config.API.devStrategy + `/edit`) .get(config.API.devStrategy + `/edit/develop`)
.then((res) => { .then((res) => {
const data = res.data.result; const data = res.data.result;
nodes.value = data; nodes.value = data;

View file

@ -143,7 +143,21 @@ function onCancel(id: string) {
function onReCommand(id: string) { function onReCommand(id: string) {
dialogConfirm( dialogConfirm(
$q, $q,
() => {}, async () => {
showLoader();
await http
.put(config.API.commandAction(id, "resume"))
.then(async () => {
await fetchListCommand();
success($q, "ดึงไปทำคำสั่งใหม่สำเร็จ");
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
},
"ยืนยันการดึงไปทำคำสั่งใหม่", "ยืนยันการดึงไปทำคำสั่งใหม่",
"ต้องการยืนยืนยันการดึงไปทำคำสั่งใหม่ใช่หรือไม่ ?" "ต้องการยืนยืนยันการดึงไปทำคำสั่งใหม่ใช่หรือไม่ ?"
); );

View file

@ -15,14 +15,18 @@ import DialogPerview from "@/modules/18_command/components/Step/Dialog1_Perview.
const $q = useQuasar(); const $q = useQuasar();
const route = useRoute(); const route = useRoute();
const store = useCommandDetail(); const store = useCommandDetail();
const { showLoader, hideLoader, success, messageError } = useCounterMixin(); const { showLoader, hideLoader, messageError } = useCounterMixin();
/**
* props
*/
const isChangeData = defineModel<boolean>("isChangeData", { required: true }); const isChangeData = defineModel<boolean>("isChangeData", { required: true });
const props = defineProps({ const { onCheckChangeData } = defineProps({
onCheckChangeData: { type: Function, required: true }, onCheckChangeData: { type: Function, required: true },
}); });
const commandId = ref<string>(route.params.id.toString()); const commandId = ref<string>(route.params.id.toString()); //ID
//
const formData = reactive<FormDataDetail>({ const formData = reactive<FormDataDetail>({
commandNo: "", commandNo: "",
commandYear: null, commandYear: null,
@ -32,8 +36,13 @@ const formData = reactive<FormDataDetail>({
detailFooter: "", detailFooter: "",
issue: null, issue: null,
}); });
const modalPreview = ref<boolean>(false); const modalPreview = ref<boolean>(false); //
/**
* งกนดงขอมลรายละเอยดคำส
*
* กำหนดขอมลทไดบมาใหบตวแปร `formData`
*/
async function fetchData() { async function fetchData() {
showLoader(); showLoader();
await http await http
@ -56,28 +65,34 @@ async function fetchData() {
}); });
} }
/**
* งกนบนทกขอมลรายละเอยดคำส
*
* และกำหนด isChangeData เป false
*/
async function onSubmit() { async function onSubmit() {
showLoader(); showLoader();
await http await http
.put(config.API.commandAction(commandId.value, "tab1"), formData) .put(config.API.commandAction(commandId.value, "tab1"), formData)
.then(async () => { .then(() => {})
// await fetchData();
// success($q, "");
})
.catch((err) => { .catch((err) => {
messageError($q, err); messageError($q, err);
}) })
.finally(() => { .finally(() => {
hideLoader(); hideLoader();
isChangeData.value = false;
}); });
} }
/**
* ทำงานเม Components กเรยกใชงาน
*/
onMounted(() => { onMounted(() => {
fetchData(); fetchData();
}); });
/** /**
* เรยก function ไปใชหนาหล * งกนทองการนำฟงกนออกไปใชใน Components แม
*/ */
defineExpose({ defineExpose({
onSubmit, onSubmit,
@ -107,7 +122,7 @@ defineExpose({
v-model="formData.commandNo" v-model="formData.commandNo"
hide-bottom-space hide-bottom-space
:label="`${'คำสั่งเลขที่'}`" :label="`${'คำสั่งเลขที่'}`"
@update:model-value="props.onCheckChangeData()" @update:model-value="onCheckChangeData()"
/> />
</div> </div>
<label class="col-1 flex justify-center items-center text-bold"> <label class="col-1 flex justify-center items-center text-bold">
@ -123,7 +138,7 @@ defineExpose({
:enableTimePicker="false" :enableTimePicker="false"
:class="store.classInput(!store.readonly)" :class="store.classInput(!store.readonly)"
:readonly="store.readonly" :readonly="store.readonly"
@update:model-value="props.onCheckChangeData()" @update:model-value="onCheckChangeData()"
> >
<template #year="{ year }">{{ year + 543 }}</template> <template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{ <template #year-overlay-value="{ value }">{{
@ -167,7 +182,7 @@ defineExpose({
v-model="formData.issue" v-model="formData.issue"
hide-bottom-space hide-bottom-space
:label="`${'คำสั่งเรื่อง'}`" :label="`${'คำสั่งเรื่อง'}`"
@update:model-value="props.onCheckChangeData()" @update:model-value="onCheckChangeData()"
/> />
</div> </div>
@ -188,7 +203,7 @@ defineExpose({
> >
<template #control> <template #control>
<q-editor <q-editor
@update:model-value="props.onCheckChangeData()" @update:model-value="onCheckChangeData()"
:readonly="store.readonly" :readonly="store.readonly"
class="full-width" class="full-width"
v-model="formData.detailHeader" v-model="formData.detailHeader"
@ -229,7 +244,7 @@ defineExpose({
> >
<template #control> <template #control>
<q-editor <q-editor
@update:model-value="props.onCheckChangeData()" @update:model-value="onCheckChangeData()"
:readonly="store.readonly" :readonly="store.readonly"
class="full-width" class="full-width"
v-model="formData.detailBody" v-model="formData.detailBody"
@ -270,7 +285,7 @@ defineExpose({
> >
<template #control> <template #control>
<q-editor <q-editor
@update:model-value="props.onCheckChangeData()" @update:model-value="onCheckChangeData()"
:readonly="store.readonly" :readonly="store.readonly"
class="full-width" class="full-width"
v-model="formData.detailFooter" v-model="formData.detailFooter"

View file

@ -24,8 +24,8 @@ const {
success, success,
} = useCounterMixin(); } = useCounterMixin();
const isChangeData = defineModel<boolean>("isChangeData", { required: true }); const isChangeData = defineModel<boolean>("isChangeData", { required: true }); //
const props = defineProps({ const { onCheckChangeData } = defineProps({
onCheckChangeData: { type: Function, required: true }, onCheckChangeData: { type: Function, required: true },
}); });
@ -123,6 +123,10 @@ function filterSelector(val: string, update: Function, filtername: string) {
} }
function onSubmit() {} function onSubmit() {}
/**
* งกนทองการนำฟงกนออกไปใชใน Components แม
*/
defineExpose({ defineExpose({
onSubmit, onSubmit,
}); });

View file

@ -2,14 +2,22 @@
import { ref, onMounted } from "vue"; import { ref, onMounted } from "vue";
import { useQuasar, type QTableProps } from "quasar"; import { useQuasar, type QTableProps } from "quasar";
import { useRoute } from "vue-router";
import http from "@/plugins/http";
import config from "@/app.config";
import { useCommandDetail } from "@/modules/18_command/store/DetailStore"; import { useCommandDetail } from "@/modules/18_command/store/DetailStore";
import { useCounterMixin } from "@/stores/mixin"; import { useCounterMixin } from "@/stores/mixin";
import type { DataOption } from "@/modules/18_command/interface/index/Main"; import type {
DataOption,
DataPerson,
DateSelectPerson,
} from "@/modules/18_command/interface/index/Main";
import DialogOrgSelectOneStep from "@/components/Dialogs/DialogOrgSelectOneStep.vue"; import DialogOrgSelectOneStep from "@/components/Dialogs/DialogOrgSelectOneStep.vue";
const $q = useQuasar(); const $q = useQuasar();
const route = useRoute();
const store = useCommandDetail(); const store = useCommandDetail();
const { const {
dialogMessageNotify, dialogMessageNotify,
@ -22,20 +30,12 @@ const {
} = useCounterMixin(); } = useCounterMixin();
const isChangeData = defineModel<boolean>("isChangeData", { required: true }); const isChangeData = defineModel<boolean>("isChangeData", { required: true });
const props = defineProps({ const { onCheckChangeData } = defineProps({
onCheckChangeData: { type: Function, required: true }, onCheckChangeData: { type: Function, required: true },
}); });
const filter = ref<string>(""); const filter = ref<string>("");
const rows = ref<any[]>([ const rows = ref<DataPerson[]>([]);
{
idCard: "1",
name: "2",
position: "3",
unit: "4",
send: "5",
},
]);
const columns = ref<QTableProps["columns"]>([ const columns = ref<QTableProps["columns"]>([
{ {
name: "no", name: "no",
@ -47,19 +47,19 @@ const columns = ref<QTableProps["columns"]>([
style: "font-size: 14px", style: "font-size: 14px",
}, },
{ {
name: "idCard", name: "citizenId",
align: "left", align: "left",
label: "เลขประจำตัวประชาชน", label: "เลขประจำตัวประชาชน",
field: "idCard", field: "citizenId",
sortable: true, sortable: true,
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px",
}, },
{ {
name: "name", name: "fullName",
align: "left", align: "left",
label: "ชื่อ-นามสกุล", label: "ชื่อ-นามสกุล",
field: "name", field: "fullName",
sortable: true, sortable: true,
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px",
@ -74,10 +74,10 @@ const columns = ref<QTableProps["columns"]>([
style: "font-size: 14px", style: "font-size: 14px",
}, },
{ {
name: "unit", name: "org",
align: "left", align: "left",
label: "หน่วยงาน", label: "หน่วยงาน",
field: "unit", field: "org",
sortable: true, sortable: true,
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px",
@ -94,169 +94,254 @@ const columns = ref<QTableProps["columns"]>([
]); ]);
const visibleColumns = ref<String[]>([ const visibleColumns = ref<String[]>([
"no", "no",
"idCard", "citizenId",
"name", "fullName",
"position", "position",
"unit", "org",
"send", "send",
]); ]);
const optionSelect = ref<DataOption[]>([ const optionSelect = ref<DataOption[]>([
{ id: 1, name: "อีเมล" }, { id: "EMAIL", name: "อีเมล" },
{ id: 2, name: "กล่องข้อความ" }, { id: "INBOX", name: "กล่องข้อความ" },
]); ]);
const modal = ref<boolean>(false); const commandId = ref<string>(route.params.id.toString());
const selectedModal = ref<any[]>([]);
function onDelete(id: string) { const modal = ref<boolean>(false);
dialogRemove($q, () => {}); const selectedModal = ref<DateSelectPerson[]>([]);
async function fetchData() {
showLoader();
await http
.get(config.API.commandAction(commandId.value, "tab3"))
.then(async (res) => {
const data = await res.data.result;
rows.value = data.map((e: DataPerson) => ({
...e,
fullName: `${e.prefix}${e.fristName} ${e.lastName}`,
}));
isChangeData.value = false;
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
} }
function onSubmitPerson() {} function onDelete(id: string) {
dialogRemove($q, async () => {
await http
.delete(config.API.commandAction(id, "tab3"))
.then(async () => {
await fetchData();
success($q, "ลบข้อมูลสำเร็จ");
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
});
}
function onSubmit() {} async function onSubmitPerson() {
const body = selectedModal.value.map((e: DateSelectPerson) => e.profileId);
showLoader();
await http
.put(config.API.commandAction(commandId.value, "tab3-add"), {
profileId: body,
})
.then(async () => {
await fetchData();
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
}
function onSubmit() {
const body = rows.value.map((e: DataPerson) => ({
sendCC: e.sendCC,
id: e.id,
}));
showLoader();
http
.put(config.API.commandAction(commandId.value, "tab3"), {
commandSend: body,
})
.then(async () => {
// await fetchData();
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
isChangeData.value = false;
});
}
onMounted(() => {
fetchData();
});
/**
* งกนทองการนำฟงกนออกไปใชใน Components แม
*/
defineExpose({ defineExpose({
onSubmit, onSubmit,
}); });
</script> </script>
<template> <template>
<q-card-section> <q-form greedy @submit.prevent @validation-success="onSubmit">
<div class="row q-col-gutter-sm"> <q-card-section>
<div class="col-12 row items-center"> <div class="row q-col-gutter-sm">
<q-btn <div class="col-12 row items-center">
v-if="!store.readonly" <q-btn
flat v-if="!store.readonly"
round flat
color="primary" round
@click="modal = true" color="primary"
icon="mdi-plus" @click="modal = true"
> icon="mdi-plus"
<q-tooltip>เพมขอม</q-tooltip>
</q-btn>
<q-space />
<div class="items-center" style="display: flex">
<!-- นหาขอความใน table -->
<q-input
standout
dense
v-model="filter"
ref="filterRef"
outlined
debounce="300"
placeholder="ค้นหา"
style="max-width: 200px"
class="q-ml-sm"
> >
<template v-slot:append> <q-tooltip>เพมขอม</q-tooltip>
<q-icon v-if="filter == ''" name="search" /> </q-btn>
<q-icon <q-space />
v-if="filter !== ''" <div class="items-center" style="display: flex">
name="clear" <!-- นหาขอความใน table -->
class="cursor-pointer" <q-input
@click="filter = ''" standout
/> dense
v-model="filter"
ref="filterRef"
outlined
debounce="300"
placeholder="ค้นหา"
style="max-width: 200px"
class="q-ml-sm"
>
<template v-slot:append>
<q-icon v-if="filter == ''" name="search" />
<q-icon
v-if="filter !== ''"
name="clear"
class="cursor-pointer"
@click="filter = ''"
/>
</template>
</q-input>
<!-- แสดงคอลมนใน table -->
<q-select
v-model="visibleColumns"
:display-value="$q.lang.table.columns"
multiple
outlined
dense
:options="columns"
options-dense
option-value="name"
map-options
emit-value
style="min-width: 150px"
class="gt-xs q-ml-sm"
/>
</div>
</div>
<div class="col-12">
<d-table
:rows="rows"
:columns="columns"
:visible-columns="visibleColumns"
:filter="filter"
row-key="id"
>
<template v-slot:header="props">
<q-tr :props="props">
<q-th auto-width />
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium">{{ col.label }}</span>
</q-th>
</q-tr>
</template> </template>
</q-input> <template v-slot:body="props">
<!-- แสดงคอลมนใน table --> <q-tr :props="props">
<q-select <q-td auto-width>
v-model="visibleColumns" <q-btn
:display-value="$q.lang.table.columns" v-if="!store.readonly"
multiple dense
outlined flat
dense round
:options="columns" color="red"
options-dense @click="onDelete(props.row.id)"
option-value="name" icon="mdi-delete"
map-options >
emit-value <q-tooltip>ลบขอม</q-tooltip>
style="min-width: 150px" </q-btn>
class="gt-xs q-ml-sm" </q-td>
/> <q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name === 'send'">
<q-select
:readonly="store.readonly"
:class="store.classInput(!store.readonly)"
hide-bottom-space
multiple
:outlined="true"
dense
v-model="props.row.sendCC"
:rules="[
(val) => !!val || `${'กรุณาเลือกช่องทางการส่งสำเนา'}`,
(val) =>
val.length > 0 || `${'กรุณาเลือกช่องทางการส่งสำเนา'}`,
]"
:label="`${'เลือกช่องทางการส่งสำเนา'}`"
emit-value
map-options
option-label="name"
:options="optionSelect"
option-value="id"
input-debounce="0"
color="primary"
@update:model-value="onCheckChangeData()"
>
<template v-slot:no-option>
<q-item>
<q-item-section class="text-black">
ไมพบขอมลทนหา
</q-item-section>
</q-item>
</template>
</q-select>
</div>
<div v-else class="table_ellipsis2">
{{ col.value ?? "-" }}
</div>
</q-td>
</q-tr>
</template>
</d-table>
</div> </div>
</div> </div>
</q-card-section>
<div class="col-12"> <q-separator />
<d-table
:rows="rows"
:columns="columns"
:visible-columns="visibleColumns"
:filter="filter"
row-key="idCard"
>
<template v-slot:header="props">
<q-tr :props="props">
<q-th auto-width />
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium">{{ col.label }}</span>
</q-th>
</q-tr>
</template>
<template v-slot:body="props">
<q-tr :props="props">
<q-td auto-width>
<q-btn
v-if="!store.readonly"
dense
flat
round
color="red"
@click="onDelete(props.row.personalId)"
icon="mdi-delete"
>
<q-tooltip>ลบขอม</q-tooltip>
</q-btn>
</q-td>
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name === 'send'">
<q-select
:readonly="store.readonly"
:class="store.classInput(!store.readonly)"
hide-bottom-space
multiple
:outlined="true"
dense
v-model="props.row.mutiselect"
:rules="[
(val) => !!val || `${'กรุณาเลือกช่องทางการส่งสำเนา'}`,
(val) =>
val.length > 0 || `${'กรุณาเลือกช่องทางการส่งสำเนา'}`,
]"
:label="`${'เลือกช่องทางการส่งสำเนา'}`"
emit-value
map-options
option-label="name"
:options="optionSelect"
option-value="id"
input-debounce="0"
color="primary"
>
<template v-slot:no-option>
<q-item>
<q-item-section class="text-black">
ไมพบขอมลทนหา
</q-item-section>
</q-item>
</template>
</q-select>
</div>
<div v-else>
{{ col.value ?? "-" }}
</div>
</q-td>
</q-tr>
</template>
</d-table>
</div>
</div>
</q-card-section>
<q-separator /> <q-card-actions align="right" v-if="!store.readonly">
<q-btn label="บันทึก" type="submit" color="public" />
<q-card-actions align="right" v-if="!store.readonly"> </q-card-actions>
<q-btn label="บันทึก" color="public" /> </q-form>
</q-card-actions>
<DialogOrgSelectOneStep <DialogOrgSelectOneStep
v-model:modal="modal" v-model:modal="modal"

View file

@ -1,10 +1,14 @@
<script setup lang="ts"> <script setup lang="ts">
const isChangeData = defineModel<boolean>("isChangeData", { required: true }); const isChangeData = defineModel<boolean>("isChangeData", { required: true });
const props = defineProps({ const { onCheckChangeData } = defineProps({
onCheckChangeData: { type: Function, required: true }, onCheckChangeData: { type: Function, required: true },
}); });
function onSubmit() {} function onSubmit() {}
/**
* งกนทองการนำฟงกนออกไปใชใน Components แม
*/
defineExpose({ defineExpose({
onSubmit, onSubmit,
}); });

View file

@ -12,4 +12,41 @@ interface ItemTabs {
name: string; name: string;
} }
export type { Pagination, DataOption, ItemTabs }; interface DataPerson {
fullName?: string;
citizenId: string;
fristName: string;
id: string;
lastName: string;
org: string;
position: string;
prefix: string;
profileId: string;
sendCC: string[];
}
interface DateSelectPerson {
citizenId: string;
firstName: string;
id: string;
isSit: boolean;
lastName: string;
name: string;
node: number;
nodeId: string;
orgChild1Id: string;
orgChild2Id: string;
orgChild3Id: string;
orgChild4Id: string;
orgRootId: string;
orgShortname: string;
organizationName: string;
posMasterNo: number;
posMasterNoPrefix: string;
posMasterNoSuffix: string;
position: string;
prefix: string;
profileId: string;
}
export type { Pagination, DataOption, ItemTabs, DataPerson, DateSelectPerson };

View file

@ -4,27 +4,29 @@ import { onMounted, ref, watch } from "vue";
import { useRouter, useRoute } from "vue-router"; import { useRouter, useRoute } from "vue-router";
import { useCommandDetail } from "@/modules/18_command/store/DetailStore"; import { useCommandDetail } from "@/modules/18_command/store/DetailStore";
import type { ItemTabs } from "@/modules/18_command/interface/index/Main";
import Detail from "@/modules/18_command/components/Step/1_Detail.vue"; // import Detail from "@/modules/18_command/components/Step/1_Detail.vue"; //
import ListPersons from "@/modules/18_command/components/Step/2_ListPersons.vue"; // import ListPersons from "@/modules/18_command/components/Step/2_ListPersons.vue"; //
import ReceivedCopy from "@/modules/18_command/components/Step/3_ReceivedCopy.vue"; // import ReceivedCopy from "@/modules/18_command/components/Step/3_ReceivedCopy.vue"; //
import Attached from "@/modules/18_command/components/Step/4_Attached.vue"; // import Attached from "@/modules/18_command/components/Step/4_Attached.vue"; //
const router = useRouter(); const router = useRouter();
const route = useRoute(); const route = useRoute();
const store = useCommandDetail(); const store = useCommandDetail();
const childDetailRef = ref<InstanceType<typeof Detail> | null>(null); const childDetailRef = ref<InstanceType<typeof Detail> | null>(null); //ref components
const childListPersonsRef = ref<InstanceType<typeof ListPersons> | null>(null); const childListPersonsRef = ref<InstanceType<typeof ListPersons> | null>(null); //ref components
const childReceivedCopyRef = ref<InstanceType<typeof ReceivedCopy> | null>( const childReceivedCopyRef = ref<InstanceType<typeof ReceivedCopy> | null>(
null null
); ); //ref components
const childAttachedRef = ref<InstanceType<typeof Attached> | null>(null); const childAttachedRef = ref<InstanceType<typeof Attached> | null>(null); //ref components
const readonly = ref<boolean>(route.name === "commandViewDetailPage"); const tabs = ref<string>("Detail"); //Tab
const isChangeData = ref<boolean>(false); const readonly = ref<boolean>(route.name === "commandViewDetailPage"); //
const isChangeData = ref<boolean>(false); //
const tabs = ref<string>("Detail"); // Tab
const tabsManu = ref([ const tabsManu = ref<ItemTabs[]>([
{ label: "รายละเอียดคำสั่ง", name: "Detail" }, { label: "รายละเอียดคำสั่ง", name: "Detail" },
{ {
label: "รายชื่อผู้ออกคำสั่ง", label: "รายชื่อผู้ออกคำสั่ง",
@ -38,25 +40,40 @@ const tabsManu = ref([
]); ]);
/** /**
* function เชคการแกไขอม * งกนเชคการเปลนรแปลงของขอม
*
* ามการเปลนยแปลง กำหนด 'isChangeData' เป true
*/ */
function onCheckChangeData() { function onCheckChangeData() {
isChangeData.value = true; isChangeData.value = true;
} }
onMounted(() => { /**
store.readonly = readonly.value; * การเปลยนแปลงของ tabs เมอมการเปลยนแปลง
*
* เชคการเปลยนแปลงของขอม าการเปลยนแปลงของขอมลจะบนทกขอม
*/
watch(tabs, (newValue, oldValue) => {
//
if (isChangeData.value) {
const refMap: { [key: string]: any } = {
Detail: childDetailRef,
ListPersons: childListPersonsRef,
ReceivedCopy: childReceivedCopyRef,
Attached: childAttachedRef,
};
refMap[oldValue]?.value?.onSubmit();
}
}); });
watch(tabs, (newValue, oldValue) => { /**
console.log(`Count changed from ${oldValue} to ${newValue}`); * ทำงานเม Components กเรยกใชงาน
if (isChangeData.value) { *
// component * กำหนดค `store.readonly` เม route.name เป "commandViewDetailPage" จะอานขอมลไดอยางเดยว
if (oldValue === "Detail") { */
console.log(childDetailRef.value); onMounted(() => {
childDetailRef.value?.onSubmit(); store.readonly = route.name === "commandViewDetailPage";
}
}
}); });
</script> </script>

View file

@ -18,8 +18,7 @@ const $q = useQuasar();
const store = useCommandListStore(); const store = useCommandListStore();
const { showLoader, hideLoader, messageError } = useCounterMixin(); const { showLoader, hideLoader, messageError } = useCounterMixin();
const modalAdd = ref<boolean>(false); // Tab
const tabsManu = ref<ItemTabs[]>([ const tabsManu = ref<ItemTabs[]>([
{ label: "แบบร่าง", name: "DRAFT" }, { label: "แบบร่าง", name: "DRAFT" },
{ label: "รอผู้มีอำนาจ", name: "PENDING" }, { label: "รอผู้มีอำนาจ", name: "PENDING" },
@ -27,14 +26,18 @@ const tabsManu = ref<ItemTabs[]>([
{ label: "ออกคำสั่งเสร็จสิ้น", name: "REPORTED" }, { label: "ออกคำสั่งเสร็จสิ้น", name: "REPORTED" },
{ label: "ยกเลิก", name: "CANCEL" }, { label: "ยกเลิก", name: "CANCEL" },
]); ]);
//
const queryParams = reactive<FormQuery>({ const queryParams = reactive<FormQuery>({
page: 1, page: 1, //
pageSize: 10, pageSize: 10, //
year: new Date().getFullYear(), year: new Date().getFullYear(), //
keyword: "", keyword: "", //
}); });
const modalAdd = ref<boolean>(false); //
/**
* งกนดงขอมลรายการคำส
*/
async function fetchListCommand() { async function fetchListCommand() {
showLoader(); showLoader();
await http await http