2024-10-18 16:48:27 +07:00
|
|
|
<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 type { AppointMainRows } from "@/modules/05_placement/interface/request/Main";
|
|
|
|
|
|
|
|
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
|
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
|
|
|
|
|
|
|
|
/** use */
|
|
|
|
|
const $q = useQuasar();
|
|
|
|
|
const selected = ref<AppointMainRows[]>([]);
|
|
|
|
|
const mixin = useCounterMixin();
|
2024-12-11 11:49:34 +07:00
|
|
|
const { dialogConfirm, onSearchDataTable } = mixin;
|
2024-10-18 16:48:27 +07:00
|
|
|
|
2024-10-24 13:19:39 +07:00
|
|
|
const dataMapToSend = computed(() => {
|
2024-12-26 17:15:07 +07:00
|
|
|
const firstSelected = selected.value[0];
|
|
|
|
|
return firstSelected
|
|
|
|
|
? firstSelected.directors.map((i: any) => ({
|
|
|
|
|
id: firstSelected.id,
|
|
|
|
|
profileId: i.profileId,
|
|
|
|
|
prefix: i.prefix,
|
|
|
|
|
firstName: i.firstName,
|
|
|
|
|
lastName: i.lastName,
|
|
|
|
|
citizenId: i.citizenId,
|
|
|
|
|
rootId: i.rootId,
|
2025-01-28 13:30:12 +07:00
|
|
|
position: i.positionOld,
|
|
|
|
|
posType: i.positionTypeOld,
|
|
|
|
|
posLevel: i.positionLevelOld,
|
2024-12-26 17:15:07 +07:00
|
|
|
}))
|
|
|
|
|
: [];
|
2024-10-24 13:19:39 +07:00
|
|
|
});
|
|
|
|
|
|
2024-10-18 16:48:27 +07:00
|
|
|
const filterKeyword = defineModel<string>("filterKeyword", { required: true });
|
|
|
|
|
const rows = defineModel<AppointMainRows[]>("rows", { required: true });
|
2024-12-11 11:49:34 +07:00
|
|
|
const rowsData = defineModel<AppointMainRows[]>("rowsData", { required: true });
|
2024-10-18 16:48:27 +07:00
|
|
|
/** props*/
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
modal: Boolean,
|
|
|
|
|
closeModal: Function,
|
|
|
|
|
getData: Function,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/** ฟังก์ชั่นการ Selected Data*/
|
|
|
|
|
const checkSelected = computed(() => {
|
|
|
|
|
if (selected.value.length === 0) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const pagination = ref({
|
|
|
|
|
sortBy: "createdAt",
|
|
|
|
|
descending: true,
|
|
|
|
|
page: 1,
|
|
|
|
|
rowsPerPage: 10,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//Table
|
|
|
|
|
const visibleColumns = ref<string[]>(["no", "topic", "commandNo", "status"]);
|
|
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: false,
|
|
|
|
|
field: "no",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "topic",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "หัวข้อ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "topic",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "commandNo",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "เลขที่คำสั่ง",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "commandNo",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "status",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "status",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2024-12-26 13:48:50 +07:00
|
|
|
format(val, row) {
|
|
|
|
|
return convertText(row.status);
|
|
|
|
|
},
|
2024-10-18 16:48:27 +07:00
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const modalCommand = ref<boolean>(false);
|
|
|
|
|
|
2024-10-22 18:44:17 +07:00
|
|
|
/** popup ยืนยันส่งไปออกคำสั่ง */
|
2024-10-18 16:48:27 +07:00
|
|
|
function saveOrder() {
|
2025-07-18 16:08:08 +07:00
|
|
|
// dialogConfirm(
|
|
|
|
|
// $q,
|
|
|
|
|
// () => {
|
|
|
|
|
props.closeModal?.();
|
|
|
|
|
modalCommand.value = true;
|
|
|
|
|
// },
|
|
|
|
|
// "ยืนยันส่งไปออกคำสั่ง",
|
|
|
|
|
// "ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
|
|
|
// );
|
2024-10-18 16:48:27 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits(["update:filterKeyword2", "update:selected"]);
|
|
|
|
|
function updateInput(value: any) {
|
|
|
|
|
emit("update:filterKeyword2", value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** รีเซ็ตค่าในช่องค้นหา */
|
|
|
|
|
function Reset() {
|
|
|
|
|
emit("update:filterKeyword2", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** แปลง EN to THAI */
|
|
|
|
|
function convertText(val: string) {
|
|
|
|
|
switch (val) {
|
|
|
|
|
case "PENDING":
|
|
|
|
|
return "รอดำเนินการ";
|
|
|
|
|
case "REPORT":
|
2024-10-22 18:44:17 +07:00
|
|
|
return "ส่งไปออกคำสั่ง";
|
2024-10-18 16:48:27 +07:00
|
|
|
case "DONE":
|
|
|
|
|
return "เสร็จสิ้น";
|
|
|
|
|
default:
|
|
|
|
|
"-";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-11 11:49:34 +07:00
|
|
|
function onSearch() {
|
|
|
|
|
rows.value = onSearchDataTable(
|
|
|
|
|
filterKeyword.value,
|
|
|
|
|
rowsData.value,
|
|
|
|
|
columns.value ? columns.value : []
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-18 16:48:27 +07:00
|
|
|
watchEffect(() => {
|
|
|
|
|
if (props.modal === true) {
|
|
|
|
|
selected.value = [];
|
2024-11-29 18:16:49 +07:00
|
|
|
filterKeyword.value = "";
|
2024-10-18 16:48:27 +07:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2024-10-22 18:44:17 +07:00
|
|
|
|
2024-10-18 16:48:27 +07:00
|
|
|
<template>
|
2024-11-15 16:53:28 +07:00
|
|
|
<q-dialog v-model="props.modal" persistent>
|
2024-10-18 16:48:27 +07:00
|
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
|
|
|
<DialogHeader tittle="ส่งไปออกคำสั่ง" :close="closeModal" />
|
|
|
|
|
<q-separator />
|
2024-11-29 18:16:49 +07:00
|
|
|
<q-card-section>
|
|
|
|
|
<div class="row col-12 q-col-gutter-sm">
|
|
|
|
|
<div class="row col-12">
|
|
|
|
|
<q-space />
|
|
|
|
|
<q-input
|
|
|
|
|
borderless
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
|
|
|
|
placeholder="ค้นหา"
|
|
|
|
|
v-model="filterKeyword"
|
2025-05-23 11:47:17 +07:00
|
|
|
@keydown.enter.prevent="onSearch"
|
2024-11-29 18:16:49 +07:00
|
|
|
>
|
|
|
|
|
<template v-slot:append>
|
|
|
|
|
<q-icon name="search" />
|
|
|
|
|
</template>
|
|
|
|
|
</q-input>
|
|
|
|
|
<q-select
|
|
|
|
|
v-model="visibleColumns"
|
|
|
|
|
multiple
|
|
|
|
|
outlined
|
2024-10-18 16:48:27 +07:00
|
|
|
dense
|
2024-11-29 18:16:49 +07:00
|
|
|
options-dense
|
|
|
|
|
:display-value="$q.lang.table.columns"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
:options="columns"
|
|
|
|
|
option-value="name"
|
|
|
|
|
style="min-width: 140px"
|
|
|
|
|
class="q-ml-sm"
|
2024-10-18 16:48:27 +07:00
|
|
|
/>
|
2024-11-29 18:16:49 +07:00
|
|
|
</div>
|
2024-10-18 16:48:27 +07:00
|
|
|
|
2024-11-29 18:16:49 +07:00
|
|
|
<div class="col-12">
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:rows="rows"
|
|
|
|
|
row-key="id"
|
|
|
|
|
:visible-columns="visibleColumns"
|
|
|
|
|
selection="single"
|
|
|
|
|
v-model:selected="selected"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:header-selection="scope">
|
2024-10-18 16:48:27 +07:00
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
2024-11-29 18:16:49 +07:00
|
|
|
v-model="scope.selected"
|
2024-10-18 16:48:27 +07:00
|
|
|
/>
|
2024-11-29 18:16:49 +07:00
|
|
|
</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"
|
|
|
|
|
>
|
|
|
|
|
<div v-if="col.name == 'no'">
|
|
|
|
|
{{
|
|
|
|
|
(pagination.page - 1) * pagination.rowsPerPage +
|
|
|
|
|
props.rowIndex +
|
|
|
|
|
1
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div v-else>
|
|
|
|
|
{{ col.value ? col.value : "-" }}
|
|
|
|
|
</div>
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-10-18 16:48:27 +07:00
|
|
|
</q-card-section>
|
|
|
|
|
|
|
|
|
|
<q-card-actions align="right" class="bg-white text-teal">
|
|
|
|
|
<q-btn
|
|
|
|
|
label="ส่งไปออกคำสั่ง"
|
|
|
|
|
@click="saveOrder"
|
|
|
|
|
:disable="checkSelected"
|
|
|
|
|
color="public"
|
|
|
|
|
/>
|
|
|
|
|
</q-card-actions>
|
|
|
|
|
</q-card>
|
|
|
|
|
</q-dialog>
|
|
|
|
|
<DialogCreateCommand
|
|
|
|
|
v-model:modal="modalCommand"
|
|
|
|
|
:command-type-code="'C-PM-10'"
|
2024-11-07 15:42:52 +07:00
|
|
|
:persons="selected ? dataMapToSend : []"
|
2024-10-24 13:19:39 +07:00
|
|
|
:not-person="false"
|
2024-10-18 16:48:27 +07:00
|
|
|
/>
|
|
|
|
|
</template>
|