2024-10-07 16:16:24 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, watch } from "vue";
|
|
|
|
|
import { useQuasar } from "quasar";
|
|
|
|
|
import { useRoute } from "vue-router";
|
|
|
|
|
|
|
|
|
|
import avatar from "@/assets/avatar_user.jpg";
|
|
|
|
|
|
|
|
|
|
import http from "@/plugins/http";
|
|
|
|
|
import config from "@/app.config";
|
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
|
import { useCommandMainStore } from "@/modules/18_command/store/Main";
|
|
|
|
|
import { usePlacementDataStore } from "@/modules/05_placement/store";
|
|
|
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
|
|
|
|
|
|
import type { QTableProps } from "quasar";
|
|
|
|
|
import type { ResponseData } from "@/modules/05_placement/interface/response/Transfer";
|
|
|
|
|
import type { ListCommand } from "@/modules/18_command/interface/index/Main";
|
|
|
|
|
import type {
|
|
|
|
|
FormMainProbation,
|
|
|
|
|
FormMainProbation2,
|
|
|
|
|
OpfillterType,
|
|
|
|
|
} from "@/modules/05_placement/interface/request/Main";
|
|
|
|
|
|
|
|
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
|
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
|
|
|
|
|
|
|
|
const $q = useQuasar();
|
|
|
|
|
const mixin = useCounterMixin();
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
const DataStore = usePlacementDataStore();
|
|
|
|
|
const store = useTransferDataStore();
|
|
|
|
|
const storeCommand = useCommandMainStore();
|
|
|
|
|
const { dialogConfirm, dateText, showLoader, hideLoader, messageError } = mixin;
|
|
|
|
|
|
|
|
|
|
const modal = defineModel<boolean>("modal", { required: true });
|
|
|
|
|
|
|
|
|
|
const examId = route.params.examId;
|
|
|
|
|
const rows = ref<FormMainProbation[]>([]);
|
|
|
|
|
const commandType = ref<string>("");
|
|
|
|
|
const commandOp = ref<ListCommand[]>([]);
|
|
|
|
|
const listCommand = ref<ListCommand[]>([]); // เก็บคำสั่งทั้งหมด
|
|
|
|
|
const modalCommand = ref<boolean>(false); //เปิด-ปิด modal สร้างคำสั่ง
|
|
|
|
|
|
|
|
|
|
//Table
|
|
|
|
|
const selected = ref<ResponseData[]>([]); //รายชื่อที่เลือก
|
|
|
|
|
const filter = ref<string>(""); //คำค้นหา
|
|
|
|
|
const total = ref<number>(0);
|
|
|
|
|
const totalList = ref<number>(1);
|
|
|
|
|
const pagination = ref({
|
|
|
|
|
sortBy: "createdAt",
|
|
|
|
|
descending: true,
|
|
|
|
|
page: 1,
|
|
|
|
|
rowsPerPage: 10,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/** ข้อมูลที่เเสดง */
|
|
|
|
|
const visibleColumns = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"name",
|
|
|
|
|
"position_line",
|
|
|
|
|
"position_level",
|
|
|
|
|
"organization",
|
|
|
|
|
"probation_no",
|
|
|
|
|
"order_number",
|
|
|
|
|
"probation_status",
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
/** หัวตาราง */
|
|
|
|
|
const columns = 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",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "position_line",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ตำแหน่งในสายงาน",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "position_line",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "position_level",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ระดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "position_level",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "organization",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สังกัด",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "organization",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px ",
|
|
|
|
|
classes: "table_ellipsis",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "probation_no",
|
|
|
|
|
align: "center",
|
|
|
|
|
label: "ครั้งที่ทดลองปฏิบัติหน้าที่ราชการ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "probation_no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
format(val, row) {
|
|
|
|
|
return row.probation_no ? row.probation_no : "-";
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "order_number",
|
|
|
|
|
align: "center",
|
|
|
|
|
label: "เลขที่คําสั่งบรรจุแต่งตั้ง",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "order_number",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
format(val, row) {
|
|
|
|
|
return row.order_number ? row.order_number : "-";
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "probation_status",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "probation_status",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ฟิลเตอร์ คำสั่ง
|
|
|
|
|
* @param val ค่าจาก Input
|
|
|
|
|
* @param update Funtion quasar
|
|
|
|
|
*/
|
|
|
|
|
function filterSelector(val: string, update: Function) {
|
|
|
|
|
update(() => {
|
|
|
|
|
commandType.value = val ? "" : commandType.value;
|
|
|
|
|
commandOp.value = listCommand.value.filter(
|
|
|
|
|
(v: any) => v.name.indexOf(val) > -1
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** ฟังก์ชั่นยืนยันและส่งคนไปสร้างคำสั่ง */
|
|
|
|
|
function saveOrder() {
|
|
|
|
|
dialogConfirm(
|
|
|
|
|
$q,
|
|
|
|
|
async () => {
|
|
|
|
|
modalCommand.value = true;
|
|
|
|
|
modal.value = false;
|
|
|
|
|
},
|
|
|
|
|
"ยืนยันส่งไปออกคำสั่ง",
|
|
|
|
|
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** ปิด Modal และล้างค่าที่เลือก */
|
|
|
|
|
function closeModal() {
|
|
|
|
|
modal.value = false;
|
|
|
|
|
commandType.value = "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** ดึงข้อมูลคน */
|
|
|
|
|
async function getList() {
|
|
|
|
|
showLoader();
|
|
|
|
|
await http
|
|
|
|
|
.get(
|
|
|
|
|
config.API.probationPersonalList() +
|
|
|
|
|
`?status=${commandType.value == "C-PM-11" ? 2 : 3}&page=${
|
|
|
|
|
pagination.value.page
|
|
|
|
|
}&pageSize=${pagination.value.rowsPerPage}`
|
|
|
|
|
)
|
|
|
|
|
.then(async (res) => {
|
2024-10-07 16:36:00 +07:00
|
|
|
const data = await res.data.data.data;
|
|
|
|
|
const resTotal = await res.data.data.total;
|
2024-10-07 16:16:24 +07:00
|
|
|
rows.value = data;
|
2024-10-07 16:36:00 +07:00
|
|
|
totalList.value = Math.ceil(resTotal / pagination.value.rowsPerPage);
|
|
|
|
|
total.value = resTotal;
|
2024-10-07 16:16:24 +07:00
|
|
|
hideLoader();
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
messageError($q, e);
|
|
|
|
|
hideLoader();
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updatePagination(newPagination: any) {
|
|
|
|
|
pagination.value.page = 1;
|
|
|
|
|
pagination.value.rowsPerPage = newPagination.rowsPerPage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
watch(
|
|
|
|
|
() => pagination.value.rowsPerPage,
|
|
|
|
|
async () => {
|
|
|
|
|
await getList();
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* เมื่อ props.modal เป็น true
|
|
|
|
|
* กำหนดให้ selected เป็นค่าว่างและกำหนด filter ประเภทตำแหน่งตามประเภทการสอบ
|
|
|
|
|
*/
|
|
|
|
|
watch(
|
|
|
|
|
() => modal.value,
|
|
|
|
|
async () => {
|
|
|
|
|
if (modal.value === true) {
|
|
|
|
|
rows.value = [];
|
|
|
|
|
selected.value = [];
|
|
|
|
|
commandType.value = "";
|
|
|
|
|
filter.value = "";
|
|
|
|
|
const status = DataStore.DataMainOrig.find((x: any) => x.id == examId);
|
|
|
|
|
if (status?.examTypeName !== "") {
|
|
|
|
|
const data = await storeCommand.getCommandTypes();
|
|
|
|
|
|
|
|
|
|
listCommand.value = data.filter(
|
|
|
|
|
(v: any) => v.code === "C-PM-11" || v.code === "C-PM-12"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<q-dialog v-model="modal">
|
|
|
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
|
|
|
<DialogHeader :tittle="'ส่งไปออกคำสั่ง'" :close="closeModal" />
|
|
|
|
|
<q-separator />
|
|
|
|
|
<q-card-section>
|
|
|
|
|
<div class="row q-mb-sm" style="padding: 0">
|
|
|
|
|
<q-select
|
|
|
|
|
v-model="commandType"
|
|
|
|
|
dense
|
|
|
|
|
outlined
|
|
|
|
|
label="ประเภทคำสั่ง"
|
|
|
|
|
:options="commandOp"
|
|
|
|
|
option-label="name"
|
|
|
|
|
option-value="code"
|
|
|
|
|
emit-value
|
|
|
|
|
class="inputgreen"
|
|
|
|
|
map-options
|
|
|
|
|
use-input
|
|
|
|
|
style="width: 350px; max-width: auto"
|
|
|
|
|
@update:model-value="getList()"
|
|
|
|
|
@filter="(inputValue:any,
|
|
|
|
|
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 />
|
|
|
|
|
<q-input
|
|
|
|
|
borderless
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
|
|
|
|
debounce="300"
|
|
|
|
|
v-model="filter"
|
|
|
|
|
placeholder="ค้นหา"
|
|
|
|
|
style="width: 200px; max-width: auto"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:append>
|
|
|
|
|
<q-icon v-if="filter == ''" name="search" />
|
|
|
|
|
<q-icon
|
|
|
|
|
v-if="filter !== ''"
|
|
|
|
|
name="clear"
|
|
|
|
|
class="cursor-pointer"
|
|
|
|
|
@click="filter = ''"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
</q-input>
|
|
|
|
|
<q-select
|
|
|
|
|
v-model="visibleColumns"
|
|
|
|
|
multiple
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
|
|
|
|
options-dense
|
|
|
|
|
:display-value="$q.lang.table.columns"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
:options="columns"
|
|
|
|
|
option-value="name"
|
|
|
|
|
options-cover
|
|
|
|
|
style="min-width: 150px"
|
|
|
|
|
class="gt-xs q-ml-sm"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:rows="rows"
|
|
|
|
|
:filter="filter"
|
|
|
|
|
row-key="personal_id"
|
|
|
|
|
:visible-columns="visibleColumns"
|
|
|
|
|
selection="multiple"
|
|
|
|
|
v-model:selected="selected"
|
|
|
|
|
:rows-per-page-options="[10, 25, 50, 100]"
|
|
|
|
|
@update:pagination="updatePagination"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:header-selection="scope">
|
|
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
|
|
|
|
:disable="commandType"
|
|
|
|
|
v-model="scope.selected"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:body="props">
|
|
|
|
|
<q-tr :props="props">
|
|
|
|
|
<q-td>
|
|
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
|
|
|
|
:disable="commandType"
|
|
|
|
|
v-model="props.selected"
|
|
|
|
|
/>
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td v-for="col in props.cols" :key="col.name" :props="props">
|
|
|
|
|
<div v-if="col.name == 'no'">
|
|
|
|
|
{{
|
|
|
|
|
(pagination.page - 1) * pagination.rowsPerPage +
|
|
|
|
|
props.rowIndex +
|
|
|
|
|
1
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else-if="col.name == 'order_number'">
|
|
|
|
|
{{
|
2024-10-07 16:38:03 +07:00
|
|
|
props.row.order_number
|
|
|
|
|
? props.row.order_number != "xx/2566"
|
|
|
|
|
? props.row.order_number
|
|
|
|
|
: "-"
|
2024-10-07 16:16:24 +07:00
|
|
|
: "-"
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else-if="col.name == 'probation_status'">
|
|
|
|
|
{{
|
|
|
|
|
props.row.probation_status
|
|
|
|
|
? store.statusProbationMain(props.row.probation_status)
|
|
|
|
|
: "-"
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div v-else>
|
|
|
|
|
{{ col.value ? col.value : "-" }}
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:pagination="scope">
|
|
|
|
|
ทั้งหมด {{ total }} รายการ
|
|
|
|
|
<q-pagination
|
|
|
|
|
v-model="pagination.page"
|
|
|
|
|
active-color="primary"
|
|
|
|
|
color="dark"
|
|
|
|
|
:max="Number(totalList)"
|
|
|
|
|
size="sm"
|
|
|
|
|
boundary-links
|
|
|
|
|
direction-links
|
|
|
|
|
:max-pages="5"
|
|
|
|
|
@update:model-value="getList"
|
|
|
|
|
></q-pagination>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
<!-- dialog สร้างคำสั่ง -->
|
|
|
|
|
<DialogCreateCommand
|
|
|
|
|
v-model:modal="modalCommand"
|
|
|
|
|
:command-type-code="commandType"
|
|
|
|
|
:persons="selected"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|