302 lines
8.3 KiB
Vue
302 lines
8.3 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, watch } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
/** impportType*/
|
|
import type { QTableProps } from "quasar";
|
|
import type { officerType } from "@/modules/05_placement/interface/response/officer";
|
|
|
|
/** importComponents*/
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
|
|
|
const $q = useQuasar();
|
|
const { statusText } = useTransferDataStore();
|
|
const mixin = useCounterMixin();
|
|
const { dialogConfirm, date2Thai, onSearchDataTable } = mixin;
|
|
|
|
/** props*/
|
|
const props = defineProps({
|
|
Modal: Boolean,
|
|
closeModal: Function,
|
|
getData: Function,
|
|
});
|
|
|
|
const rows = defineModel<any[]>("rows", { required: true });
|
|
const rowsData = defineModel<any[]>("rowsData", { required: true });
|
|
const filterKeyword2 = defineModel<string>("filterKeyword2", {
|
|
required: true,
|
|
});
|
|
|
|
//table
|
|
const selected = ref<officerType[]>([]);
|
|
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.posTypeNameOld,
|
|
posLevel: i.posLevelNameOld,
|
|
}));
|
|
});
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: false,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "name",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
sortable: true,
|
|
field: "naem",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
|
},
|
|
},
|
|
{
|
|
name: "positionNumberOld",
|
|
align: "left",
|
|
label: "เลขที่ตำแหน่ง",
|
|
sortable: true,
|
|
field: "positionNumberOld",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format(val, row) {
|
|
return row.positionNumberOld;
|
|
},
|
|
},
|
|
{
|
|
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",
|
|
format(val, row) {
|
|
return row.organizationPositionOld.replace(/\n/g, " ");
|
|
},
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "organization",
|
|
align: "left",
|
|
label: "หน่วยงานที่ให้ช่วยราชการ",
|
|
sortable: true,
|
|
field: "organization",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
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 visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"name",
|
|
"positionNumberOld",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"organization",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
|
|
const modalCommand = ref<boolean>(false); //สร้าง/เลือกคำสั่ง
|
|
|
|
/** chech การเลือกรายชื่อส่งตัวกลับ*/
|
|
const checkSelected = computed(() => {
|
|
if (selected.value.length === 0) {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
/** ยืนยันการส่งออกคำสั่งส่งตัวกลับ*/
|
|
function saveOrder() {
|
|
dialogConfirm(
|
|
$q,
|
|
async () => {
|
|
props.closeModal?.();
|
|
modalCommand.value = true;
|
|
},
|
|
"ยืนยันส่งไปออกคำสั่ง",
|
|
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
|
|
);
|
|
}
|
|
|
|
function onSearch() {
|
|
rows.value = onSearchDataTable(
|
|
filterKeyword2.value,
|
|
rowsData.value,
|
|
columns2.value ? columns2.value : []
|
|
);
|
|
}
|
|
|
|
watch(
|
|
() => props.Modal,
|
|
() => {
|
|
if (props.Modal === true) {
|
|
selected.value = [];
|
|
}
|
|
}
|
|
);
|
|
</script>
|
|
<template>
|
|
<q-dialog v-model="props.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="filterKeyword2"
|
|
placeholder="ค้นหา"
|
|
@keydown.enter.prevent="onSearch"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
</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"
|
|
style="min-width: 140px"
|
|
class="gt-xs q-ml-sm"
|
|
/>
|
|
</div>
|
|
<div class="col-12">
|
|
<d-table
|
|
:columns="columns2"
|
|
:rows="rows"
|
|
row-key="id"
|
|
class="custom-header-table"
|
|
: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 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 ?? "-" }}
|
|
</div>
|
|
|
|
<div v-else>
|
|
{{ !col.value ? "-" : col.value }}
|
|
</div>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</q-card-section>
|
|
<q-separator />
|
|
<q-card-actions align="right">
|
|
<q-btn
|
|
label="ส่งไปออกคำสั่ง"
|
|
@click="saveOrder"
|
|
:disable="checkSelected"
|
|
color="public"
|
|
>
|
|
<q-tooltip>ส่งไปออกคำสั่ง</q-tooltip></q-btn
|
|
>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
|
|
<DialogCreateCommand
|
|
v-model:modal="modalCommand"
|
|
:command-type-code="'C-PM-16'"
|
|
:persons="dataMapToSend"
|
|
:fetch-data="props.getData"
|
|
/>
|
|
</template>
|