hrms-mgt/src/modules/06_retirement/components/resign/DialogSendToCommand.vue

309 lines
8.6 KiB
Vue
Raw Normal View History

2023-09-22 11:48:24 +07:00
<script setup lang="ts">
import { ref, computed, watchEffect } from "vue";
import { useQuasar } from "quasar";
import type { QTableProps } from "quasar";
2023-09-22 11:48:24 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
2024-09-18 15:18:57 +07:00
import { useCounterMixin } from "@/stores/mixin";
import type { ResponseItems } from "@/modules/06_retirement/interface/response/Main";
import DialogHeader from "@/components/DialogHeader.vue";
2023-09-22 11:48:24 +07:00
2023-11-17 14:21:53 +07:00
/** use */
2023-09-22 11:48:24 +07:00
const $q = useQuasar();
const selected = ref<ResponseItems[]>([]);
const mixin = useCounterMixin();
const { showLoader, success, messageError, dialogConfirm, hideLoader } = mixin;
2024-09-18 15:18:57 +07:00
/** props*/
const props = defineProps({
modal: Boolean,
closeModal: Function,
fecthlist: Function,
rows2: Array,
filterKeyword2: String,
});
/**
* งกนการ Selected Data
*/
const checkSelected = computed(() => {
if (selected.value.length === 0) {
return true;
}
});
2023-09-22 11:48:24 +07:00
2023-11-17 14:21:53 +07:00
/** คอลัมน์ */
2023-09-22 11:48:24 +07:00
const columns2 = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: false,
field: "no",
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" }),
},
{
2024-05-24 17:50:43 +07:00
name: "location",
2023-09-22 11:48:24 +07:00
align: "left",
2024-05-24 17:50:43 +07:00
label: "สถานที่ยื่นขอลาออกจากราชการ",
2023-09-22 11:48:24 +07:00
sortable: true,
2024-05-24 17:50:43 +07:00
field: "location",
2023-09-22 11:48:24 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
2024-05-24 17:50:43 +07:00
name: "positionLevel",
2023-09-22 11:48:24 +07:00
align: "left",
2024-05-24 17:50:43 +07:00
label: "ประเภทตำแหน่ง",
2023-09-22 11:48:24 +07:00
sortable: true,
2024-05-24 17:50:43 +07:00
field: "positionLevel",
2023-09-22 11:48:24 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
2024-05-24 17:50:43 +07:00
format(val, row) {
let name = "";
if (row.positionTypeOld && row.positionLevelOld) {
name = `${row.positionTypeOld} (${row.positionLevelOld})`;
} else if (row.positionTypeOld) {
name = `${row.positionTypeOld}`;
} else if (row.positionLevelOld) {
name = `(${row.positionLevelOld})`;
} else name = "-";
return name;
},
2023-09-22 11:48:24 +07:00
},
{
name: "positionNumberOld",
align: "left",
label: "เลขที่",
sortable: true,
field: "positionNumberOld",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "organizationPositionOld",
align: "left",
2024-05-24 17:50:43 +07:00
label: "ตำแหน่ง/สังกัดเดิม",
2023-09-22 11:48:24 +07:00
sortable: true,
field: "organizationPositionOld",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "datetext",
align: "left",
label: "วันที่ดำเนินการ",
sortable: true,
field: "datetext",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
sortOrder: "da",
},
{
name: "statustext",
align: "left",
label: "สถานะ",
sortable: true,
field: "statustext",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
]);
2023-11-17 14:21:53 +07:00
/** คอลัมน์ที่แสดง */
2023-09-22 11:48:24 +07:00
const visibleColumns2 = ref<string[]>([
"no",
2024-05-24 17:50:43 +07:00
"prefix",
2023-09-22 11:48:24 +07:00
"fullname",
2024-05-24 17:50:43 +07:00
"location",
"positionLevel",
2023-09-22 11:48:24 +07:00
"positionNumberOld",
"organizationPositionOld",
"datetext",
"statustext",
]);
2024-09-18 15:18:57 +07:00
/** popup ยืนยันส่งัว */
function saveOrder() {
2023-09-22 11:48:24 +07:00
dialogConfirm(
$q,
() => Ordersave(),
"ยืนยันส่งไปออกคำสั่ง",
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
);
2024-09-18 15:18:57 +07:00
}
/** ส่งไปออกคำสั่ง */
async function Ordersave() {
2023-09-22 11:48:24 +07:00
const id = selected.value.map((r) => r.id);
const body = {
id,
};
showLoader();
await http
.post(config.API.resignReport, body)
.then((res: any) => {
success($q, "ส่งไปออกคำสั่งลาออกสำเร็จ");
props.closeModal?.();
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
props.fecthlist?.();
hideLoader();
});
2024-09-18 15:18:57 +07:00
}
2023-09-22 11:48:24 +07:00
const emit = defineEmits(["update:filterKeyword2", "update:selected"]);
2024-09-18 15:18:57 +07:00
function updateInput(value: any) {
2023-09-22 11:48:24 +07:00
emit("update:filterKeyword2", value);
2024-09-18 15:18:57 +07:00
}
2023-09-22 11:48:24 +07:00
2024-09-18 15:18:57 +07:00
/** รีเซ็ตค่าในช่องค้นหา */
function Reset() {
2023-09-22 11:48:24 +07:00
emit("update:filterKeyword2", "");
2024-09-18 15:18:57 +07:00
}
2023-09-22 11:48:24 +07:00
watchEffect(() => {
if (props.modal === true) {
selected.value = [];
}
});
</script>
<template>
<q-dialog v-model="props.modal">
<q-card style="width: 1200px; max-width: 80vw">
<DialogHeader tittle="ส่งไปออกคำสั่งลาออก" :close="closeModal" />
2023-09-22 11:48:24 +07:00
<q-separator />
<q-card-section class="q-pt-none">
<div class="row justify-end">
<div class="col-5">
<q-toolbar style="padding: 0">
<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" />
<q-icon
v-if="filterKeyword2 !== ''"
name="clear"
class="cursor-pointer"
@click="Reset"
/>
</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"
options-cover
style="min-width: 150px"
class="gt-xs q-ml-sm"
/>
</q-toolbar>
</div>
</div>
<d-table
:columns="columns2"
:rows="rows2"
:filter="filterKeyword2"
row-key="id"
: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>
2024-05-24 17:50:43 +07:00
<q-td v-for="col in props.cols" :key="col.id">
<div v-if="col.name === 'no'">
{{ props.rowIndex + 1 }}
</div>
2023-09-22 11:48:24 +07:00
2024-05-24 17:50:43 +07:00
<div
v-else
:class="
col.name === 'organizationPositionOld' ||
col.name === 'organization'
? 'table_ellipsis'
: ''
"
>
{{ col.value ? col.value : "-" }}
2023-09-22 11:48:24 +07:00
</div>
</q-td>
</q-tr>
</template>
</d-table>
</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>
</template>