hrms-mgt/src/modules/11_discipline/components/4_Result/DialogSendToCommand.vue

322 lines
9.1 KiB
Vue
Raw Normal View History

2023-11-24 16:52:10 +07:00
<script setup lang="ts">
import { ref, computed, watchEffect, watch } from "vue";
2023-11-24 16:52:10 +07:00
import { useQuasar } from "quasar";
import { useCounterMixin } from "@/stores/mixin";
import type { ResponseData } from "@/modules/05_placement/interface/response/Transfer";
import type { OpType } from "@/modules/05_placement/interface/response/Main";
2023-12-25 16:31:24 +07:00
import type { DataListRow } from "@/modules/11_discipline/interface/request/result";
import { useRoute } from "vue-router";
2023-11-24 16:52:10 +07:00
import DialogHeader from "@/components/DialogHeader.vue";
import http from "@/plugins/http";
import config from "@/app.config";
2023-12-20 17:04:32 +07:00
const route = useRoute();
2023-11-24 16:52:10 +07:00
2023-12-25 16:31:24 +07:00
const optionsType = ref<[]>([]);
2023-12-20 17:04:32 +07:00
const idPath = ref<string>(route.params.id as string);
2023-12-06 14:46:29 +07:00
const type = ref<string>("");
const rows = ref<DataListRow[]>([]);
2023-11-24 16:52:10 +07:00
const $q = useQuasar();
const selected = ref<ResponseData[]>([]);
const mixin = useCounterMixin();
2023-12-04 14:46:46 +07:00
const {
showLoader,
success,
messageError,
dialogConfirm,
hideLoader,
dialogMessageNotify,
} = mixin;
const props = defineProps({
data: {
type: Object,
require: true,
default: [],
2023-11-24 16:52:10 +07:00
},
columns: {
type: Array,
default: [],
2023-11-24 16:52:10 +07:00
},
visibleColumns: {
type: Array,
default: [],
2023-11-24 16:52:10 +07:00
},
Modal: Boolean,
closeModal: Function,
getData: Function,
rows2: Array,
filterKeyword2: String,
2023-12-15 17:29:47 +07:00
title: String,
});
2023-11-24 16:52:10 +07:00
const checkSelected = computed(() => {
if (selected.value.length === 0) {
return true;
}
});
//popup ยืนยันส่งัว
function saveOrder(){
2023-12-06 14:46:29 +07:00
if (type.value) {
dialogConfirm(
$q,
() => Ordersave(),
2023-12-15 17:29:47 +07:00
`ยืนยัน${props.title}`,
`ต้องการยืนยัน${props.title}ใช่หรือไม่?`
);
2023-12-04 14:46:46 +07:00
} else {
dialogMessageNotify($q, "กรุณาเลือกประเภทคำสั่ง");
}
};
2023-11-24 16:52:10 +07:00
//ส่งไปออกคำสั่ง
async function Ordersave() {
2023-12-20 17:04:32 +07:00
const persons = selected.value.map((r) => r.id);
// if (props.title == "ส่งไปออกคำสั่งลงโทษทางวินัย") {
const body = {
persons,
};
showLoader();
await http
.put(config.API.reportresult(idPath.value, type.value as string), body)
.then((res: any) => {
success($q, `${props.title}สำเร็จ`);
props.closeModal?.();
})
.catch((e) => {
messageError($q, e);
})
.finally(async () => {
props.getData?.();
hideLoader();
});
// } else if (props.title == "ส่งไปออกคำสั่งงดโทษ/เพิ่มโทษ") {
// const body = {
// persons,
// };
// showLoader();
// await http
// .put(config.API.discardResult(idPath.value, type.value as string), body)
// .then((res: any) => {
// success($q, `${props.title}สำเร็จ`);
// props.closeModal?.();
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(async () => {
// props.getData?.();
// hideLoader();
// });
// }
}
2023-11-24 16:52:10 +07:00
const emit = defineEmits([
"update:filterKeyword2",
"update:selected",
"update:type",
2023-11-24 16:52:10 +07:00
]);
2023-12-25 16:31:24 +07:00
2023-11-24 16:52:10 +07:00
const updateInput = (value: any) => {
emit("update:filterKeyword2", value);
};
2023-12-25 16:31:24 +07:00
2023-11-24 16:52:10 +07:00
//รีเซ็ตค่าในช่องค้นหา
function Reset() {
emit("update:filterKeyword2", "");
}
//----(ดึงข้อมูลประเภทคำสั่ง)------//
async function fecthTypeOption() {
showLoader();
await http
.get(config.API.typeOrder())
.then((res) => {
2023-12-27 11:08:35 +07:00
// if (props.title == "ส่งไปออกคำสั่ง") {
optionsType.value = res.data.result.filter(
(e: OpType) =>
e.commandCode === "C-PM-19" ||
e.commandCode === "C-PM-20" ||
e.commandCode === "C-PM-27" ||
e.commandCode === "C-PM-28" ||
e.commandCode === "C-PM-29" ||
e.commandCode === "C-PM-30" ||
e.commandCode === "C-PM-31"
);
// }
2023-12-27 11:08:35 +07:00
// else {
// optionsType.value = res.data.result.filter(
// (e: OpType) =>
// e.commandCode === "C-PM-30" || e.commandCode === "C-PM-31"
// );
// }
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
}
2023-11-24 16:52:10 +07:00
watchEffect(() => {
if (props.Modal === true) {
selected.value = [];
type.value = "";
rows.value = props.data.persons.filter(
(item: any) => item.status === "NEW"
);
2023-12-27 11:08:35 +07:00
// if (props.title == "ส่งไปออกคำสั่งลงโทษทางวินัย") {
// rows.value = props.data.persons.filter(
// (item: any) => item.status !== "REPORT"
// );
// } else if (props.title == "ส่งไปออกคำสั่งงดโทษ/เพิ่มโทษ") {
// rows.value = props.data.persons.filter(
// (item: any) => item.status == "REPORT" && item.statusDiscard == "NEW"
// );
// }
2023-11-24 16:52:10 +07:00
}
});
watch(
() => props.title,
() => {
fecthTypeOption();
}
);
2023-11-24 16:52:10 +07:00
</script>
2023-11-24 16:52:10 +07:00
<template>
2024-01-22 10:33:57 +07:00
<q-dialog v-model="props.Modal" persistent>
2023-11-24 16:52:10 +07:00
<q-card style="width: 1200px; max-width: 80vw">
2023-12-15 17:29:47 +07:00
<DialogHeader :tittle="props.title" :close="closeModal" />
2023-11-24 16:52:10 +07:00
<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
2023-12-06 14:46:29 +07:00
v-model="type"
:options="optionsType"
label="ประเภทคำสั่ง"
style="width: 400px; max-width: auto"
emit-value
map-options
option-label="name"
option-value="id"
use-input
><template v-slot:no-option>
<q-item>
<q-item-section class="text-grey">
ไมอม
</q-item-section>
</q-item>
</template>
</q-select>
</q-toolbar>
</div>
2023-11-24 16:52:10 +07:00
<div class="col-5">
<q-toolbar style="padding: 0">
<q-input
borderless
outlined
dense
debounce="300"
:model-value="filterKeyword2"
2023-11-24 16:52:10 +07:00
@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="props.visibleColumns"
2023-11-24 16:52:10 +07:00
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
:options="props.columns"
2023-11-24 16:52:10 +07:00
option-value="name"
options-cover
style="min-width: 150px"
class="gt-xs q-ml-sm"
/>
</q-toolbar>
</div>
</div>
<d-table
:columns="props.columns"
2023-12-04 14:46:46 +07:00
:rows="rows"
2023-11-24 16:52:10 +07:00
:filter="filterKeyword2"
row-key="id"
:visible-columns="props.visibleColumns"
2023-11-24 16:52:10 +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>
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}
2023-11-24 16:52:10 +07:00
</div>
<div
v-else-if="col.name === 'organization'"
class="table_ellipsis"
>
2023-11-24 16:52:10 +07:00
{{ props.row.organization }}
</div>
<div v-else-if="col.name === 'salary'">
{{ props.row.salary.toLocaleString() }}
</div>
<div v-else>
{{ col.value }}
</div>
2023-11-24 16:52:10 +07:00
</q-td>
</q-tr>
</template>
</d-table>
</q-card-section>
<q-card-actions align="right" class="bg-white text-teal">
<q-btn
2023-12-15 17:29:47 +07:00
:label="props.title"
2023-11-24 16:52:10 +07:00
@click="saveOrder"
:disable="checkSelected"
color="public"
/>
</q-card-actions>
</q-card>
</q-dialog>
</template>