รายการแต่งตั้ง-เลื่อน-ย้าย จัดโค้ด + component

This commit is contained in:
setthawutttty 2023-09-19 18:04:54 +07:00
parent 1185971f99
commit 6961e719f0
5 changed files with 401 additions and 420 deletions

View file

@ -9,7 +9,7 @@ import config from "@/app.config";
const $q = useQuasar(); const $q = useQuasar();
const mixin = useCounterMixin(); // const mixin = useCounterMixin(); //
const { date2Thai, hideLoader, messageError, showLoader, success } = mixin; // const { date2Thai, hideLoader, messageError, showLoader, success,dialogConfirm } = mixin; //
const notFound = ref<string>("ไม่พบข้อมูลที่ค้นหา"); const notFound = ref<string>("ไม่พบข้อมูลที่ค้นหา");
const noData = ref<string>("ไม่พบข้อมูลผังโครงสร้าง"); const noData = ref<string>("ไม่พบข้อมูลผังโครงสร้าง");
@ -199,19 +199,17 @@ const editDataStatus = ref<boolean>(false);
const clickEditRow = () => { const clickEditRow = () => {
editDataStatus.value = true; editDataStatus.value = true;
}; };
const closeModal = () => { const closeModal = () => {
if (editDataStatus.value == true) { if (editDataStatus.value == true) {
$q.dialog({ dialogConfirm(
title: `ข้อมูลมีการแก้ไข`, $q,
message: `ยืนยันที่จะปิดโดยไม่บันทึกใช่หรือไม่?`, async () => {
cancel: "ยกเลิก", editDataStatus.value = false;
ok: "ยืนยัน", await closeAndClear();
persistent: true, },
}).onOk(() => { `ข้อมูลมีการแก้ไข`,
editDataStatus.value = false; `ยืนยันที่จะปิดโดยไม่บันทึกใช่หรือไม่?`
closeAndClear(); );
});
} else { } else {
closeAndClear(); closeAndClear();
} }

View file

@ -4,7 +4,6 @@ import { useQuasar } from "quasar";
import { useRoute, useRouter } from "vue-router"; import { useRoute, useRouter } from "vue-router";
import { useCounterMixin } from "@/stores/mixin"; import { useCounterMixin } from "@/stores/mixin";
import CurrencyInput from "@/components/CurruncyInput.vue"; import CurrencyInput from "@/components/CurruncyInput.vue";
import type { ResponseTitle } from "@/modules/05_placement/interface/response/Receive"; import type { ResponseTitle } from "@/modules/05_placement/interface/response/Receive";
import http from "@/plugins/http"; import http from "@/plugins/http";
@ -15,6 +14,21 @@ const route = useRoute();
const router = useRouter(); const router = useRouter();
const mixin = useCounterMixin(); const mixin = useCounterMixin();
const appointment = ref<any>([]);
const myform = ref<any>();
const edit = ref<boolean>(false);
const profileId = ref<string>("");
const organizationPositionOld = ref<string>("");
const positionTypeOld = ref<string>("");
const positionLevelOld = ref<string>("");
const posNo = ref<string>("");
const salary = ref<number>(0);
const educationOld = ref<string>("");
const reason = ref<string>("");
const date = ref<Date | null>(null);
const status = ref<string>("");
const avatar = ref<string>("");
const paramsId = route.params.id; const paramsId = route.params.id;
const { const {
date2Thai, date2Thai,
@ -31,24 +45,9 @@ const title = ref<ResponseTitle>({
positionLevelOld: "", positionLevelOld: "",
positionTypeOld: "", positionTypeOld: "",
}); });
const appointment = ref<any>([]);
const myform = ref<any>();
const edit = ref<boolean>(false);
const profileId = ref<string>("");
const organizationPositionOld = ref<string>("");
const positionTypeOld = ref<string>("");
const positionLevelOld = ref<string>("");
const posNo = ref<string>("");
const salary = ref<string>("");
const educationOld = ref<string>("");
const reason = ref<string>("");
const date = ref<Date | null>(null);
const status = ref<string>("");
const avatar = ref<string>("");
onMounted(async () => {
await fecthappointmentByid();
});
// id
const fecthappointmentByid = async () => { const fecthappointmentByid = async () => {
showLoader(); showLoader();
await http await http
@ -56,22 +55,18 @@ const fecthappointmentByid = async () => {
.then((res: any) => { .then((res: any) => {
const data = res.data.result; const data = res.data.result;
appointment.value = data; appointment.value = data;
// console.log(data);
profileId.value = data.profileId; profileId.value = data.profileId;
title.value.fullname = `${data.firstname ?? "-"} ${data.lastname ?? "-"}`; title.value.fullname = `${data.prefix}${data.firstname ?? "-"} ${data.lastname ?? "-"}`;
title.value.organizationPositionOld = data.organizationPositionOld ?? "-"; title.value.organizationPositionOld = data.organizationPositionOld ?? "-";
title.value.positionLevelOld = data.positionLevelOld ?? "-"; title.value.positionLevelOld = data.positionLevelOld ?? "-";
title.value.positionTypeOld = data.positionTypeOld ?? "-"; title.value.positionTypeOld = data.positionTypeOld ?? "-";
(status.value = data.status), (status.value = data.status),
console.log("🚀 ~ file: Detail.vue:65 ~ .then ~ status:", status.value); educationOld.value = data.educationOld ?? "-";
educationOld.value = data.educationOld;
organizationPositionOld.value = data.organizationPositionOld; organizationPositionOld.value = data.organizationPositionOld;
positionTypeOld.value = data.positionTypeOld; positionTypeOld.value = data.positionTypeOld;
positionLevelOld.value = data.positionLevelOld; positionLevelOld.value = data.positionLevelOld;
posNo.value = data.positionNumberOld; posNo.value = data.positionNumberOld;
salary.value = data.salary; salary.value = data.salary ?? 0;
// organization.value = data.organization; //
reason.value = data.reason; reason.value = data.reason;
date.value = data.positionDate; date.value = data.positionDate;
avatar.value = data.avatar ?? ""; avatar.value = data.avatar ?? "";
@ -83,8 +78,9 @@ const fecthappointmentByid = async () => {
hideLoader(); hideLoader();
}); });
}; };
//
const clickSave = async () => { const clickSave = async () => {
console.log(reason.value);
await myform.value.validate().then(async (success: boolean) => { await myform.value.validate().then(async (success: boolean) => {
if (success) { if (success) {
dialogConfirm($q, () => putAppointment()); dialogConfirm($q, () => putAppointment());
@ -92,21 +88,13 @@ const clickSave = async () => {
} }
}); });
}; };
//
const putAppointment = async () => { const putAppointment = async () => {
console.log("บันทึกข้อมูล");
let data = { let data = {
citizenId: appointment.value.citizenId, citizenId: appointment.value.citizenId,
prefixId: appointment.value.prefixId, prefixId: appointment.value.prefixId,
firstname: appointment.value.firstname, firstname: appointment.value.firstname,
lastname: appointment.value.lastname, lastname: appointment.value.lastname,
// dateOfBirth: "2023-08-15T08:44:38.060Z",
// genderId: "3fa85f64-5717-4562-b3fc-2c963f66afa6",
// nationality: "string",
// race: "string",
// religionId: "3fa85f64-5717-4562-b3fc-2c963f66afa6",
// bloodGroupId: "3fa85f64-5717-4562-b3fc-2c963f66afa6",
// relationshipId: "3fa85f64-5717-4562-b3fc-2c963f66afa6",
// telephoneNumber: "string",
educationOld: educationOld.value, educationOld: educationOld.value,
organizationPositionOld: organizationPositionOld.value, organizationPositionOld: organizationPositionOld.value,
positionTypeOld: positionTypeOld.value, positionTypeOld: positionTypeOld.value,
@ -115,10 +103,7 @@ const putAppointment = async () => {
amountOld: Number(salary.value), amountOld: Number(salary.value),
reason: reason.value, reason: reason.value,
positionDate: date.value, positionDate: date.value,
// positionDate: "2023-08-15T08:44:38.060Z",
// file: ["string"],
}; };
console.log(data);
showLoader(); showLoader();
await http await http
.put(config.API.appointmentByid(paramsId.toString()), data) .put(config.API.appointmentByid(paramsId.toString()), data)
@ -127,7 +112,6 @@ const putAppointment = async () => {
}) })
.catch((e) => { .catch((e) => {
messageError($q, e); messageError($q, e);
console.log(e);
}) })
.finally(() => { .finally(() => {
fecthappointmentByid(); fecthappointmentByid();
@ -140,6 +124,10 @@ const getClass = (val: boolean) => {
"full-width cursor-pointer": !val, "full-width cursor-pointer": !val,
}; };
}; };
onMounted(async () => {
await fecthappointmentByid();
});
</script> </script>
<template> <template>
<div class="toptitle text-dark col-12 row items-center"> <div class="toptitle text-dark col-12 row items-center">
@ -151,7 +139,7 @@ const getClass = (val: boolean) => {
flat flat
color="primary" color="primary"
class="q-mr-sm" class="q-mr-sm"
@click="router.go(-1)" @click="router.push(`/appoint-promote`)"
/> />
รายละเอยดการแตงต-เลอน {{ title.fullname }} รายละเอยดการแตงต-เลอน {{ title.fullname }}
</div> </div>
@ -345,37 +333,15 @@ const getClass = (val: boolean) => {
</div> </div>
<div class="col-xs-6 col-sm-3 row"> <div class="col-xs-6 col-sm-3 row">
<div class="col-12"> <div class="col-12">
<!-- <q-input :class="getClass(edit)" :outlined="edit" dense lazy-rules :readonly="!edit" :borderless="!edit"
v-model="salary" :rules="[(val) => !!val || `${'กรุณากรอกเงินเดือน'}`]" hide-bottom-space
:label="`${'เงินเดือน'}`" type="number" /> -->
<CurrencyInput <CurrencyInput
v-model="salary" v-model="salary"
label="เงินเดือน"
:edit="edit" :edit="edit"
:rules="[(val) => !!val || `${'กรุณากรอกเงินเดือน'}`]" :rules="[(val:number) => !!val || `${'กรุณากรอกเงินเดือน'}`]"
:options="{
currency: 'THB',
}"
:label="`${'เงินเดือน'}`"
/> />
</div> </div>
</div> </div>
<div class="col-12"><q-separator /></div> <div class="col-12"><q-separator /></div>
<!-- <div class="col-xs-6 col-sm-6 row items-center">
<div class="col-12">
<q-input
:class="getClass(edit)"
:outlined="edit"
dense
lazy-rules
:readonly="!edit"
:borderless="!edit"
v-model="organization"
:rules="[(val) => !!val || `${'กรุณากรอกโอนไปสังกัด'}`]"
hide-bottom-space
:label="`${'โอนไปสังกัด'}`"
/>
</div>
</div> -->
<div class="col-xs-6 col-sm-6 row items-center"> <div class="col-xs-6 col-sm-6 row items-center">
<div class="col-12"> <div class="col-12">
<datepicker <datepicker

View file

@ -0,0 +1,233 @@
<script setup lang="ts">
import { ref, computed,watchEffect } from "vue";
import { useQuasar } from "quasar";
import { useCounterMixin } from "@/stores/mixin";
import type { QTableProps } from "quasar";
import http from "@/plugins/http";
import config from "@/app.config";
const mixin = useCounterMixin();
const { showLoader, success, messageError, dialogConfirm,hideLoader } = mixin;
const $q = useQuasar();
import DialogHeader from "@/modules/05_placement/components/AppointMent/DialogHeader.vue";
const selected = ref([]);
const checkSelected = computed(() => {
if (selected.value.length === 0 || props.type === "") {
return true;
}
});
const props = defineProps({
Modal: Boolean,
clickClose: Function,
resetFilter: Function,
fecthlistappointment: Function,
nextPage: Function,
optionsType: Array,
rows2: Array,
filterKeyword2:String,
type:String,
});
const visibleColumns2 = ref<string[]>([
"no",
"citizenId",
"fullname",
"organizationName",
"birthday",
]);
const columns2 = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: true,
field: "no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "citizenId",
align: "left",
label: "เลขประจำตัวประชาชน",
sortable: true,
field: "citizenId",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "fullname",
align: "left",
label: "ชื่อ-นามสกุล",
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "organizationName",
align: "left",
label: "หน่วยงานที่รับการแต่งตั้ง-เลื่อน",
sortable: true,
field: "organizationName",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "birthday",
align: "left",
label: "วัน/เดือน/ปี เกิด",
sortable: true,
field: "birthday",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
const pageNext = (item:object) => {
props.nextPage?.(item)
}
const emit = defineEmits([
"update:filterKeyword2",
"update:type",
"update:selected",
]);
const updateInput = (value: any) => {
emit("update:filterKeyword2", value);
};
const updateInputType = (value: any) => {
emit("update:type", value);
};
//
const Reset = () => {
emit("update:filterKeyword2", "");
};
// modal
const clickAddlist = () => {
dialogConfirm($q, () => createdAppoint());
};
//
const createdAppoint = async () => {
let pId: string[] = [];
let Type = props.type as string
selected.value.forEach((e: any) => {
pId.push(e.personalId);
});
let data = {
id: pId,
};
showLoader();
await http
.put(config.API.apppointmentReport(Type), data)
.then((res: any) => {
success($q, "บันทึกสำเร็จ");
})
.catch((e: any) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
props.fecthlistappointment?.();
selected.value = [];
props.clickClose?.()
});
};
watchEffect(() => {
if (props.Modal === true) {
selected.value = [];
}
});
</script>
<template>
<q-dialog v-model="props.Modal">
<q-card style="width: 1200px; max-width: 80vw">
<DialogHeader title="ส่งไปออกคำสั่ง" :close="clickClose" />
<q-separator />
<q-card-section class="q-pt-none">
<div class="row justify-between">
<div class="col-5">
{{ type }}
<q-toolbar style="padding: 0">
<q-select outlined dense :model-value="type" @update:model-value="updateInputType" :options="optionsType"
label="คำสั่งแต่งตั่ง-เลื่อน-ย้าย" style="width: 400px; max-width: auto" emit-value map-options option-label="name"
option-value="id" />
</q-toolbar>
</div>
<div class="col-5">
<q-toolbar style="padding: 0">
<q-input borderless outlined dense debounce="300" :model-value="filterKeyword2"
@update:model-value="updateInput" placeholder="ค้นหา"
style="width: 850px; max-width: auto">
<template v-slot:append>
<q-icon v-if="filterKeyword2 == ''" name="search" />
<q-icon v-if="filterKeyword2 !== ''" name="clear" class="cursor-pointer" @click="Reset" />
</template>
</q-input>
<q-select v-model="visibleColumns2" multiple outlined dense options-dense
:display-value="$q.lang.table.columns" emit-value map-options :options="columns2" option-value="name"
options-cover style="min-width: 150px" class="gt-xs q-ml-sm" />
</q-toolbar>
</div>
</div>
<d-table :columns="columns2" :rows="rows2" :filter="filterKeyword2" row-key="personalId" flat
:visible-columns="visibleColumns2" selection="multiple" v-model:selected="selected">
<template v-slot:header-selection="scope">
<q-checkbox keep-color color="primary" dense v-model="scope.selected" />
</template>
<template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer">
<q-td>
<q-checkbox keep-color color="primary" dense v-model="props.selected" />
</q-td>
<q-td key="no" :props="props">
{{ props.rowIndex + 1 }}
</q-td>
<q-td key="citizenId" :props="props" @click="pageNext(props.row)">
{{ props.row.citizenId }}
</q-td>
<q-td key="fullname" :props="props" @click="pageNext(props.row)">
{{ props.row.fullname }}
</q-td>
<q-td key="organizationName" :props="props" @click="pageNext(props.row)">
<div v-if="props.row.orgName !== null ||
props.row.positionPath !== null
">
<div class="col-4">
<div class="text-weight-medium">
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
{{ props.row.organizationShortName !== null ? `(${props.row.organizationShortName})` : "" }}
</div>
<div class="text-weight-light">
{{ props.row.positionPath !== null ? props.row.positionPath : "-" }}
{{ props.row.positionNumber !== null ? `(${props.row.positionNumber})` : "" }}
</div>
</div>
</div>
<div v-else>
<div class="col-4">
<div class="text-weight-medium">-</div>
</div>
</div>
</q-td>
<q-td key="birthday" :props="props" @click="pageNext(props.row)">
{{ props.row.birthday }}
</q-td>
</q-tr>
</template>
</d-table>
</q-card-section>
<q-card-actions align="right" class="bg-white text-teal">
<q-btn label="ส่งไปออกคำสั่ง" @click="clickAddlist" color="public" :disable="checkSelected" />
</q-card-actions>
</q-card>
</q-dialog>
</template>

View file

@ -1,53 +1,43 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, onMounted } from "vue"; import { ref, onMounted } from "vue";
import type { QTableProps } from "quasar"; import type { QTableProps } from "quasar";
import { useQuasar } from "quasar"; import { useQuasar } from "quasar";
import { useRouter } from "vue-router"; import { useRouter } from "vue-router";
import DialogHeader from "@/modules/05_placement/components/AppointMent/DialogHeader.vue";
import DialogOrgTree from "@/modules/05_placement/components/AppointMent/AppointmentModal.vue";
import { useCounterMixin } from "@/stores/mixin"; import { useCounterMixin } from "@/stores/mixin";
import { useTransferDataStore } from "@/modules/05_placement/store"
import Dialogbody from "@/modules/05_placement/components/AppointMent/Dialogbody.vue"
import DialogOrgTree from "@/modules/05_placement/components/AppointMent/AppointmentModal.vue";
import http from "@/plugins/http"; import http from "@/plugins/http";
import config from "@/app.config"; import config from "@/app.config";
import { WeekNumberContainer } from "@fullcalendar/core/internal";
const $q = useQuasar();
const modal = ref<boolean>(false);
const storeFn = useTransferDataStore();
const { statusText } = storeFn
const mixin = useCounterMixin(); // const mixin = useCounterMixin(); //
const { const {
showLoader, showLoader,
hideLoader, hideLoader,
dateText,
success, success,
messageError, messageError,
date2Thai, date2Thai,
dialogConfirm,
dialogRemove, dialogRemove,
} = mixin; } = mixin;
const selected = ref([]);
const checkSelected = computed(() => {
if (selected.value.length === 0 || type.value === "") {
return true;
}
});
// const add = () => {
// router.push(`/receive/add`);
// };
const clickClose = () => {
modal.value = false;
};
const $q = useQuasar();
const modal = ref<boolean>(false);
const popup = () => {
modal.value = true;
selected.value = [];
fecthTypeOption();
};
const router = useRouter(); const router = useRouter();
const rows = ref<any>([]);
const rows2 = ref<any>([]);
const modalTree = ref<boolean>(false); const modalTree = ref<boolean>(false);
const personal = ref<any[]>([]); const personal = ref<any[]>([]);
const personalId = ref<string>(""); const personalId = ref<string>("");
const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>("");
const filterRef = ref<any>(null);
const listRecevice = ref<any>([]);
const optionsType = ref<any[]>([]);
const type = ref<string>("");
const visibleColumns = ref<string[]>([ const visibleColumns = ref<string[]>([
"no", "no",
"citizenId", "citizenId",
@ -57,94 +47,12 @@ const visibleColumns = ref<string[]>([
"createdAt", "createdAt",
"status", "status",
]); ]);
const visibleColumns2 = ref<string[]>([ const pagination = ref({
"no", sortBy: "createdAt",
"citizenId", descending: true,
"fullname", page: 1,
"organizationName", rowsPerPage: 10,
"birthday",
]); //
const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>("");
const filterRef = ref<any>(null);
const resetFilter = () => {
filterKeyword.value = "";
filterKeyword2.value = "";
filterRef.value.focus();
};
const optionsType = ref<any[]>([]);
const type = ref<string>("");
onMounted(() => {
fecthlistappointment();
}); });
const listRecevice = ref<any>([]);
const fecthlistappointment = async () => {
showLoader();
rows.value = [];
await http
.get(config.API.appointmentMain())
.then((res) => {
console.log(res);
let response = res.data.result;
listRecevice.value = response;
console.log(response);
rows.value = response.map((e: any) => ({
personalId: e.id,
citizenId: e.citizenId,
fullname: e.prefix + e.firstname + " " + e.lastname,
organizationName:
e.organizationName +
" " +
e.organizationShortName +
" " +
e.positionNumber +
" " +
e.positionPath,
orgName: e.organizationName,
organizationShortName: e.organizationShortName,
positionNumber: e.positionNumber,
positionPath: e.positionPath,
status: status(e.status),
createdAt: date2Thai(e.createdAt),
birthday: e.dateOfBirth == null ? "-" : date2Thai(e.dateOfBirth),
}));
// console.log(rows.value);
rows2.value = rows.value.filter(
(e: any) =>
e.orgName !== null &&
e.status !== "ส่งรายชื่อไปออกคำสั่ง" &&
e.status !== "ออกคำสั่งเสร็จแล้ว"
);
})
.catch((e) => {
console.log(typeof e);
})
.finally(() => {
hideLoader();
});
};
const fecthTypeOption = async () => {
type.value = "";
await http
.get(config.API.typeOrder())
.then((res) => {
optionsType.value = res.data.result.filter(
(e: any) =>
e.commandCode === "C-PM-05" ||
e.commandCode === "C-PM-06" ||
e.commandCode === "C-PM-07"
);
})
.catch((e) => {
messageError($q, e);
});
};
const rows = ref<any>([]);
const rows2 = ref<any>([]);
const columns = ref<QTableProps["columns"]>([ const columns = ref<QTableProps["columns"]>([
{ {
name: "no", name: "no",
@ -211,65 +119,99 @@ const columns = ref<QTableProps["columns"]>([
}, },
]); ]);
const columns2 = ref<QTableProps["columns"]>([ // input
{ const resetFilter = () => {
name: "no", filterKeyword.value = "";
align: "left", filterKeyword2.value = "";
label: "ลำดับ", filterRef.value.focus();
sortable: true, };
field: "no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "citizenId",
align: "left",
label: "เลขประจำตัวประชาชน",
sortable: true,
field: "citizenId",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "fullname",
align: "left",
label: "ชื่อ-นามสกุล",
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "organizationName",
align: "left",
label: "หน่วยงานที่รับการแต่งตั้ง-เลื่อน",
sortable: true,
field: "organizationName",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "birthday",
align: "left",
label: "วัน/เดือน/ปี เกิด",
sortable: true,
field: "birthday",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
// modal
const clickClose = () => {
modal.value = false;
};
// modal
const popup = () => {
modal.value = true;
filterKeyword2.value = "";
fecthTypeOption();
};
// API
const fecthlistappointment = async () => {
showLoader();
rows.value = [];
await http
.get(config.API.appointmentMain())
.then((res) => {
let response = res.data.result;
listRecevice.value = response;
rows.value = response.map((e: any) => ({
personalId: e.id,
citizenId: e.citizenId,
fullname: e.prefix + e.firstname + " " + e.lastname,
organizationName:
e.organizationName +
" " +
e.organizationShortName +
" " +
e.positionNumber +
" " +
e.positionPath,
orgName: e.organizationName,
organizationShortName: e.organizationShortName,
positionNumber: e.positionNumber,
positionPath: e.positionPath,
status: statusText(e.status),
createdAt: date2Thai(e.createdAt),
birthday: e.dateOfBirth == null ? "-" : date2Thai(e.dateOfBirth),
}));
rows2.value = rows.value.filter(
(e: any) =>
e.orgName !== null &&
e.status !== "ส่งรายชื่อไปออกคำสั่ง" &&
e.status !== "ออกคำสั่งเสร็จแล้ว"
);
})
.catch((e) => {
})
.finally(() => {
hideLoader();
});
};
//
const fecthTypeOption = async () => {
type.value = "";
await http
.get(config.API.typeOrder())
.then((res) => {
optionsType.value = res.data.result.filter(
(e: any) =>
e.commandCode === "C-PM-05" ||
e.commandCode === "C-PM-06" ||
e.commandCode === "C-PM-07"
);
})
.catch((e) => {
messageError($q, e);
});
};
//
const openModalTree = (id: string) => { const openModalTree = (id: string) => {
personalId.value = id; personalId.value = id;
personal.value = listRecevice.value.filter((e: any) => e.id === id); personal.value = listRecevice.value.filter((e: any) => e.id === id);
modalTree.value = true; modalTree.value = true;
}; };
//
const clickDelete = (id: string) => { const clickDelete = (id: string) => {
dialogRemove($q, () => deleteAppoint(id)); dialogRemove($q, () => deleteAppoint(id));
}; };
//
const deleteAppoint = async (id: string) => { const deleteAppoint = async (id: string) => {
showLoader(); showLoader();
await http await http
@ -286,66 +228,22 @@ const deleteAppoint = async (id: string) => {
}); });
}; };
const clickAddlist = () => { // modal
dialogConfirm($q, () => createdAppoint());
};
const createdAppoint = async () => {
let pId: string[] = [];
selected.value.forEach((e: any) => {
pId.push(e.personalId);
});
let data = {
id: pId,
};
// console.log(data);
showLoader();
await http
.put(config.API.apppointmentReport(type.value), data)
.then((res: any) => {
console.log(res);
success($q, "บันทึกสำเร็จ");
})
.catch((e: any) => {
// console.log(e);
messageError($q, e);
})
.finally(() => {
hideLoader();
fecthlistappointment();
selected.value = [];
modal.value = false;
});
};
const closeModalTree = async () => { const closeModalTree = async () => {
await fecthlistappointment(); await fecthlistappointment();
modalTree.value = false; modalTree.value = false;
}; };
//
const nextPage = (row: any) => { const nextPage = (row: any) => {
router.push({ router.push({
path: `appoint-promote/detail/${row.personalId}`, path: `appoint-promote/detail/${row.personalId}`,
}); });
}; };
const status = (val: string) => {
switch (val) {
case "WAITTING": onMounted(() => {
return "รอดำเนินการ"; fecthlistappointment();
case "PENDING":
return "เลือกตำแหน่งแล้ว";
case "REPORT":
return "ส่งรายชื่อไปออกคำสั่ง";
case "DONE":
return "ออกคำสั่งเสร็จแล้ว";
default:
return "-";
}
};
const pagination = ref({
sortBy: "createdAt",
descending: true,
page: 1,
rowsPerPage: 10,
}); });
</script> </script>
<template> <template>
@ -357,10 +255,6 @@ const pagination = ref({
<div class="row q-pa-md"> <div class="row q-pa-md">
<div class="col-12"> <div class="col-12">
<div class="row col-12"> <div class="row col-12">
<!-- <q-btn flat round color="primary" @click="add" icon="mdi-plus">
<q-tooltip>เพมขอม</q-tooltip>
</q-btn> -->
<q-btn @click="popup()" size="14px" flat round color="add" icon="mdi-account-arrow-right"> <q-btn @click="popup()" size="14px" flat round color="add" icon="mdi-account-arrow-right">
<q-tooltip>งไปออกคำสงแตงต-เลอน-าย</q-tooltip> <q-tooltip>งไปออกคำสงแตงต-เลอน-าย</q-tooltip>
</q-btn> </q-btn>
@ -407,26 +301,12 @@ const pagination = ref({
"> ">
<div class="col-4"> <div class="col-4">
<div class="text-weight-medium"> <div class="text-weight-medium">
{{ {{ props.row.orgName !== null ? props.row.orgName : "-" }}
props.row.orgName !== null ? props.row.orgName : "-" {{ props.row.organizationShortName !== null ? `(${props.row.organizationShortName})` : "" }}
}}
{{
props.row.organizationShortName !== null
? `(${props.row.organizationShortName})`
: ""
}}
</div> </div>
<div class="text-weight-light"> <div class="text-weight-light">
{{ {{ props.row.positionPath !== null ? props.row.positionPath : "-" }}
props.row.positionPath !== null {{ props.row.positionNumber !== null ? `(${props.row.positionNumber})` : "" }}
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
? `(${props.row.positionNumber})`
: ""
}}
</div> </div>
</div> </div>
</div> </div>
@ -476,109 +356,16 @@ const pagination = ref({
</div> </div>
</q-card> </q-card>
<q-dialog v-model="modal"> <Dialogbody
<q-card style="width: 1200px; max-width: 80vw"> v-model:Modal="modal"
<DialogHeader title="ส่งไปออกคำสั่ง" :close="clickClose" /> :clickClose="clickClose"
<q-separator /> :optionsType="optionsType"
<q-card-section class="q-pt-none"> :rows2="rows2"
<div class="row justify-between"> v-model:filterKeyword2="filterKeyword2"
<div class="col-5"> v-model:type="type"
<q-toolbar style="padding: 0"> :nextPage="nextPage"
<q-select outlined dense v-model="type" :options="optionsType" label="คำสั่งแต่งตั่ง-เลื่อน-ย้าย" :fecthlistappointment="fecthlistappointment"
style="width: 400px; max-width: auto" emit-value map-options option-label="name" option-value="id" /> />
</q-toolbar>
</div>
<div class="col-5">
<q-toolbar style="padding: 0">
<q-input borderless outlined dense debounce="300" v-model="filterKeyword2" placeholder="ค้นหา"
style="width: 850px; max-width: auto">
<template v-slot:append>
<q-icon v-if="filterKeyword2 == ''" name="search" />
<q-icon v-if="filterKeyword2 !== ''" name="clear" class="cursor-pointer" @click="resetFilter" />
</template>
</q-input>
<q-select v-model="visibleColumns2" multiple outlined dense options-dense
:display-value="$q.lang.table.columns" emit-value map-options :options="columns2" option-value="name"
options-cover style="min-width: 150px" class="gt-xs q-ml-sm" />
</q-toolbar>
</div>
</div>
<d-table :columns="columns2" :rows="rows2" :filter="filterKeyword2" row-key="personalId" flat
:visible-columns="visibleColumns2" selection="multiple" v-model:selected="selected">
<template v-slot:header-selection="scope">
<q-checkbox keep-color color="primary" dense v-model="scope.selected" />
</template>
<!-- <template v-slot:body-selection="scope">
<q-checkbox
keep-color
color="primary"
dense
v-model="scope.selected"
/>
</template> -->
<template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer">
<q-td>
<q-checkbox keep-color color="primary" dense v-model="props.selected" />
</q-td>
<q-td key="no" :props="props">
{{ props.rowIndex + 1 }}
</q-td>
<q-td key="citizenId" :props="props" @click="nextPage(props.row)">
{{ props.row.citizenId }}
</q-td>
<q-td key="fullname" :props="props" @click="nextPage(props.row)">
{{ props.row.fullname }}
</q-td>
<q-td key="organizationName" :props="props" @click="nextPage(props.row)">
<div v-if="props.row.orgName !== null ||
props.row.positionPath !== null
">
<div class="col-4">
<div class="text-weight-medium">
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
{{
props.row.organizationShortName !== null
? `(${props.row.organizationShortName})`
: ""
}}
</div>
<div class="text-weight-light">
{{
props.row.positionPath !== null
? props.row.positionPath
: "-"
}}
{{
props.row.positionNumber !== null
? `(${props.row.positionNumber})`
: ""
}}
</div>
</div>
</div>
<div v-else>
<div class="col-4">
<div class="text-weight-medium">-</div>
</div>
</div>
</q-td>
<q-td key="birthday" :props="props" @click="nextPage(props.row)">
{{ props.row.birthday }}
</q-td>
</q-tr>
</template>
</d-table>
</q-card-section>
<q-card-actions align="right" class="bg-white text-teal">
<q-btn label="ส่งไปออกคำสั่ง" @click="clickAddlist" color="public" :disable="checkSelected" />
</q-card-actions>
</q-card>
</q-dialog>
<DialogOrgTree v-model:modal="modalTree" :close="closeModalTree" :personal="personal" :personalId="personalId" /> <DialogOrgTree v-model:modal="modalTree" :close="closeModalTree" :personal="personal" :personalId="personalId" />
<!-- :personalId="personalId" -->
</template> </template>
<style scoped lang="scss"></style> <style scoped lang="scss"></style>

View file

@ -27,7 +27,6 @@ const rows2 = ref<any>([]);
const filterKeyword = ref<string>(""); const filterKeyword = ref<string>("");
const filterKeyword2 = ref<string>(""); const filterKeyword2 = ref<string>("");
const filterRef = ref<any>(null); const filterRef = ref<any>(null);
const selected = ref([]);
const pagination = ref({ const pagination = ref({
sortBy: "createdAt", sortBy: "createdAt",
@ -193,7 +192,6 @@ const popup = () => {
filterKeyword2.value = ""; filterKeyword2.value = "";
fecthTypeOption(); fecthTypeOption();
type.value = ""; type.value = "";
selected.value = [];
}; };
//----( modal)------// //----( modal)------//
@ -336,7 +334,6 @@ onMounted(() => {
:clickClose="clickClose" :clickClose="clickClose"
:optionsType="optionsType" :optionsType="optionsType"
:rows2="rows2" :rows2="rows2"
:selected="selected"
v-model:filterKeyword2="filterKeyword2" v-model:filterKeyword2="filterKeyword2"
v-model:type="type" v-model:type="type"
:fecthlistOthet="fecthlistOthet" :fecthlistOthet="fecthlistOthet"