350 lines
9.3 KiB
Vue
350 lines
9.3 KiB
Vue
<script setup lang="ts">
|
|
import { ref, watch, computed } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
/** importType*/
|
|
import type { QTableProps } from "quasar";
|
|
import type { officerType } from "@/modules/05_placement/interface/response/officer";
|
|
|
|
/** importComponents*/
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
|
|
/** use*/
|
|
const $q = useQuasar();
|
|
const { statusText } = useTransferDataStore();
|
|
const {
|
|
dialogConfirm,
|
|
findOrgNameOld,
|
|
findPosMasterNoOld,
|
|
date2Thai,
|
|
onSearchDataTable,
|
|
} = useCounterMixin();
|
|
|
|
/** props*/
|
|
const props = defineProps({
|
|
Modal: Boolean,
|
|
closeModal: Function,
|
|
getData: Function,
|
|
});
|
|
|
|
const rows2 = defineModel<any[]>("rows2", { required: true });
|
|
const rows2Data = defineModel<any[]>("rows2Data", { required: true });
|
|
const filterKeyword2 = defineModel<string>("filterKeyword2", {
|
|
required: true,
|
|
});
|
|
|
|
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: "name",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
sortable: true,
|
|
field: "name",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
|
},
|
|
},
|
|
{
|
|
name: "posMasterNoOld",
|
|
align: "left",
|
|
label: "ตำแหน่งเลขที่",
|
|
sortable: true,
|
|
field: "posMasterNoOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return findPosMasterNoOld(row);
|
|
},
|
|
},
|
|
{
|
|
name: "positionOld",
|
|
align: "left",
|
|
label: "ตำแหน่งในสายงาน",
|
|
sortable: true,
|
|
field: "positionOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "positionLevel",
|
|
align: "left",
|
|
label: "ประเภทตำแหน่ง",
|
|
sortable: true,
|
|
field: "positionLevel",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
let name = "";
|
|
if (row.posTypeNameOld && row.posLevelNameOld) {
|
|
name = `${row.posTypeNameOld} (${row.posLevelNameOld})`;
|
|
} else if (row.posTypeNameOld) {
|
|
name = `${row.posTypeNameOld}`;
|
|
} else if (row.posLevelNameOld) {
|
|
name = `(${row.posLevelNameOld})`;
|
|
} else name = "-";
|
|
return name;
|
|
},
|
|
},
|
|
{
|
|
name: "organizationPositionOld",
|
|
align: "left",
|
|
label: "สังกัด",
|
|
sortable: true,
|
|
field: "organization",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val, row) => findOrgNameOld(row),
|
|
},
|
|
{
|
|
name: "organization",
|
|
align: "left",
|
|
label: "หน่วยงานที่ให้ช่วยราชการ",
|
|
sortable: true,
|
|
field: "organization",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "dateStart",
|
|
align: "left",
|
|
label: "วันเริ่มช่วยราชการ",
|
|
sortable: true,
|
|
field: "dateStart",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => date2Thai(val),
|
|
},
|
|
{
|
|
name: "dateEnd",
|
|
align: "left",
|
|
label: "วันสิ้นสุดการช่วยราชการ",
|
|
sortable: true,
|
|
field: "dateEnd",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => date2Thai(val),
|
|
},
|
|
{
|
|
name: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => date2Thai(val),
|
|
},
|
|
{
|
|
name: "status",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "status",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => statusText(val),
|
|
},
|
|
]);
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"name",
|
|
"posMasterNoOld",
|
|
"positionOld",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"organization",
|
|
"dateStart",
|
|
"dateEnd",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
const selected = ref<officerType[]>([]); //รายการที่เลือก
|
|
|
|
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,
|
|
remarkVertical: i.reason,
|
|
position: i.positionOld,
|
|
posType: i.posTypeNameOld,
|
|
posLevel: i.posLevelNameOld,
|
|
}));
|
|
});
|
|
const modalCommand = ref<boolean>(false);
|
|
|
|
/** ยืนยันการส่งไปออกคำสั่ง*/
|
|
function saveOrder() {
|
|
dialogConfirm(
|
|
$q,
|
|
() => {
|
|
props.closeModal?.();
|
|
modalCommand.value = true;
|
|
},
|
|
"ยืนยันส่งไปออกคำสั่ง",
|
|
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
);
|
|
}
|
|
|
|
/**
|
|
* อัปเดทคค้นหา
|
|
* @param value ตำค้นหา
|
|
*/
|
|
function updateInput(value: string) {
|
|
emit("update:filterKeyword2", value);
|
|
}
|
|
|
|
/**
|
|
* เมื่อ props.modal เป็น true
|
|
* กำหนดให้ selected เป็นค่าว่าง
|
|
*/
|
|
watch(
|
|
() => props.Modal,
|
|
() => {
|
|
if (props.Modal === true) {
|
|
selected.value = [];
|
|
}
|
|
}
|
|
);
|
|
|
|
function onSearch() {
|
|
rows2.value = onSearchDataTable(
|
|
filterKeyword2.value,
|
|
rows2Data.value,
|
|
columns2.value ? columns2.value : []
|
|
);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<q-dialog v-model="props.Modal" persistent>
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
<DialogHeader :tittle="'ส่งไปออกคำสั่งช่วยราชการ'" :close="closeModal" />
|
|
<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
|
|
v-model="filterKeyword2"
|
|
placeholder="ค้นหา"
|
|
@keydown.enter="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"
|
|
class="gt-xs q-ml-sm"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<d-table
|
|
:columns="columns2"
|
|
:rows="rows2"
|
|
row-key="id"
|
|
class="custom-header-table"
|
|
: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.id">
|
|
<div v-if="col.name === 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div
|
|
v-else
|
|
:class="
|
|
col.name === 'organizationPositionOld' ||
|
|
col.name === 'organization'
|
|
? 'table_ellipsis'
|
|
: ''
|
|
"
|
|
>
|
|
{{
|
|
col.value == null
|
|
? ""
|
|
: 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="ส่งไปออกคำสั่ง"
|
|
:disable="selected.length === 0"
|
|
color="public"
|
|
@click="saveOrder"
|
|
><q-tooltip>ส่งไปออกคำสั่ง</q-tooltip></q-btn
|
|
>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<DialogCreateCommand
|
|
v-model:modal="modalCommand"
|
|
:command-type-code="'C-PM-15'"
|
|
:persons="dataMapToSend"
|
|
/>
|
|
</template>
|