hrms-mgt/src/modules/07_insignia/components/3_result/Dialogbody.vue

240 lines
9.6 KiB
Vue
Raw Normal View History

<script setup lang="ts">
2023-10-02 13:58:56 +07:00
import { onMounted, ref,watch } from "vue";
import { QForm, useQuasar } from "quasar";
import { useCounterMixin } from "@/stores/mixin";
import http from "@/plugins/http";
import config from "@/app.config";
import type { DataOption } from "@/modules/04_registry/components/profileType";
const $q = useQuasar();
2023-09-27 15:39:39 +07:00
const myForm = ref<any>();
const mixin = useCounterMixin();
2023-10-02 13:58:56 +07:00
const { date2Thai,showLoader,success,hideLoader,messageError,dialogConfirm ,dateToISO} = mixin;
const files = ref<any>();
const filesReturn = ref<any>();
const OrganazationId = ref<string>("");
const OrganazationId2 = ref<string>("");
const OrgList = ref<DataOption[]>([]);
2023-10-02 13:58:56 +07:00
const OrgList2 = ref<DataOption[]>([]);
const Datereceive = ref<Date | null>();
const Datereturn = ref<Date | null>();
const remark = ref<string>("")
2023-09-27 15:39:39 +07:00
const nullii = ref<any>(null)
const props = defineProps({
modal: Boolean,
2023-09-27 15:39:39 +07:00
personId: String,
close: Function,
2023-09-27 15:39:39 +07:00
fecthlistInsignia: Function,
2023-10-02 13:58:56 +07:00
dateCheckReceive:String,
dateCheckReturn:String,
dataModal:Object
})
// reset วันที่ประกาศราชกิจจานุเบกษา
const clearReceiveDate = () => {
Datereceive.value = null;
};
const clearReturnDate = () => {
Datereturn.value = null;
};
const close = () => {
props.close?.();
2023-09-27 15:39:39 +07:00
Datereceive.value = null
files.value = null
OrganazationId.value = ''
Datereturn.value = null
filesReturn.value = null
OrganazationId2.value = ''
};
2023-09-27 15:39:39 +07:00
const SaveData = async (type:string,id:string) => {
await myForm.value.validate().then((result: boolean) => {
if (result) {
dialogConfirm($q,() => dataSave(type,id))
}else{
}
})};
const dataSave = (type:string,id:string) => {
const formData = new FormData();
2023-10-02 13:58:56 +07:00
if(props.dateCheckReceive === null){
formData.append("Date", dateToISO(Datereceive.value ?? nullii));
formData.append("File", files.value);
formData.append("OrgId", OrganazationId.value);
2023-09-27 15:39:39 +07:00
} else {
2023-10-02 13:58:56 +07:00
formData.append("Date", dateToISO(Datereturn.value ?? nullii));
formData.append("File", filesReturn.value);
formData.append("OrgId", OrganazationId2.value);
2023-09-27 15:39:39 +07:00
}
showLoader();
http
.put(config.API.requestinsignia(type,id), formData)
.then(() => {
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
Datereceive.value = null
files.value = null
OrganazationId.value = ''
Datereturn.value = null
filesReturn.value = null
OrganazationId2.value = ''
2023-09-27 15:39:39 +07:00
props.close?.();
hideLoader();
props.fecthlistInsignia?.()
});
}
const fetchOrgList = async () => {
showLoader();
await http
.get(config.API.typeOc())
.then(async (response: any) => {
const orgArr = response.data.result.map((e: any) => ({
id: e.organizationId,
name: e.organizationName,
}));
OrgList.value = orgArr;
2023-10-02 13:58:56 +07:00
OrgList2.value = [
{
id: "00000000-0000-0000-0000-000000000000",
name: "สำนักนายกรัฐมนตรี",
},
...orgArr,
];
2023-09-27 15:39:39 +07:00
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
};
2023-10-02 13:58:56 +07:00
watch(props,()=>{
if(props.dataModal){
Datereceive.value = props.dataModal.dateReceiveInsignia
Datereturn.value = props.dataModal.dateReturnInsignia
OrganazationId.value = props.dataModal.orgReceiveInsignia
OrganazationId2.value = props.dataModal.orgReturnInsignia
}
})
2023-09-27 15:39:39 +07:00
onMounted(()=>{
fetchOrgList()
})
</script>
<template>
<q-dialog v-model="props.modal" persistent>
<q-card style="min-width: 900px">
<q-toolbar>
2023-09-29 13:54:17 +07:00
<q-toolbar-title class="text-subtitle2 text-bold">-นเครองราชฯ</q-toolbar-title>
<q-btn icon="close" unelevated round dense @click="close" style="color: #ff8080; background-color: #ffdede" />
</q-toolbar>
<q-separator />
<q-form ref="myForm">
<div class="q-pa-md bg-grey-1">
2023-09-29 13:54:17 +07:00
<div class="row col-12 q-col-gutter-x-xs q-col-gutter-y-xs">
<div class="col-12 text-weight-bold text-grey-7">
บเครองราชฯ
</div>
<div class="col-xs-12 col-sm-4">
2023-10-02 13:58:56 +07:00
<datepicker menu-class-name="modalfix" v-model="Datereceive" :locale="'th'" autoApply borderless
2023-10-02 13:58:56 +07:00
:enableTimePicker="false" week-start="0" :readonly="dateCheckReceive !== null">
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input dense borderless outlined lazy-rules :rules="[(val) => !!val || 'กรุณาเลือกวันที่ได้รับ']"
2023-10-02 13:58:56 +07:00
hide-bottom-space :model-value="Datereceive != null ? date2Thai(Datereceive) : null
" :label="`${'วันที่ได้รับ'}`" clearable @clear="clearReceiveDate" :disable="dateCheckReceive !== null">
<template v-slot:prepend>
<q-icon name="event" class="cursor-pointer" color="primary">
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-4">
2023-09-27 15:39:39 +07:00
<q-file outlined dense v-model="files" label="ไฟล์หลักฐานการรับ" lazy-rules
2023-10-02 13:58:56 +07:00
:rules="[(val) => val || 'กรุณาเลือกไฟล์หลักฐานการรับ']" hide-bottom-space :disable="dateCheckReceive !== null">
<template v-slot:prepend>
<q-icon name="attach_file" color="primary" />
</template>
</q-file>
</div>
<div class="col-xs-12 col-sm-4">
2023-09-27 15:39:39 +07:00
<q-select hide-bottom-space :options="OrgList" dense borderless option-label="name" option-value="id"
emit-value map-options outlined v-model="OrganazationId" lazy-rules :label="`หน่วยงานที่รับ`"
2023-10-02 13:58:56 +07:00
:rules="[(val) => !!val || 'กรุณาเลือกหน่วยงานที่รับ']" :disable="dateCheckReceive !== null"/>
</div>
2023-09-27 15:39:39 +07:00
</div>
2023-10-02 13:58:56 +07:00
<div v-if="dateCheckReceive !== null" class="row col-12 q-col-gutter-x-xs q-col-gutter-y-xs">
<div class="col-12 q-mt-sm"><q-separator/></div>
2023-09-29 13:54:17 +07:00
<div class="col-12 text-weight-bold text-grey-7">
นเครองราชฯ
</div>
<div class="col-xs-12 col-sm-4">
2023-09-27 15:39:39 +07:00
<datepicker menu-class-name="modalfix" v-model="Datereturn" :locale="'th'" autoApply borderless
2023-10-02 13:58:56 +07:00
:enableTimePicker="false" week-start="0" :readonly="dateCheckReturn !== null">
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input dense borderless outlined lazy-rules :rules="[(val) => !!val || 'กรุณาเลือกวันที่คืน']"
hide-bottom-space :model-value="Datereturn != null ? date2Thai(Datereturn) : undefined
2023-10-02 13:58:56 +07:00
" :label="`${'วันที่คืน'}`" clearable @clear="clearReturnDate" :disable="dateCheckReturn !== null">
<template v-slot:prepend>
<q-icon name="event" class="cursor-pointer" color="primary">
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-4">
2023-09-27 15:39:39 +07:00
<q-file outlined dense v-model="filesReturn" label="ไฟล์หลักฐานการคืน" lazy-rules
2023-10-02 13:58:56 +07:00
:rules="[(val) => val || 'กรุณาเลือกไฟล์หลักฐานการคืน']" hide-bottom-space :disable="dateCheckReturn !== null">
<template v-slot:prepend>
<q-icon name="attach_file" color="primary" />
</template>
</q-file>
</div>
<div class="col-xs-12 col-sm-4">
2023-10-02 13:58:56 +07:00
<q-select hide-bottom-space :options="OrgList2" dense borderless option-label="name" option-value="id"
emit-value map-options outlined v-model="OrganazationId2" lazy-rules :label="`หน่วยงานที่คืน` "
2023-10-02 13:58:56 +07:00
:rules="[(val) => !!val || 'กรุณาเลือกหน่วยงานที่คืน']" :disable="dateCheckReturn !== null"/>
</div>
</div>
</div>
2023-09-27 15:39:39 +07:00
</q-form>
<q-separator />
<div class="q-px-md q-py-sm">
<div class="row justify-end">
2023-10-02 13:58:56 +07:00
<q-btn v-if="dateCheckReturn === null" label="บันทึก" color="public" @click="SaveData(props.dateCheckReceive === null ? 'receive':'return',props.personId as string)">
<q-tooltip>นท</q-tooltip>
</q-btn>
</div>
</div>
</q-card>
</q-dialog>
</template>