249 lines
8.6 KiB
Vue
249 lines
8.6 KiB
Vue
<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 { ResponseRow } from "@/modules/05_placement/interface/response/Receive";
|
|
import DialogHeader from "@/modules/05_placement/components/PersonalList/DialogHeader.vue";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
|
|
const $q = useQuasar();
|
|
const selected = ref<ResponseRow[]>([]);
|
|
const mixin = useCounterMixin();
|
|
const { showLoader, success, messageError, dialogConfirm, hideLoader } = mixin;
|
|
|
|
//ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"fullname",
|
|
"organizationName",
|
|
"birthday",
|
|
"dateText",
|
|
"statusText",
|
|
]);
|
|
//หัวตาราง
|
|
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: "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" }),
|
|
},
|
|
{
|
|
name: "birthday",
|
|
align: "left",
|
|
label: "วัน/เดือน/ปี เกิด",
|
|
sortable: true,
|
|
field: "birthday",
|
|
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" }),
|
|
},
|
|
]);
|
|
|
|
const props = defineProps({
|
|
Modal: Boolean,
|
|
clickClose: Function,
|
|
fecthlistRecevice: Function,
|
|
nextPage: Function,
|
|
rows2: Array,
|
|
filterKeyword2: String,
|
|
});
|
|
|
|
const checkSelected = computed(() => {
|
|
if (selected.value.length === 0) {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
//popup ยืนยันส่งัว
|
|
const saveOrder = () => {
|
|
dialogConfirm(
|
|
$q,
|
|
() => Ordersave(),
|
|
"ยืนยันส่งไปออกคำสั่ง",
|
|
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
);
|
|
};
|
|
//ส่งไปออกคำสั่ง
|
|
const Ordersave = async () => {
|
|
const id = selected.value.map((r: ResponseRow) => r.personalId);
|
|
const body = {
|
|
id,
|
|
};
|
|
showLoader();
|
|
await http
|
|
.post(config.API.receiveReport, body)
|
|
.then((res: any) => {
|
|
success($q, "ส่งไปออกคำสั่งรับโอนสำเร็จ");
|
|
props.clickClose?.();
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(async () => {
|
|
props.fecthlistRecevice?.();
|
|
hideLoader();
|
|
});
|
|
};
|
|
|
|
const emit = defineEmits(["update:filterKeyword2", "update:selected"]);
|
|
const updateInput = (value: any) => {
|
|
emit("update:filterKeyword2", value);
|
|
};
|
|
//รีเซ็ตค่าในช่องค้นหา
|
|
const Reset = () => {
|
|
emit("update:filterKeyword2", "");
|
|
};
|
|
watchEffect(() => {
|
|
if (props.Modal === true) {
|
|
selected.value = [];
|
|
}
|
|
});
|
|
</script>
|
|
<template>
|
|
<q-dialog v-model="props.Modal">
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
<DialogHeader title="ส่งไปออกคำสั่งรับโอน" :close="clickClose" />
|
|
<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="personalId" flat :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>
|
|
<q-td key="no" :props="props">
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td key="citizenId" :props="props" @click="props.nextPage(props.row)" >
|
|
{{ props.row.citizenId }}
|
|
</q-td>
|
|
<q-td key="fullname" :props="props" @click="props.nextPage(props.row)" >
|
|
{{ props.row.fullname }}
|
|
</q-td>
|
|
<q-td key="organizationName" :props="props" @click="props.nextPage(props.row)" >
|
|
<div v-if=" props.row.orgName !== null || props.row.positionPath !== null " >
|
|
<div class="col-4">
|
|
<div class="text-weight-medium">
|
|
{{ props.row.orgName !== null ? props.row.orgName : "-" }}
|
|
{{ props.row.organizationShortName !== null ? `(${props.row.organizationShortName})` : "" }}
|
|
</div>
|
|
<div class="text-weight-light">
|
|
{{ props.row.positionPath !== null ? props.row.positionPath : "-" }}
|
|
{{ props.row.positionNumber !== null ? `(${props.row.positionNumber})` : "" }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<div class="col-4">
|
|
<div class="text-weight-medium">-</div>
|
|
</div>
|
|
</div>
|
|
</q-td>
|
|
<q-td key="birthday" :props="props" @click="props.nextPage(props.row)" >
|
|
{{ props.row.birthday }}
|
|
</q-td>
|
|
<q-td key="dateText" :props="props" @click="props.nextPage(props.row)" >
|
|
{{ props.row.dateText }}
|
|
</q-td>
|
|
<q-td key="statusText" :props="props" @click="props.nextPage(props.row)" >
|
|
{{ props.row.statusText }}
|
|
</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>
|