322 lines
8.6 KiB
Vue
322 lines
8.6 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, watchEffect } from "vue";
|
|
import { useQuasar } from "quasar";
|
|
import type { QTableProps } from "quasar";
|
|
import DialogHeader from "@/modules/05_placement/components/Receive/DialogHeader.vue";
|
|
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
const storeFn = useTransferDataStore();
|
|
|
|
const { statusText } = storeFn;
|
|
const mixin = useCounterMixin();
|
|
const {
|
|
showLoader,
|
|
success,
|
|
messageError,
|
|
dialogConfirm,
|
|
findOrgName,
|
|
date2Thai,
|
|
} = mixin;
|
|
|
|
const $q = useQuasar();
|
|
const selected = ref<any>([]);
|
|
const checkSelected = computed(() => {
|
|
if (selected.value.length === 0 || props.type === "") {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
const props = defineProps({
|
|
Modal: Boolean,
|
|
clickClose: Function,
|
|
resetFilter: Function,
|
|
fecthlistOthet: Function,
|
|
optionsType: Array,
|
|
rows2: Array,
|
|
filterKeyword2: String,
|
|
type: String,
|
|
});
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"fullname",
|
|
"positionLevel",
|
|
"organizationPositionOld",
|
|
"createdAt",
|
|
"status",
|
|
]);
|
|
const columns2 = 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",
|
|
},
|
|
{
|
|
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 emit = defineEmits([
|
|
"update:filterKeyword2",
|
|
"update:type",
|
|
"update:selected",
|
|
]);
|
|
const updateInput = (value: any) => {
|
|
emit("update:filterKeyword2", value);
|
|
};
|
|
|
|
const updateInputType = (value: any) => {
|
|
emit("update:type", value);
|
|
};
|
|
//รีเซ็ตค่าในช่องค้นหา
|
|
const Reset = () => {
|
|
emit("update:filterKeyword2", "");
|
|
};
|
|
//เปิด modal ยืนยัน
|
|
const clickAddlist = () => {
|
|
dialogConfirm($q, () => addOther());
|
|
};
|
|
|
|
//อัพเดต ส่งไปออกคำสั่ง
|
|
const addOther = async () => {
|
|
let pId: string[] = [];
|
|
let Type = props.type as string;
|
|
selected.value.forEach((e: any) => {
|
|
pId.push(e.profileId);
|
|
});
|
|
let data = {
|
|
id: pId,
|
|
};
|
|
showLoader();
|
|
await http
|
|
.put(config.API.otherReport(Type), data)
|
|
.then(() => {
|
|
success($q, "บันทึกสำเร็จ");
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
props.fecthlistOthet?.();
|
|
selected.value = [];
|
|
props.clickClose?.();
|
|
});
|
|
};
|
|
watchEffect(() => {
|
|
if (props.Modal === true) {
|
|
selected.value = [];
|
|
}
|
|
});
|
|
// filter OptionsType
|
|
const OptionsTypeFn = ref<any>([]);
|
|
function filterFnOptionsType(val: string, update: any) {
|
|
if (val == "") {
|
|
update(() => {
|
|
OptionsTypeFn.value = props.optionsType;
|
|
});
|
|
} else {
|
|
update(() => {
|
|
if (props.optionsType) {
|
|
OptionsTypeFn.value = props.optionsType.filter(
|
|
(e: any) => e.name.search(val) !== -1
|
|
);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<q-dialog v-model="props.Modal">
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
<DialogHeader title="ส่งไปออกคำสั่งอื่นๆ" :close="props.clickClose" />
|
|
<q-separator />
|
|
<q-card-section class="q-pt-none">
|
|
<div class="row justify-between">
|
|
<div class="col-5">
|
|
<q-toolbar style="padding: 0">
|
|
<q-select
|
|
outlined
|
|
dense
|
|
:model-value="type"
|
|
@update:model-value="updateInputType"
|
|
:options="OptionsTypeFn"
|
|
label="ประเภทคำสั่ง"
|
|
style="width: 400px; max-width: auto"
|
|
emit-value
|
|
map-options
|
|
option-label="name"
|
|
option-value="id"
|
|
use-input
|
|
@filter="filterFnOptionsType"
|
|
><template v-slot:no-option>
|
|
<q-item>
|
|
<q-item-section class="text-grey">
|
|
ไม่มีข้อมูล
|
|
</q-item-section>
|
|
</q-item>
|
|
</template>
|
|
</q-select>
|
|
</q-toolbar>
|
|
</div>
|
|
<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="props.rows2"
|
|
:filter="filterKeyword2"
|
|
row-key="profileId"
|
|
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 v-for="col in props.cols" :key="col.id">
|
|
<div v-if="col.name === 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
|
|
<div
|
|
v-else
|
|
:class="col.name === 'affiliation' ? 'table_ellipsis' : ''"
|
|
>
|
|
{{ col.value ? col.value : "-" }}
|
|
</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="clickAddlist"
|
|
:disable="checkSelected"
|
|
color="public"
|
|
/>
|
|
</q-card-actions>
|
|
</q-card>
|
|
</q-dialog>
|
|
</template>
|