301 lines
8.2 KiB
Vue
301 lines
8.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, watchEffect } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
import type { QTableProps } from "quasar";
|
|
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
import type { ResponseItems } from "@/modules/06_retirement/interface/response/Main";
|
|
import type { ResponseData } from "@/modules/06_retirement/interface/response/out";
|
|
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
|
|
/** props*/
|
|
const props = defineProps({
|
|
closeModal: Function,
|
|
fecthlistRecevice: Function,
|
|
});
|
|
|
|
const modal = defineModel<boolean>("modal", { required: true });
|
|
const rows = defineModel<ResponseData[]>("rows", { required: true });
|
|
const rowsData = defineModel<ResponseData[]>("rowsData", { required: true });
|
|
const filterKeyword = defineModel<string>("filterKeyword2", { required: true });
|
|
|
|
/** use */
|
|
const $q = useQuasar();
|
|
const { statusText } = useTransferDataStore();
|
|
const selected = ref<ResponseItems[]>([]);
|
|
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,
|
|
position: i.positionOld,
|
|
posType: i.positionTypeOld,
|
|
posLevel: i.positionLevelOld,
|
|
}));
|
|
});
|
|
const mixin = useCounterMixin();
|
|
const {
|
|
showLoader,
|
|
success,
|
|
messageError,
|
|
dialogConfirm,
|
|
hideLoader,
|
|
date2Thai,
|
|
onSearchDataTable,
|
|
} = mixin;
|
|
|
|
/** คอลัมน์ */
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: false,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "fullname",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
sortable: true,
|
|
field: "fullname",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
|
},
|
|
},
|
|
{
|
|
name: "positionLevel",
|
|
align: "left",
|
|
label: "กลุ่มงาน",
|
|
sortable: true,
|
|
field: "positionLevel",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
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;
|
|
},
|
|
},
|
|
{
|
|
name: "organizationPositionOld",
|
|
align: "left",
|
|
label: "ตำแหน่ง/สังกัดเดิม",
|
|
sortable: true,
|
|
field: "organizationPositionOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
|
|
// กรณี copy ทั้งหมด เเล้ว ค้นหา
|
|
// format(val, row) {
|
|
// return `${row.organizationPositionOld.replace(/\n/g, " ")}`;
|
|
// },
|
|
},
|
|
{
|
|
name: "createdAt",
|
|
align: "left",
|
|
label: "วันที่ดำเนินการ",
|
|
sortable: true,
|
|
field: "createdAt",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => date2Thai(val),
|
|
},
|
|
{
|
|
name: "status",
|
|
align: "left",
|
|
label: "สถานะ",
|
|
sortable: true,
|
|
field: "status",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (val) => statusText(val),
|
|
},
|
|
]);
|
|
/** คอลัมน์ที่แสดง */
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"fullname",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
|
|
const modalCommand = ref<boolean>(false);
|
|
|
|
/**
|
|
* ฟังก์ชั่นการ Selected Data
|
|
*/
|
|
const checkSelected = computed(() => {
|
|
if (selected.value.length === 0) {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
//popup ยืนยันส่งัว
|
|
function saveOrder() {
|
|
// dialogConfirm(
|
|
// $q,
|
|
// () => {
|
|
modalCommand.value = true;
|
|
props.closeModal?.();
|
|
// },
|
|
// "ยืนยันส่งไปออกคำสั่ง",
|
|
// "ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
// );
|
|
}
|
|
|
|
const emit = defineEmits(["update:filterKeyword2", "update:selected"]);
|
|
function updateInput(value: any) {
|
|
emit("update:filterKeyword2", value);
|
|
}
|
|
|
|
//รีเซ็ตค่าในช่องค้นหา
|
|
function Reset() {
|
|
emit("update:filterKeyword2", "");
|
|
}
|
|
|
|
function onSearch() {
|
|
rows.value = onSearchDataTable(
|
|
filterKeyword.value,
|
|
rowsData.value,
|
|
columns.value ? columns.value : []
|
|
);
|
|
}
|
|
|
|
watchEffect(() => {
|
|
if (modal.value === true) {
|
|
selected.value = [];
|
|
updateInput("");
|
|
}
|
|
});
|
|
</script>
|
|
<template>
|
|
<q-dialog v-model="modal" persistent>
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
<DialogHeader tittle="ส่งไปออกคำสั่งให้ออก" :close="closeModal" />
|
|
<q-separator />
|
|
<q-card-section>
|
|
<div class="row col-12 q-col-gutter-sm">
|
|
<div class="row col-12">
|
|
<q-space />
|
|
<q-input
|
|
borderless
|
|
outlined
|
|
dense
|
|
v-model="filterKeyword"
|
|
placeholder="ค้นหา"
|
|
@keydown.enter.prevent="onSearch"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
</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"
|
|
style="min-width: 140px"
|
|
class="gt-xs q-ml-sm"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<d-table
|
|
:columns="columns"
|
|
:rows="rows"
|
|
row-key="id"
|
|
:visible-columns="visibleColumns"
|
|
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>
|
|
<q-td v-for="col in props.cols" :key="col.id">
|
|
<div v-if="col.name === 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="col.name == 'organizationPositionOld'"
|
|
class="text-html"
|
|
>
|
|
{{
|
|
props.row.organizationPositionOld
|
|
? props.row.organizationPositionOld
|
|
: "-"
|
|
}}
|
|
</div>
|
|
<div v-else>
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</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-43'"
|
|
:persons="dataMapToSend"
|
|
/>
|
|
</template>
|