378 lines
11 KiB
Vue
378 lines
11 KiB
Vue
<script setup lang="ts">
|
|
import { ref, watchEffect, computed } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
import type { QTableProps } from "quasar";
|
|
import type { ResponseRow } from "@/modules/05_placement/interface/response/Receive";
|
|
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
|
|
const transferStore = useTransferDataStore();
|
|
const { statusText } = transferStore;
|
|
const $q = useQuasar();
|
|
const selected = ref<ResponseRow[]>([]);
|
|
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 mixin = useCounterMixin();
|
|
const { dialogConfirm, date2Thai, onSearchDataTable } = mixin;
|
|
|
|
const rows = defineModel<any[]>("rows", { required: true });
|
|
const rowsData = defineModel<any[]>("rowsData", { required: true });
|
|
const filterKeyword2 = defineModel<string>("filterKeyword2", {
|
|
required: true,
|
|
});
|
|
/**
|
|
* props
|
|
*/
|
|
const props = defineProps({
|
|
modal: Boolean,
|
|
clickClose: Function,
|
|
fecthlistRecevice: Function,
|
|
nextPage: Function,
|
|
});
|
|
const emit = defineEmits(["update:filterKeyword2", "update:selected"]);
|
|
|
|
//Table
|
|
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",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "fullname",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
sortable: true,
|
|
field: "fullname",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
format(val, row) {
|
|
return `${row.prefix ?? ""}${row.firstName ?? ""} ${row.lastName ?? ""}`;
|
|
},
|
|
},
|
|
{
|
|
name: "positionNumberOld",
|
|
align: "left",
|
|
label: "เลขที่ตำแหน่งเดิม",
|
|
sortable: true,
|
|
field: "positionNumberOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "posTypeOld",
|
|
align: "left",
|
|
label: "ตำแหน่งประเภทเดิม",
|
|
sortable: true,
|
|
field: "posTypeOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return row.positionTypeOld
|
|
? `${row.positionTypeOld}${
|
|
row.positionLevelOld ? `(${row.positionLevelOld})` : ""
|
|
}`
|
|
: "";
|
|
},
|
|
},
|
|
{
|
|
name: "organizationNameOld",
|
|
align: "left",
|
|
label: "ตำแหน่ง/สังกัดเดิม",
|
|
sortable: true,
|
|
field: "organizationNameOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val, row) => {
|
|
return row.organizationPositionOld
|
|
? `${row.organizationPositionOld.replace(/(.*)\s(.*)$/, "$1\n$2")} `
|
|
: "-";
|
|
},
|
|
},
|
|
{
|
|
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" }),
|
|
format: (val, row) => {
|
|
return `${row.root} (${row.rootShortName}) ${row.nodeName} (${row.nodeShortName}${row.posMasterNo})`;
|
|
},
|
|
},
|
|
{
|
|
name: "dateOfBirth",
|
|
align: "left",
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
sortable: true,
|
|
field: "dateOfBirth",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
format(val, row) {
|
|
return date2Thai(row.dateOfBirth);
|
|
},
|
|
},
|
|
|
|
{
|
|
name: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
sortOrder: "da",
|
|
format(val, row) {
|
|
return date2Thai(row.createdAt);
|
|
},
|
|
},
|
|
{
|
|
name: "status",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "status",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
format(val, row) {
|
|
return statusText(row.status);
|
|
},
|
|
},
|
|
]);
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"fullname",
|
|
"posTypeOld",
|
|
"positionNumberOld",
|
|
"organizationNameOld",
|
|
"organizationName",
|
|
"dateOfBirth",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
|
|
const modalCommand = ref<boolean>(false); //สร้าง/เลือกคำสั่ง
|
|
|
|
/** ฟังก์ชันยืนยันการส่งออกคำสั่ง*/
|
|
function saveOrder() {
|
|
dialogConfirm(
|
|
$q,
|
|
async () => {
|
|
props?.clickClose?.();
|
|
modalCommand.value = true;
|
|
},
|
|
"ยืนยันส่งไปออกคำสั่ง",
|
|
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
);
|
|
}
|
|
|
|
/** ฟังก์ชันอัปเดทค่าในช่องค้นหา*/
|
|
function updateInput(value: string) {
|
|
emit("update:filterKeyword2", value);
|
|
}
|
|
|
|
/** ฟังก์ชันรีเซ็ตค่าในช่องค้นหา*/
|
|
function onReset() {
|
|
emit("update:filterKeyword2", "");
|
|
}
|
|
|
|
function onSearch() {
|
|
rows.value = onSearchDataTable(
|
|
filterKeyword2.value,
|
|
rowsData.value,
|
|
columns2.value ? columns2.value : []
|
|
);
|
|
}
|
|
|
|
/**
|
|
* เมื่อ props.modal เป็น true
|
|
* กำหนดให้ selected เป็นค่าว่าง
|
|
*/
|
|
watchEffect(() => {
|
|
if (props.modal === true) {
|
|
selected.value = [];
|
|
}
|
|
});
|
|
</script>
|
|
<template>
|
|
<q-dialog v-model="props.modal" persistent>
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
<DialogHeader :tittle="'ส่งไปออกคำสั่งรับโอน'" :close="clickClose" />
|
|
<q-separator />
|
|
<q-card-section>
|
|
<div class="row col-12 q-col-gutter-sm">
|
|
<div class="row col-12">
|
|
<q-space />
|
|
|
|
<q-input
|
|
borderless
|
|
outlined
|
|
dense
|
|
:model-value="filterKeyword2"
|
|
@update:model-value="updateInput"
|
|
placeholder="ค้นหา"
|
|
@keydown.enter="onSearch"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
<!-- <q-icon
|
|
v-if="filterKeyword2 !== ''"
|
|
name="clear"
|
|
class="cursor-pointer"
|
|
@click="onReset"
|
|
/> -->
|
|
</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"
|
|
class="gt-xs q-ml-sm"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<d-table
|
|
:columns="columns2"
|
|
:rows="rows"
|
|
row-key="id"
|
|
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
|
|
v-for="col in props.cols"
|
|
:key="col.name"
|
|
:props="props"
|
|
@click="props.nextPage(props.row.id)"
|
|
>
|
|
<div v-if="col.name == 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div v-else-if="col.name == 'organizationName'">
|
|
<div class="col-4">
|
|
<div class="text-weight-medium">
|
|
{{ props.row.root !== null ? props.row.root : "-" }}
|
|
{{
|
|
props.row.rootShortName !== null
|
|
? `(${props.row.rootShortName})`
|
|
: ""
|
|
}}
|
|
</div>
|
|
<div class="text-weight-light">
|
|
{{
|
|
props.row.nodeName !== null
|
|
? props.row.nodeName
|
|
: ""
|
|
}}
|
|
{{
|
|
props.row.nodeShortName !== null
|
|
? `(${props.row.nodeShortName}${props.row.posMasterNo})`
|
|
: ""
|
|
}}
|
|
</div>
|
|
</div>
|
|
</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="ส่งไปออกคำสั่ง"
|
|
@click="saveOrder"
|
|
:disable="selected.length === 0"
|
|
color="public"
|
|
><q-tooltip>ส่งไปออกคำสั่ง</q-tooltip></q-btn
|
|
>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<DialogCreateCommand
|
|
v-model:modal="modalCommand"
|
|
:command-type-code="'C-PM-14'"
|
|
:persons="dataMapToSend"
|
|
/>
|
|
</template>
|