hrms-mgt/src/modules/05_placement/components/Receive/DialogOrders.vue

327 lines
9.8 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ref, watchEffect,computed } from "vue";
import { useQuasar } from "quasar";
2024-09-19 15:02:44 +07:00
import { useCounterMixin } from "@/stores/mixin";
2024-09-19 15:02:44 +07:00
import type { QTableProps } from "quasar";
import type { ResponseRow } from "@/modules/05_placement/interface/response/Receive";
2024-05-07 11:45:10 +07:00
import { useTransferDataStore } from "@/modules/05_placement/store";
2024-09-19 15:02:44 +07:00
import DialogHeader from "@/components/DialogHeader.vue";
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
2024-05-07 11:45:10 +07:00
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,
remarkVertical: i.reason,
}));
});
const mixin = useCounterMixin();
const { dialogConfirm, date2Thai } = mixin;
2024-09-19 15:02:44 +07:00
/**
* props
*/
const props = defineProps({
modal: Boolean,
clickClose: Function,
fecthlistRecevice: Function,
nextPage: Function,
rows2: Array,
filterKeyword2: String,
});
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" }),
},
{
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" }),
},
{
2024-05-07 11:45:10 +07:00
name: "dateOfBirth",
align: "left",
label: "วัน/เดือน/ปี เกิด",
sortable: true,
2024-05-07 11:45:10 +07:00
field: "dateOfBirth",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2024-05-07 11:45:10 +07:00
name: "createdAt",
align: "left",
label: "วันที่ดำเนินการ",
sortable: true,
2024-05-07 11:45:10 +07:00
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",
},
{
2024-05-07 11:45:10 +07:00
name: "status",
align: "left",
label: "สถานะ",
sortable: true,
2024-05-07 11:45:10 +07:00
field: "status",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
]);
2024-09-19 15:02:44 +07:00
const visibleColumns2 = ref<string[]>([
"no",
"citizenId",
"fullname",
"organizationName",
"dateOfBirth",
"createdAt",
"status",
]);
const modalCommand = ref<boolean>(false); //สร้าง/เลือกคำสั่ง
/** ฟังก์ชันยืนยันการส่งออกคำสั่ง*/
2024-09-19 15:02:44 +07:00
function saveOrder() {
dialogConfirm(
$q,
2024-09-19 15:02:44 +07:00
async () => {
props?.clickClose?.();
modalCommand.value = true;
2024-09-19 15:02:44 +07:00
},
"ยืนยันส่งไปออกคำสั่ง",
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
);
2024-09-19 15:02:44 +07:00
}
/** ฟังก์ชันอัปเดทค่าในช่องค้นหา*/
function updateInput(value: string) {
emit("update:filterKeyword2", value);
2024-09-19 15:02:44 +07:00
}
/** ฟังก์ชันรีเซ็ตค่าในช่องค้นหา*/
2024-09-19 15:02:44 +07:00
function onReset() {
emit("update:filterKeyword2", "");
2024-09-19 15:02:44 +07:00
}
/**
* เม props.modal เป true
* กำหนดให selected เปนคาวาง
*/
watchEffect(() => {
2024-09-19 15:02:44 +07:00
if (props.modal === true) {
selected.value = [];
}
});
</script>
<template>
2024-09-19 15:02:44 +07:00
<q-dialog v-model="props.modal">
<q-card style="width: 1200px; max-width: 80vw">
2024-06-12 13:12:12 +07:00
<DialogHeader :tittle="'ส่งไปออกคำสั่งรับโอน'" :close="clickClose" />
<q-separator />
2024-06-12 13:12:12 +07:00
<q-card-section>
<div class="row justify-end">
<div class="col-5">
<q-toolbar style="padding: 0">
2024-05-07 11:45:10 +07:00
<q-input
borderless
outlined
dense
debounce="300"
:model-value="filterKeyword2"
@update:model-value="updateInput"
placeholder="ค้นหา"
style="width: 850px; max-width: auto"
>
<template v-slot:append>
<q-icon v-if="filterKeyword2 == ''" name="search" />
2024-05-07 11:45:10 +07:00
<q-icon
v-if="filterKeyword2 !== ''"
name="clear"
class="cursor-pointer"
2024-09-19 15:02:44 +07:00
@click="onReset"
2024-05-07 11:45:10 +07:00
/>
</template>
</q-input>
2024-05-07 11:45:10 +07:00
<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"
2024-11-05 16:33:46 +07:00
style="min-width: 140px"
2024-05-07 11:45:10 +07:00
class="gt-xs q-ml-sm"
/>
</q-toolbar>
</div>
</div>
2024-05-07 11:45:10 +07:00
<d-table
:columns="columns2"
:rows="rows2"
:filter="filterKeyword2"
row-key="id"
2024-05-07 11:45:10 +07:00
flat
:visible-columns="visibleColumns2"
selection="multiple"
v-model:selected="selected"
>
<template v-slot:header-selection="scope">
2024-05-07 11:45:10 +07:00
<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>
2024-05-07 11:45:10 +07:00
<q-checkbox
keep-color
color="primary"
dense
v-model="props.selected"
/>
</q-td>
2024-05-07 11:45:10 +07:00
<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 == 'fullname'">
{{
props.row.firstName
? `${props.row.prefix ?? ""}${
props.row.firstName ?? ""
} ${props.row.lastName ?? ""}`
: "-"
}}
</div>
<div v-else-if="col.name == 'dateOfBirth'">
{{
props.row.dateOfBirth
? date2Thai(props.row.dateOfBirth)
: "-"
}}
</div>
<div v-else-if="col.name == 'createdAt'">
{{
props.row.createdAt ? date2Thai(props.row.createdAt) : "-"
}}
</div>
<div v-else-if="col.name == 'organizationName'">
<div class="col-4">
<div class="text-weight-medium">
2024-05-07 11:45:10 +07:00
{{ props.row.root !== null ? props.row.root : "-" }}
{{
props.row.rootShortName !== null
? `(${props.row.rootShortName})`
: ""
}}
</div>
<div class="text-weight-light">
2024-05-07 11:45:10 +07:00
{{
props.row.nodeName !== null ? props.row.nodeName : ""
}}
{{
props.row.nodeShortName !== null
? `(${props.row.nodeShortName}${props.row.posMasterNo})`
: ""
}}
</div>
</div>
</div>
2024-05-07 11:45:10 +07:00
<div v-else-if="col.name == 'status'">
{{ props.row.status ? statusText(props.row.status) : "-" }}
</div>
<div v-else>
2024-05-07 11:45:10 +07:00
{{ col.value ? col.value : "-" }}
</div>
</q-td>
</q-tr>
</template>
</d-table>
</q-card-section>
2024-06-12 13:12:12 +07:00
<q-separator />
<q-card-actions align="right">
2024-05-07 11:45:10 +07:00
<q-btn
label="ส่งไปออกคำสั่ง"
@click="saveOrder"
2024-09-19 15:02:44 +07:00
:disable="selected.length === 0"
2024-05-07 11:45:10 +07:00
color="public"
2024-06-12 13:12:12 +07:00
><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>