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

275 lines
7.7 KiB
Vue
Raw Normal View History

2023-09-22 11:48:24 +07:00
<script setup lang="ts">
2024-10-25 15:09:06 +07:00
import { ref, watchEffect } from "vue";
2023-09-22 11:48:24 +07:00
import { useQuasar } from "quasar";
2024-09-18 15:18:57 +07:00
import { useCounterMixin } from "@/stores/mixin";
2024-10-25 15:09:06 +07:00
import { useRetirementDataStore } from "@/modules/06_retirement/store/Main";
2024-09-18 15:18:57 +07:00
2024-10-25 15:09:06 +07:00
import type { PropType } from "vue";
import type { QTableProps } from "quasar";
2024-09-18 15:18:57 +07:00
import type { ResponseItems } from "@/modules/06_retirement/interface/response/Main";
import DialogHeader from "@/components/DialogHeader.vue";
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.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();
2024-10-25 15:09:06 +07:00
const stroe = useRetirementDataStore();
const { statusText } = stroe;
2023-09-22 11:48:24 +07:00
const selected = ref<ResponseItems[]>([]);
const mixin = useCounterMixin();
2024-10-25 15:09:06 +07:00
const { dialogConfirm, date2Thai } = mixin;
2024-09-18 15:18:57 +07:00
/** props*/
const props = defineProps({
2024-10-25 15:09:06 +07:00
modal: { type: Boolean, requreid: true },
closeModal: { type: Function, requreid: true },
fecthList: { type: Function, requreid: true },
rows: { type: Array as PropType<ResponseItems[]>, requreid: true },
filterKeyword2: { type: String, requreid: true },
mainTabs: { type: String, requreid: true },
2024-09-18 15:18:57 +07:00
});
2023-09-22 11:48:24 +07:00
//Table
2024-10-25 15:09:06 +07:00
const columns = ref<QTableProps["columns"]>([
2023-09-22 11:48:24 +07:00
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: false,
2024-10-25 15:09:06 +07:00
field: (row) => props?.rows!.indexOf(row) + 1,
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" }),
},
{
name: "fullname",
align: "left",
label: "ชื่อ-นามสกุล",
sortable: true,
2024-10-25 15:09:06 +07:00
field: (row) => `${row.prefix}${row.firstName} ${row.lastName}`,
2023-09-22 11:48:24 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
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",
},
{
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",
},
{
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",
},
{
name: "datetext",
align: "left",
2024-10-25 15:09:06 +07:00
label: "วันที่ยื่น",
2023-09-22 11:48:24 +07:00
sortable: true,
2024-10-25 15:09:06 +07:00
field: (row) => date2Thai(new Date(row.createdAt)),
2023-09-22 11:48:24 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sortOrder: "da",
},
{
2024-10-25 15:09:06 +07:00
name: "status",
2023-09-22 11:48:24 +07:00
align: "left",
label: "สถานะ",
sortable: true,
2024-10-25 15:09:06 +07:00
field: (row) => statusText(row.status),
2023-09-22 11:48:24 +07:00
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
2024-10-25 15:09:06 +07:00
const visibleColumns = ref<string[]>([
2023-09-22 11:48:24 +07:00
"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",
2024-10-25 15:09:06 +07:00
"status",
2023-09-22 11:48:24 +07:00
]);
const modalCommand = ref<boolean>(false);
2024-09-18 15:18:57 +07:00
/** popup ยืนยันส่งัว */
function saveOrder() {
2023-09-22 11:48:24 +07:00
dialogConfirm(
$q,
() => {
props.closeModal?.();
modalCommand.value = true;
},
2023-09-22 11:48:24 +07:00
"ยืนยันส่งไปออกคำสั่ง",
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
);
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
2024-10-25 15:09:06 +07:00
v-model="visibleColumns"
2023-09-22 11:48:24 +07:00
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
2024-10-25 15:09:06 +07:00
:options="columns"
2023-09-22 11:48:24 +07:00
option-value="name"
options-cover
style="min-width: 150px"
class="gt-xs q-ml-sm"
/>
</q-toolbar>
</div>
</div>
<d-table
2024-10-25 15:09:06 +07:00
:columns="columns"
:rows="rows"
2023-09-22 11:48:24 +07:00
:filter="filterKeyword2"
row-key="id"
2024-10-25 15:09:06 +07:00
:visible-columns="visibleColumns"
2023-09-22 11:48:24 +07:00
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
:class="
col.name === 'organizationPositionOld' ||
col.name === 'organization'
2024-10-25 15:09:06 +07:00
? 'table_ellipsis2'
2024-05-24 17:50:43 +07:00
: ''
"
>
2024-10-25 15:09:06 +07:00
{{ 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"
2024-10-25 15:09:06 +07:00
:disable="selected.length === 0"
2023-09-22 11:48:24 +07:00
color="public"
/>
</q-card-actions>
</q-card>
</q-dialog>
<DialogCreateCommand
v-model:modal="modalCommand"
2024-10-25 15:09:06 +07:00
:command-type-code="props.mainTabs === '1' ? 'C-PM-17' : 'C-PM-41'"
:persons="selected"
/>
2023-09-22 11:48:24 +07:00
</template>