539 lines
16 KiB
Vue
539 lines
16 KiB
Vue
<script setup lang="ts">
|
|
import { ref, watch, type PropType, computed } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
import { useCommandMainStore } from "@/modules/18_command/store/Main";
|
|
|
|
/** importType*/
|
|
import type { QTableProps } from "quasar";
|
|
import type { PersonData } from "@/modules/05_placement/interface/index/Main";
|
|
import type { ListCommand } from "@/modules/18_command/interface/index/Main";
|
|
|
|
/** importcomponents*/
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
|
|
const $q = useQuasar();
|
|
const storeFn = useTransferDataStore();
|
|
const storeCommand = useCommandMainStore();
|
|
const { statusText } = storeFn;
|
|
const {
|
|
dialogConfirm,
|
|
onSearchDataTable,
|
|
date2Thai,
|
|
findOrgNameHtml,
|
|
findOrgName,
|
|
} = useCounterMixin();
|
|
|
|
/**
|
|
* props
|
|
*/
|
|
const props = defineProps({
|
|
Modal: Boolean,
|
|
clickClose: Function,
|
|
fetchData: Function,
|
|
nextPage: Function,
|
|
optionsType: Array,
|
|
type: String,
|
|
});
|
|
const emit = defineEmits([
|
|
"update:filterKeyword2",
|
|
"update:type",
|
|
"update:selected",
|
|
]);
|
|
|
|
const filterKeyword2 = defineModel<string>("filterKeyword2", {
|
|
required: true,
|
|
});
|
|
const rows = defineModel<PersonData[]>("rows", { required: true });
|
|
const rowsData = defineModel<PersonData[]>("rowsData", { required: true });
|
|
/**
|
|
* table
|
|
*/
|
|
const selected = ref<PersonData[]>([]); //ราชชื่อที่เลือกส่งไปออกคำสั่ง
|
|
const dataMapToSend = computed(() => {
|
|
return selected.value.map((i: any) => ({
|
|
id: i.id,
|
|
profileId: i.profileId,
|
|
prefix: i.prefix,
|
|
firstName: i.firstName,
|
|
lastName: i.lastName,
|
|
citizenId: i.citizenId,
|
|
rootId: i.rootId,
|
|
remarkVertical: i.reason,
|
|
position: i.position,
|
|
posType: i.posTypeName,
|
|
posLevel: i.posLevelName,
|
|
}));
|
|
});
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"fullname",
|
|
"positionNumberOld",
|
|
"positionLevel",
|
|
"organizationNameOld",
|
|
"organizationName",
|
|
"typeCommand",
|
|
"dateOfBirth",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: false,
|
|
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",
|
|
format(val, row) {
|
|
return `${
|
|
row.firstName
|
|
? `${row.prefix ?? ""}${row.firstName ?? ""} ${row.lastName ?? ""}`
|
|
: "-"
|
|
}`;
|
|
},
|
|
},
|
|
{
|
|
name: "positionNumberOld",
|
|
align: "left",
|
|
label: "เลขที่ตำแหน่งเดิม",
|
|
sortable: true,
|
|
field: "positionNumberOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return row.positionNumberOld;
|
|
},
|
|
},
|
|
{
|
|
name: "positionLevel",
|
|
align: "left",
|
|
label: "ตำแหน่งประเภทเดิม",
|
|
sortable: true,
|
|
field: "positionLevel",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
let name = "";
|
|
if (row.positionTypeOld && row.positionLevelOld) {
|
|
name = `${row.positionTypeOld} (${row.positionLevelOld})`;
|
|
} else if (row.positionTypeOld) {
|
|
name = `${row.positionTypeOld}`;
|
|
} else if (row.positionLevelOld) {
|
|
name = `(${row.positionLevelOld})`;
|
|
} else name = "-";
|
|
return name;
|
|
},
|
|
},
|
|
{
|
|
name: "organizationNameOld",
|
|
align: "left",
|
|
label: "ตำแหน่ง/สังกัดเดิม",
|
|
sortable: true,
|
|
field: "organizationNameOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val, row) => {
|
|
return `${row.organizationPositionOld.replace(/(.*)\s(.*)$/, "$1\n$2")}`;
|
|
},
|
|
},
|
|
{
|
|
name: "organizationName",
|
|
align: "left",
|
|
label: "หน่วยงานที่รับการแต่งตั้ง-เลื่อน-ย้าย",
|
|
sortable: true,
|
|
field: "organizationName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val, row) => {
|
|
// return `${row.root.position}${row.root.posLevelName}${row.root} (${row.rootShortName}) ${row.nodeName} (${row.nodeShortName}${row.posMasterNo})`;
|
|
return `${row.position !== null ? row.position : ""}${
|
|
row.posLevelName !== null ? `${row.posLevelName}` : ""
|
|
} ${
|
|
row.nodeShortName !== null
|
|
? `(${row.nodeShortName}${row.posMasterNo})`
|
|
: ""
|
|
} ${
|
|
row.positionExecutive !== null
|
|
? `${row.positionExecutive}${
|
|
row.positionExecutiveField
|
|
? ` (${row.positionExecutiveField})`
|
|
: ""
|
|
}`
|
|
: ""
|
|
} ${findOrgName(row)}`;
|
|
},
|
|
},
|
|
{
|
|
name: "dateOfBirth",
|
|
align: "left",
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
sortable: true,
|
|
field: "dateOfBirth",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return date2Thai(row.dateOfBirth);
|
|
},
|
|
},
|
|
{
|
|
name: "typeCommand",
|
|
align: "left",
|
|
label: "ประเภทคำสั่ง",
|
|
sortable: true,
|
|
field: "typeCommand",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val: string) => {
|
|
return val === "APPOINT"
|
|
? "แต่งตั้ง"
|
|
: val === "SLIP"
|
|
? "เลื่อน"
|
|
: val === "MOVE"
|
|
? "ย้าย"
|
|
: "-";
|
|
},
|
|
},
|
|
{
|
|
name: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return date2Thai(row.createdAt);
|
|
},
|
|
},
|
|
{
|
|
name: "status",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "status",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return statusText(row.status);
|
|
},
|
|
},
|
|
]);
|
|
|
|
const commandType = ref<string>(""); //ประเภทคำสั่ง
|
|
const commandMainOp = ref<ListCommand[]>([]); //ข้อมูลรายการคำสั่ง
|
|
const commandOp = ref<ListCommand[]>([]); //ตัวเลือกคำสั่ง
|
|
const modalCommand = ref<boolean>(false);
|
|
|
|
/**
|
|
* ไปหน้ารายละเอียดที่เลือก
|
|
* @param id รายการที่ต้องการดูรายละเอียด
|
|
*/
|
|
function pageNext(id: string) {
|
|
props.nextPage?.(id);
|
|
}
|
|
|
|
/** อัปเดท filter*/
|
|
function updateInput(value: string) {
|
|
emit("update:filterKeyword2", value);
|
|
}
|
|
|
|
/** รีเซ็ตค่าในช่องค้นหา*/
|
|
function Reset() {
|
|
emit("update:filterKeyword2", "");
|
|
}
|
|
|
|
/** ยืนยันส่งไปออกคำสั่ง*/
|
|
function sendToCommand() {
|
|
dialogConfirm($q, async () => {
|
|
modalCommand.value = true;
|
|
await props.clickClose?.();
|
|
});
|
|
}
|
|
|
|
/** ฟังก์ชันเลือกประเภทคำสั่ง */
|
|
function filterSelectOrder() {
|
|
const data = rowsData.value;
|
|
|
|
selected.value = [];
|
|
rows.value = data.filter((v: PersonData) => {
|
|
switch (commandType.value) {
|
|
case "C-PM-05":
|
|
return v.typeCommand === "APPOINT";
|
|
|
|
case "C-PM-39":
|
|
return v.typeCommand === "SLIP";
|
|
|
|
case "C-PM-07":
|
|
return v.typeCommand === "MOVE";
|
|
|
|
case "C-PM-47":
|
|
return v.posTypeName === "บริหาร" || v.posTypeName === "อำนวยการ";
|
|
default:
|
|
return [];
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* ฟิลเตอร์ คำสั่ง
|
|
* @param val ค่าจาก Input
|
|
* @param update Funtion quasar
|
|
*/
|
|
function filterSelector(val: string, update: Function) {
|
|
update(() => {
|
|
commandOp.value = commandMainOp.value.filter(
|
|
(v: ListCommand) => v.name.indexOf(val) > -1
|
|
);
|
|
});
|
|
}
|
|
|
|
function onSearch() {
|
|
rows.value = onSearchDataTable(
|
|
filterKeyword2.value,
|
|
rowsData.value,
|
|
columns2.value ? columns2.value : []
|
|
);
|
|
}
|
|
|
|
/**
|
|
* เมื่อ props.modal เป็น true
|
|
* กำหนดให้ selected เป็นค่าว่าง
|
|
*/
|
|
watch(
|
|
() => props.Modal,
|
|
async () => {
|
|
if (props.Modal === true) {
|
|
selected.value = [];
|
|
commandType.value = "";
|
|
const data = await storeCommand.getCommandTypes();
|
|
commandMainOp.value = data.filter(
|
|
(e: ListCommand) =>
|
|
e.code === "C-PM-05" ||
|
|
e.code === "C-PM-39" ||
|
|
e.code === "C-PM-07" ||
|
|
e.code === "C-PM-47"
|
|
);
|
|
}
|
|
}
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<q-dialog v-model="props.Modal" persistent>
|
|
<q-card style="min-width: 80%">
|
|
<q-form greedy @submit.prevent @validation-success="sendToCommand">
|
|
<DialogHeader :tittle="'ส่งไปออกคำสั่ง'" :close="clickClose" />
|
|
<q-separator />
|
|
<q-card-section>
|
|
<div class="row q-col-gutter-sm">
|
|
<div class="row col-12">
|
|
<q-select
|
|
v-model="commandType"
|
|
dense
|
|
outlined
|
|
label="ประเภทคำสั่ง"
|
|
:options="commandOp"
|
|
option-label="name"
|
|
option-value="code"
|
|
emit-value
|
|
map-options
|
|
use-input
|
|
hide-selected
|
|
fill-input
|
|
@update:model-value="filterSelectOrder"
|
|
@filter="(inputValue:string,
|
|
doneFn:Function) => filterSelector(inputValue, doneFn
|
|
) "
|
|
>
|
|
<template v-slot:no-option>
|
|
<q-item>
|
|
<q-item-section class="text-grey">
|
|
ไม่มีข้อมูล
|
|
</q-item-section>
|
|
</q-item>
|
|
</template>
|
|
</q-select>
|
|
<q-space />
|
|
<div class="row q-col-gutter-sm">
|
|
<q-input
|
|
borderless
|
|
outlined
|
|
dense
|
|
v-model="filterKeyword2"
|
|
placeholder="ค้นหา"
|
|
@keydown.enter.prevent="onSearch"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
</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"
|
|
style="min-width: 140px"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<d-table
|
|
:columns="columns2"
|
|
:rows="rows"
|
|
row-key="profileId"
|
|
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 auto-width>
|
|
<q-checkbox
|
|
keep-color
|
|
color="primary"
|
|
dense
|
|
v-model="props.selected"
|
|
/>
|
|
</q-td>
|
|
<q-td
|
|
v-for="col in props.cols"
|
|
:key="col.name"
|
|
:props="props"
|
|
>
|
|
<!-- @click="pageNext(props.row.id)" -->
|
|
<div v-if="col.name == 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div v-else-if="col.name == 'status'">
|
|
{{
|
|
props.row.status ? statusText(props.row.status) : "-"
|
|
}}
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="col.name == 'organizationNameOld'"
|
|
class="text-html"
|
|
>
|
|
{{
|
|
props.row.organizationPositionOld !== null
|
|
? props.row.organizationPositionOld
|
|
: "-"
|
|
}}
|
|
</div>
|
|
|
|
<div v-else-if="col.name == 'organizationName'">
|
|
{{
|
|
props.row.position !== null ? props.row.position : ""
|
|
}}{{
|
|
props.row.posLevelName !== null
|
|
? `${props.row.posLevelName}`
|
|
: ""
|
|
}}
|
|
<!-- {{
|
|
(props.row.posTypeName !== null &&
|
|
props.row.posTypeName === "บริหาร") ||
|
|
props.row.posTypeName === "อำนวยการ"
|
|
? `${props.row.posTypeName}`
|
|
: ""
|
|
}} -->
|
|
{{
|
|
props.row.nodeShortName !== null
|
|
? `(${props.row.nodeShortName}${props.row.posMasterNo})`
|
|
: ""
|
|
}}
|
|
<div>
|
|
{{
|
|
props.row.positionExecutive !== null
|
|
? `${props.row.positionExecutive}${
|
|
props.row.positionExecutiveField
|
|
? ` (${props.row.positionExecutiveField})`
|
|
: ""
|
|
}`
|
|
: ""
|
|
}}
|
|
</div>
|
|
<div class="text-html">
|
|
{{ findOrgNameHtml(props.row) }}
|
|
</div>
|
|
</div>
|
|
<div v-else-if="col.name == 'createdAt'">
|
|
{{
|
|
props.row.createdAt
|
|
? date2Thai(props.row.createdAt)
|
|
: "-"
|
|
}}
|
|
</div>
|
|
<div v-else>
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</q-card-section>
|
|
<q-separator />
|
|
<q-card-actions align="right">
|
|
<q-btn
|
|
label="ส่งไปออกคำสั่ง"
|
|
type="submit"
|
|
color="public"
|
|
:disable="selected.length === 0 || commandType === ''"
|
|
>
|
|
<q-tooltip>ส่งไปออกคำสั่ง</q-tooltip>
|
|
</q-btn>
|
|
</q-card-actions>
|
|
</q-form>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<!-- dialog สร้างคำสั่ง -->
|
|
<DialogCreateCommand
|
|
v-model:modal="modalCommand"
|
|
:command-type-code="commandType"
|
|
:persons="dataMapToSend"
|
|
:fetch-data="props.fetchData"
|
|
/>
|
|
</template>
|