Merge branch 'develop' into devTee
This commit is contained in:
commit
5d9131d5b7
13 changed files with 663 additions and 196 deletions
|
|
@ -6,6 +6,7 @@ const orgProfile = `${env.API_URI}/org/profile`;
|
||||||
const orgEmployeePos = `${env.API_URI}/org/employee/pos`;
|
const orgEmployeePos = `${env.API_URI}/org/employee/pos`;
|
||||||
const orgAct = `${env.API_URI}/org/act`;
|
const orgAct = `${env.API_URI}/org/act`;
|
||||||
const orgPosAct = `${env.API_URI}/org/pos/act`;
|
const orgPosAct = `${env.API_URI}/org/pos/act`;
|
||||||
|
const workflow = `${env.API_URI}/org/workflow`;
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
keycloakPosition: () => `${organization}/profile/keycloak/position`,
|
keycloakPosition: () => `${organization}/profile/keycloak/position`,
|
||||||
|
|
@ -134,4 +135,9 @@ export default {
|
||||||
orgPermissionsSys: `${organization}/permission`,
|
orgPermissionsSys: `${organization}/permission`,
|
||||||
|
|
||||||
checkIsOfficer: (id: string) => `${organization}/check/child1/${id}`,
|
checkIsOfficer: (id: string) => `${organization}/check/child1/${id}`,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* workflow
|
||||||
|
*/
|
||||||
|
workflow: `${workflow}/`,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,34 +1,90 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from "vue";
|
import { ref, watch } from "vue";
|
||||||
import { useQuasar } from "quasar";
|
import { useQuasar } from "quasar";
|
||||||
|
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
import http from "@/plugins/http";
|
||||||
|
import config from "@/app.config";
|
||||||
|
|
||||||
import DialogHeader from "@/components/DialogHeader.vue";
|
import DialogHeader from "@/components/DialogHeader.vue";
|
||||||
|
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const { dialogConfirm } = useCounterMixin();
|
const { dialogConfirm, showLoader, hideLoader, messageError } =
|
||||||
|
useCounterMixin();
|
||||||
|
|
||||||
const modal = defineModel<boolean>("modal", { required: true });
|
const modal = defineModel<boolean>("modal", { required: true });
|
||||||
|
const { stateId } = defineProps({
|
||||||
|
stateId: { type: String, require: true },
|
||||||
|
});
|
||||||
|
|
||||||
const isAcknowledge = ref<boolean>(false);
|
const isAcceptSetting = ref<boolean>(false);
|
||||||
const isConsider = ref<boolean>(true);
|
const isApproveSetting = ref<boolean>(false);
|
||||||
const isComment = ref<boolean>(true);
|
const isReasonSetting = ref<boolean>(false);
|
||||||
|
|
||||||
const acknowledge = ref<boolean>(false);
|
const isAccept = ref<boolean>(false);
|
||||||
const consider = ref<string>("");
|
const isApprove = ref<string>("");
|
||||||
const comment = ref<string>("");
|
const reason = ref<string>("");
|
||||||
|
|
||||||
|
async function fetchData() {
|
||||||
|
showLoader();
|
||||||
|
await http
|
||||||
|
.post(config.API.workflow + `comment-state-user`, { stateId: stateId })
|
||||||
|
.then(async (res) => {
|
||||||
|
const data = res.data.result;
|
||||||
|
isAcceptSetting.value = data.isAcceptSetting;
|
||||||
|
isApproveSetting.value = data.isApproveSetting;
|
||||||
|
isReasonSetting.value = data.isReasonSetting;
|
||||||
|
|
||||||
|
isAccept.value = data.isAccept;
|
||||||
|
isApprove.value = data.isApprove ? "approve" : "";
|
||||||
|
reason.value = data.reason;
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, () => {});
|
dialogConfirm($q, async () => {
|
||||||
|
showLoader();
|
||||||
|
await http
|
||||||
|
.post(config.API.workflow + `comment`, {
|
||||||
|
stateId: stateId,
|
||||||
|
isAccept: isAcceptSetting.value ? isAccept.value : undefined,
|
||||||
|
isApprove: isApproveSetting.value
|
||||||
|
? isApprove.value === "approve"
|
||||||
|
? true
|
||||||
|
: false
|
||||||
|
: undefined,
|
||||||
|
reason: isReasonSetting.value ? reason.value : undefined,
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
onCloseModal();
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function onCloseModal() {
|
function onCloseModal() {
|
||||||
modal.value = false;
|
modal.value = false;
|
||||||
acknowledge.value = false;
|
isAccept.value = false;
|
||||||
consider.value = "";
|
isApprove.value = "";
|
||||||
comment.value = "";
|
reason.value = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
watch(modal, (val) => {
|
||||||
|
if (val) {
|
||||||
|
fetchData();
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -43,23 +99,23 @@ function onCloseModal() {
|
||||||
|
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<div class="q-gutter-xs">
|
<div class="q-gutter-xs">
|
||||||
<div v-if="isAcknowledge">
|
<div v-if="isAcceptSetting">
|
||||||
<q-checkbox
|
<q-checkbox
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
dense
|
dense
|
||||||
v-model="acknowledge"
|
v-model="isAccept"
|
||||||
label="รับทราบ"
|
label="รับทราบ"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!isAcknowledge && isConsider">
|
<div v-if="!isAcceptSetting && isApproveSetting">
|
||||||
<div class="text-weight-bold">พิจารณา (อนุมัติ/ไม่อนุมัติ)</div>
|
<div class="text-weight-bold">พิจารณา (อนุมัติ/ไม่อนุมัติ)</div>
|
||||||
<div class="q-pa-sm q-gutter-sm">
|
<div class="q-pa-sm q-gutter-sm">
|
||||||
<q-radio
|
<q-radio
|
||||||
dense
|
dense
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
v-model="consider"
|
v-model="isApprove"
|
||||||
label="อนุมัติ"
|
label="อนุมัติ"
|
||||||
val="approve"
|
val="approve"
|
||||||
/>
|
/>
|
||||||
|
|
@ -67,14 +123,14 @@ function onCloseModal() {
|
||||||
dense
|
dense
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
v-model="consider"
|
v-model="isApprove"
|
||||||
label="ไม่อนุมัติ"
|
label="ไม่อนุมัติ"
|
||||||
val="reject"
|
val="reject"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="!isAcknowledge && isComment">
|
<div v-if="!isAcceptSetting && isReasonSetting">
|
||||||
<div class="text-weight-bold">แสดงความเห็นในเอกสาร</div>
|
<div class="text-weight-bold">แสดงความเห็นในเอกสาร</div>
|
||||||
<div class="q-pa-sm q-gutter-sm">
|
<div class="q-pa-sm q-gutter-sm">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
|
|
@ -82,7 +138,7 @@ function onCloseModal() {
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
label="ความเห็น"
|
label="ความเห็น"
|
||||||
v-model="comment"
|
v-model="reason"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
lazy-rules
|
lazy-rules
|
||||||
:rules="[
|
:rules="[
|
||||||
|
|
@ -103,7 +159,7 @@ function onCloseModal() {
|
||||||
label="บันทึก"
|
label="บันทึก"
|
||||||
color="public"
|
color="public"
|
||||||
type="submit"
|
type="submit"
|
||||||
:disable="!isAcknowledge && !isConsider && !isComment"
|
:disable="!isAcceptSetting && !isApproveSetting && !isReasonSetting"
|
||||||
>
|
>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
</q-card-actions>
|
</q-card-actions>
|
||||||
|
|
|
||||||
|
|
@ -3,26 +3,26 @@ import { ref, watch } from "vue";
|
||||||
import { useQuasar } from "quasar";
|
import { useQuasar } from "quasar";
|
||||||
|
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
import http from "@/plugins/http";
|
||||||
|
import config from "@/app.config";
|
||||||
|
|
||||||
import type { QTableProps } from "quasar";
|
import type { QTableProps } from "quasar";
|
||||||
|
|
||||||
import DialogHeader from "@/components/DialogHeader.vue";
|
import DialogHeader from "@/components/DialogHeader.vue";
|
||||||
|
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const { dialogConfirm } = useCounterMixin();
|
const { dialogConfirm, showLoader, hideLoader, messageError } =
|
||||||
|
useCounterMixin();
|
||||||
|
|
||||||
const modal = defineModel<boolean>("modal", { required: true });
|
const modal = defineModel<boolean>("modal", { required: true });
|
||||||
|
const { stateId, fetchData } = defineProps({
|
||||||
|
stateId: { type: String, require: true },
|
||||||
|
fetchData: { type: Function, require: true },
|
||||||
|
});
|
||||||
|
|
||||||
/** table*/
|
/** table*/
|
||||||
const selected = ref<any[]>([]);
|
const selected = ref<any[]>([]);
|
||||||
const rows = ref<any[]>([
|
const rows = ref<any[]>([]);
|
||||||
{
|
|
||||||
fullName: "นายศรัณย์ ศิลาดี",
|
|
||||||
position: "นักบริหาร",
|
|
||||||
posType: "บริหาร(สูง)",
|
|
||||||
organization: "",
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
const columns = ref<QTableProps["columns"]>([
|
const columns = ref<QTableProps["columns"]>([
|
||||||
{
|
{
|
||||||
name: "fullName",
|
name: "fullName",
|
||||||
|
|
@ -30,6 +30,9 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
label: "ชื่อ-นามสกุล",
|
label: "ชื่อ-นามสกุล",
|
||||||
sortable: true,
|
sortable: true,
|
||||||
field: "fullName",
|
field: "fullName",
|
||||||
|
format(val, row) {
|
||||||
|
return `${row.prefix}${row.firstName} ${row.lastName}`;
|
||||||
|
},
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px",
|
style: "font-size: 14px",
|
||||||
},
|
},
|
||||||
|
|
@ -42,15 +45,15 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px",
|
style: "font-size: 14px",
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
name: "posType",
|
// name: "posType",
|
||||||
align: "left",
|
// align: "left",
|
||||||
label: "ประเภทตำแหน่ง",
|
// label: "ประเภทตำแหน่ง",
|
||||||
sortable: true,
|
// sortable: true,
|
||||||
field: "posType",
|
// field: "posType",
|
||||||
headerStyle: "font-size: 14px",
|
// headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px",
|
// style: "font-size: 14px",
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
name: "organization",
|
name: "organization",
|
||||||
align: "left",
|
align: "left",
|
||||||
|
|
@ -62,14 +65,47 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const isAcknowledge = ref<boolean>(false);
|
const isAcceptSetting = ref<boolean>(false);
|
||||||
const isConsider = ref<boolean>(false);
|
const isApproveSetting = ref<boolean>(false);
|
||||||
const isComment = ref<boolean>(false);
|
const isReasonSetting = ref<boolean>(false);
|
||||||
|
|
||||||
function fetchLists() {}
|
async function fetchLists() {
|
||||||
|
showLoader();
|
||||||
|
await http
|
||||||
|
.get(config.API.workflow + `commander`)
|
||||||
|
.then(async (res) => {
|
||||||
|
rows.value = res.data.result;
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, () => {});
|
dialogConfirm($q, async () => {
|
||||||
|
showLoader();
|
||||||
|
await http
|
||||||
|
.post(config.API.workflow + `add-step`, {
|
||||||
|
stateId: stateId,
|
||||||
|
profileId: selected.value[0].id,
|
||||||
|
isAcceptSetting: isAcceptSetting.value,
|
||||||
|
isApproveSetting: isApproveSetting.value,
|
||||||
|
isReasonSetting: isReasonSetting.value,
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
await fetchData?.();
|
||||||
|
onCloseModal();
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function onCloseModal() {
|
function onCloseModal() {
|
||||||
|
|
@ -146,26 +182,28 @@ watch(modal, (val) => {
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
dense
|
dense
|
||||||
v-model="isAcknowledge"
|
v-model="isAcceptSetting"
|
||||||
label="ให้เลือกรับทราบ"
|
label="ให้เลือกรับทราบ"
|
||||||
@update:model-value="(isConsider = false), (isComment = false)"
|
@update:model-value="
|
||||||
|
(isApproveSetting = false), (isReasonSetting = false)
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!isAcknowledge">
|
<div v-if="!isAcceptSetting">
|
||||||
<q-checkbox
|
<q-checkbox
|
||||||
dense
|
dense
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
v-model="isConsider"
|
v-model="isApproveSetting"
|
||||||
label="ให้เลือกพิจารณา (อนุมัติ/ไม่อนุมัติ)"
|
label="ให้เลือกพิจารณา (อนุมัติ/ไม่อนุมัติ)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!isAcknowledge">
|
<div v-if="!isAcceptSetting">
|
||||||
<q-checkbox
|
<q-checkbox
|
||||||
dense
|
dense
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
v-model="isComment"
|
v-model="isReasonSetting"
|
||||||
label="ให้แสดงความเห็นในเอกสาร"
|
label="ให้แสดงความเห็นในเอกสาร"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -181,7 +219,7 @@ watch(modal, (val) => {
|
||||||
type="submit"
|
type="submit"
|
||||||
:disable="
|
:disable="
|
||||||
selected.length === 0 ||
|
selected.length === 0 ||
|
||||||
(!isAcknowledge && !isConsider && !isComment)
|
(!isAcceptSetting && !isApproveSetting && !isReasonSetting)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
|
|
|
||||||
|
|
@ -3,79 +3,112 @@ import { onMounted, ref } from "vue";
|
||||||
import { useQuasar } from "quasar";
|
import { useQuasar } from "quasar";
|
||||||
|
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
import http from "@/plugins/http";
|
||||||
|
import config from "@/app.config";
|
||||||
|
|
||||||
|
import type { Permission } from "@/interface/index/workflow/Main";
|
||||||
|
import type { DataListState } from "@/interface/response/workflow/Main";
|
||||||
|
|
||||||
import DialogSelectPerson from "@/components/Workflow/DialogSelectPerson.vue";
|
import DialogSelectPerson from "@/components/Workflow/DialogSelectPerson.vue";
|
||||||
import DialogApprove from "@/components/Workflow/DialogApprove.vue";
|
import DialogApprove from "@/components/Workflow/DialogApprove.vue";
|
||||||
|
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const { dialogConfirm } = useCounterMixin();
|
const { dialogConfirm, showLoader, hideLoader, messageError } =
|
||||||
|
useCounterMixin();
|
||||||
|
|
||||||
const { id, sysName } = defineProps({
|
const { id, sysName } = defineProps({
|
||||||
id: { type: String, require: true },
|
id: { type: String, require: true },
|
||||||
sysName: { type: String, require: true },
|
sysName: { type: String, require: true },
|
||||||
});
|
});
|
||||||
|
|
||||||
const state = ref<number>(1);
|
const stateId = ref<string>(""); //id state ปัจุบัน
|
||||||
const isChangeState = ref<boolean>(false);
|
const state = ref<number>(1); //state ปัจุบัน
|
||||||
const isOperate = ref<boolean>(false);
|
|
||||||
|
const isPermission = ref<boolean>(true); //การเข้าถึง Workflow
|
||||||
|
const permission = ref<Permission>({
|
||||||
|
isChangeState: false, //ส่งไปยังผู้บังคับบัญชา/ผู้มีอำนาจ
|
||||||
|
isOperate: false, //เปลี่ยนสถานะ (state) เอกสารได้
|
||||||
|
isView: false, //ดูเอกสารได้
|
||||||
|
isUpdate: false, //แก้ไขเอกสารได้
|
||||||
|
isDelete: false, //ลบเอกสารได้ (ถ้ามี)
|
||||||
|
isCancel: false, //ลบเอกสารได้ (ถ้ามี)
|
||||||
|
});
|
||||||
|
const itemState = ref<DataListState[]>([]);
|
||||||
|
|
||||||
const rowsOperate = ref<any[]>([
|
|
||||||
{
|
|
||||||
fullName: "ชื่อนาม - สกุล",
|
|
||||||
comment: "ความเห็น",
|
|
||||||
position: " บริหาร - ต้น ",
|
|
||||||
status: "อนุมัติ",
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
const modalSelectPerson = ref<boolean>(false);
|
const modalSelectPerson = ref<boolean>(false);
|
||||||
const modalApprove = ref<boolean>(false);
|
const modalApprove = ref<boolean>(false);
|
||||||
|
|
||||||
const itemState = ref<any[]>([
|
async function fetchCheckState() {
|
||||||
{
|
await http
|
||||||
stateNo: 1,
|
.post(config.API.workflow + `check-user-now`, {
|
||||||
stateName: "Darft",
|
refId: id,
|
||||||
},
|
system: sysName,
|
||||||
{
|
})
|
||||||
stateNo: 2,
|
.then(async (res) => {
|
||||||
stateName: "Operate",
|
await fetchData();
|
||||||
},
|
const data = await res.data.result;
|
||||||
{
|
stateId.value = data.stateId;
|
||||||
stateNo: 3,
|
state.value = data.stateNo === 4 ? 5 : data.stateNo;
|
||||||
stateName: "Finish",
|
permission.value = {
|
||||||
},
|
isChangeState: data.can_change_state,
|
||||||
]);
|
isOperate: data.can_operate,
|
||||||
|
isView: data.can_view,
|
||||||
function fetchData() {
|
isUpdate: data.can_update,
|
||||||
console.log(id, sysName);
|
isDelete: data.can_delete,
|
||||||
const data = {
|
isCancel: data.can_cancel,
|
||||||
stateNo: 1,
|
};
|
||||||
step: 1,
|
})
|
||||||
can_view: true,
|
.catch(() => {
|
||||||
can_update: true,
|
isPermission.value = false;
|
||||||
can_operate: true,
|
});
|
||||||
can_change_state: true,
|
|
||||||
can_delete: false,
|
|
||||||
can_cancel: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
state.value = data.stateNo;
|
|
||||||
isChangeState.value = data.can_change_state;
|
|
||||||
isOperate.value = data.can_operate;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onConfirmDraft() {
|
async function fetchData() {
|
||||||
dialogConfirm($q, () => {
|
await http
|
||||||
state.value++;
|
.post(config.API.workflow + `check-state-all`, {
|
||||||
|
refId: id,
|
||||||
|
system: sysName,
|
||||||
|
})
|
||||||
|
.then(async (res) => {
|
||||||
|
const data = await res.data.result;
|
||||||
|
itemState.value = data;
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function onChangeState() {
|
||||||
|
dialogConfirm($q, async () => {
|
||||||
|
showLoader();
|
||||||
|
await http
|
||||||
|
.post(config.API.workflow + `state-next`, {
|
||||||
|
refId: id,
|
||||||
|
system: sysName,
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
await fetchCheckState();
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
messageError($q, err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
hideLoader();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(async () => {
|
||||||
fetchData();
|
await fetchCheckState();
|
||||||
|
});
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
permission,
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<q-card bordered class="row col-12">
|
<q-card bordered class="row col-12" v-if="isPermission">
|
||||||
<div class="bg-grey-1 q-pa-sm col-12 row items-center">
|
<div class="bg-grey-1 q-pa-sm col-12 row items-center">
|
||||||
<div class="q-pl-sm text-weight-bold text-dark">Workflow</div>
|
<div class="q-pl-sm text-weight-bold text-dark">Workflow</div>
|
||||||
<q-space />
|
<q-space />
|
||||||
|
|
@ -103,14 +136,11 @@ onMounted(() => {
|
||||||
:color="state < index + 1 ? 'grey-4' : ''"
|
:color="state < index + 1 ? 'grey-4' : ''"
|
||||||
>
|
>
|
||||||
<!-- Darft -->
|
<!-- Darft -->
|
||||||
<div
|
<div class="row q-col-gutter-sm" v-if="state === 1 && index === 0">
|
||||||
class="row q-col-gutter-sm"
|
|
||||||
v-if="step.stateName === 'Darft' && state === 1"
|
|
||||||
>
|
|
||||||
<div>
|
<div>
|
||||||
<q-btn
|
<q-btn
|
||||||
v-if="isChangeState"
|
v-if="permission.isChangeState"
|
||||||
@click.prevent="onConfirmDraft"
|
@click.prevent="onChangeState"
|
||||||
label="Next Step"
|
label="Next Step"
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
|
|
@ -120,31 +150,44 @@ onMounted(() => {
|
||||||
<!-- Operate -->
|
<!-- Operate -->
|
||||||
<div
|
<div
|
||||||
class="q-col-gutter-sm"
|
class="q-col-gutter-sm"
|
||||||
v-if="step.stateName === 'Operate' && state > 1"
|
v-if="index > 0 && index < itemState.length - 1 && state > index"
|
||||||
>
|
>
|
||||||
<div>
|
<div v-if="step.stateUserComments.length !== 0">
|
||||||
<q-list bordered separator style="min-width: 20vw">
|
<q-list bordered separator style="min-width: 20vw">
|
||||||
<q-item v-for="(item, index) in rowsOperate" :key="index">
|
<q-item
|
||||||
|
v-for="(item, index) in step.stateUserComments"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label
|
<q-item-label>
|
||||||
>{{ item.fullName }}
|
{{ `${item.prefix}${item.firstName} ${item.lastName}` }}
|
||||||
{{ `(${item.position})` }}</q-item-label
|
<!-- {{ `(${item.position})` }} -->
|
||||||
>
|
</q-item-label>
|
||||||
<q-item-label caption lines="2">{{
|
<q-item-label caption lines="2">{{
|
||||||
item.comment
|
item.isReasonSetting ? item.reason : ""
|
||||||
}}</q-item-label>
|
}}</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
|
||||||
<q-item-section side top>
|
<q-item-section side top>
|
||||||
<q-item-label class="text-green">
|
<q-item-label class="text-green">
|
||||||
{{ item.status }}</q-item-label
|
{{
|
||||||
|
item.isAcceptSetting
|
||||||
|
? item.isAccept
|
||||||
|
? "รับทราบ"
|
||||||
|
: ""
|
||||||
|
: item.isApproveSetting
|
||||||
|
? item.isApprove
|
||||||
|
? "อนุมันติ"
|
||||||
|
: ""
|
||||||
|
: ""
|
||||||
|
}}</q-item-label
|
||||||
>
|
>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
</q-list>
|
</q-list>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="isOperate && state === 2">
|
<div v-if="permission.isOperate && state === index + 1">
|
||||||
<q-btn
|
<q-btn
|
||||||
@click.prevent="modalSelectPerson = true"
|
@click.prevent="modalSelectPerson = true"
|
||||||
label="ส่งไปผู้บังคับบัญชา/ผู้มีอำนาจ"
|
label="ส่งไปผู้บังคับบัญชา/ผู้มีอำนาจ"
|
||||||
|
|
@ -152,9 +195,9 @@ onMounted(() => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="isChangeState && state === 2">
|
<div v-if="permission.isChangeState && state === index + 1">
|
||||||
<q-btn
|
<q-btn
|
||||||
@click.prevent="onConfirmDraft"
|
@click.prevent="onChangeState"
|
||||||
label="Next Step"
|
label="Next Step"
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
|
|
@ -166,7 +209,11 @@ onMounted(() => {
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
||||||
<DialogSelectPerson v-model:modal="modalSelectPerson" />
|
<DialogSelectPerson
|
||||||
|
v-model:modal="modalSelectPerson"
|
||||||
|
:state-id="stateId"
|
||||||
|
:fetch-data="fetchCheckState"
|
||||||
|
/>
|
||||||
|
|
||||||
<DialogApprove v-model:modal="modalApprove" />
|
<DialogApprove v-model:modal="modalApprove" :state-id="stateId" />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
0
src/interface/index/Main.ts
Normal file
0
src/interface/index/Main.ts
Normal file
10
src/interface/index/workflow/Main.ts
Normal file
10
src/interface/index/workflow/Main.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
interface Permission {
|
||||||
|
isChangeState: boolean; //ส่งไปยังผู้บังคับบัญชา/ผู้มีอำนาจ
|
||||||
|
isOperate: boolean; //เปลี่ยนสถานะ (state) เอกสารได้
|
||||||
|
isView: boolean; //ดูเอกสารได้
|
||||||
|
isUpdate: boolean; //แก้ไขเอกสารได้
|
||||||
|
isDelete: boolean; //ลบเอกสารได้ (ถ้ามี)
|
||||||
|
isCancel: boolean; //ลบเอกสารได้ (ถ้ามี)
|
||||||
|
}
|
||||||
|
|
||||||
|
export type { Permission };
|
||||||
39
src/interface/response/workflow/Main.ts
Normal file
39
src/interface/response/workflow/Main.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
interface DataListState {
|
||||||
|
stateId: string;
|
||||||
|
stateName: string;
|
||||||
|
stateNo: number;
|
||||||
|
stateUserComments: StateUserComments[];
|
||||||
|
}
|
||||||
|
|
||||||
|
interface StateUserComments {
|
||||||
|
createdAt: string;
|
||||||
|
createdFullName: string;
|
||||||
|
createdUserId: string;
|
||||||
|
id: string;
|
||||||
|
isAccept: boolean | null;
|
||||||
|
isAcceptSetting: boolean | null;
|
||||||
|
isApprove: boolean | null;
|
||||||
|
isApproveSetting: boolean | null;
|
||||||
|
isReasonSetting: boolean | null;
|
||||||
|
lastUpdateFullName: string;
|
||||||
|
lastUpdateUserId: string;
|
||||||
|
lastUpdatedAt: string;
|
||||||
|
order: null;
|
||||||
|
profileId: string;
|
||||||
|
reason: string;
|
||||||
|
stateId: string;
|
||||||
|
firstName: string;
|
||||||
|
lastName: string;
|
||||||
|
prefix: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface DataCommander {
|
||||||
|
firstName: string;
|
||||||
|
id: string;
|
||||||
|
lastName: string;
|
||||||
|
orgRoot: string;
|
||||||
|
position: string;
|
||||||
|
prefix: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type { DataListState, DataCommander };
|
||||||
|
|
@ -436,8 +436,15 @@ watch(
|
||||||
class="row col-12 text-dark items-center q-py-xs q-pl-sm rounded-borders my-list"
|
class="row col-12 text-dark items-center q-py-xs q-pl-sm rounded-borders my-list"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<div class="text-weight-medium">
|
<div
|
||||||
|
:class="
|
||||||
|
prop.node.isOfficer
|
||||||
|
? 'text-weight-medium text-blue'
|
||||||
|
: 'text-weight-medium'
|
||||||
|
"
|
||||||
|
>
|
||||||
{{ prop.node.orgTreeName }}
|
{{ prop.node.orgTreeName }}
|
||||||
|
{{ prop.node.isOfficer ? "(สกจ.)" : "" }}
|
||||||
</div>
|
</div>
|
||||||
<div class="text-weight-light text-grey-8">
|
<div class="text-weight-light text-grey-8">
|
||||||
{{ prop.node.orgCode == null ? null : prop.node.orgCode }}
|
{{ prop.node.orgCode == null ? null : prop.node.orgCode }}
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@ import DialogMovePos from "@/modules/02_organization/components/DialogMovePos.vu
|
||||||
import DialogHistoryPos from "@/modules/02_organization/components/DialogHistoryPos.vue"; // ประวัติตำแหน่ง
|
import DialogHistoryPos from "@/modules/02_organization/components/DialogHistoryPos.vue"; // ประวัติตำแหน่ง
|
||||||
import DialogSelectPerson from "@/modules/02_organization/components/DialogSelectPerson.vue"; // เลือกคนครอง
|
import DialogSelectPerson from "@/modules/02_organization/components/DialogSelectPerson.vue"; // เลือกคนครอง
|
||||||
import DialogSuccession from "@/modules/02_organization/components/DialogSuccession.vue"; // สืบทอดตำแหน่ง
|
import DialogSuccession from "@/modules/02_organization/components/DialogSuccession.vue"; // สืบทอดตำแหน่ง
|
||||||
import DialogCreateCommandORG from "@/modules/18_command/components/DialogCreateCommandORG.vue";
|
|
||||||
|
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const store = useOrganizational();
|
const store = useOrganizational();
|
||||||
|
|
@ -252,7 +251,6 @@ const columnsExpand = ref<QTableProps["columns"]>([
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const dialogPosition = ref<boolean>(false); //ตำแหน่ง
|
const dialogPosition = ref<boolean>(false); //ตำแหน่ง
|
||||||
const modalCommand = ref<boolean>(false); //สร้างคำสั่ง
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* function openPopup เพิ่มอัตรากำลัง
|
* function openPopup เพิ่มอัตรากำลัง
|
||||||
|
|
@ -542,18 +540,6 @@ watch(
|
||||||
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
|
|
||||||
<q-btn
|
|
||||||
v-if="store.typeOrganizational === 'draft'"
|
|
||||||
flat
|
|
||||||
round
|
|
||||||
dense
|
|
||||||
color="add"
|
|
||||||
icon="mdi-account-arrow-right"
|
|
||||||
@click.prevent="modalCommand = true"
|
|
||||||
>
|
|
||||||
<q-tooltip>ส่งไปออกคำสั่ง</q-tooltip>
|
|
||||||
</q-btn>
|
|
||||||
|
|
||||||
<q-space />
|
<q-space />
|
||||||
<div class="row q-gutter-md">
|
<div class="row q-gutter-md">
|
||||||
<div>
|
<div>
|
||||||
|
|
@ -905,12 +891,6 @@ watch(
|
||||||
|
|
||||||
<!-- สืบทอดตำแหน่ง -->
|
<!-- สืบทอดตำแหน่ง -->
|
||||||
<DialogSuccession v-model:modal="modalDialogSuccession" :rowId="rowId" />
|
<DialogSuccession v-model:modal="modalDialogSuccession" :rowId="rowId" />
|
||||||
|
|
||||||
<!-- dialog สร้างคำสั่ง -->
|
|
||||||
<DialogCreateCommandORG
|
|
||||||
v-model:modal="modalCommand"
|
|
||||||
command-type-code="C-PM-38"
|
|
||||||
/>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@ interface OrgTree {
|
||||||
orgTreePhoneIn: string;
|
orgTreePhoneIn: string;
|
||||||
orgTreeFax: string;
|
orgTreeFax: string;
|
||||||
orgRevisionId: string;
|
orgRevisionId: string;
|
||||||
|
isOfficer: boolean;
|
||||||
children: OrgTree[];
|
children: OrgTree[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ import StructureView from "@/modules/02_organization/components/StructureMain.vu
|
||||||
import StructureOrgMain from "@/modules/02_organization/components/StructureOrgMain.vue";
|
import StructureOrgMain from "@/modules/02_organization/components/StructureOrgMain.vue";
|
||||||
import DialogFormNewStructure from "@/modules/02_organization/components/DialogNewStructure.vue";
|
import DialogFormNewStructure from "@/modules/02_organization/components/DialogNewStructure.vue";
|
||||||
import DialogDateTime from "@/modules/02_organization/components/DialogFormDateTime.vue";
|
import DialogDateTime from "@/modules/02_organization/components/DialogFormDateTime.vue";
|
||||||
|
import DialogCreateCommandORG from "@/modules/18_command/components/DialogCreateCommandORG.vue"; //ส่่งไปออกคำสั่ง
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* use
|
* use
|
||||||
|
|
@ -30,9 +31,7 @@ const $q = useQuasar();
|
||||||
const { showLoader, hideLoader, messageError, date2Thai } = useCounterMixin();
|
const { showLoader, hideLoader, messageError, date2Thai } = useCounterMixin();
|
||||||
const store = useOrganizational();
|
const store = useOrganizational();
|
||||||
|
|
||||||
/**
|
/** ตัวแปร*/
|
||||||
* ตัวแปร
|
|
||||||
*/
|
|
||||||
const modalNewStructure = ref<boolean>(false); // เพิ่มโครงสร้าง
|
const modalNewStructure = ref<boolean>(false); // เพิ่มโครงสร้าง
|
||||||
const modalDateTime = ref<boolean>(false); // ตั้งเวลาเผยแพร่
|
const modalDateTime = ref<boolean>(false); // ตั้งเวลาเผยแพร่
|
||||||
const isStatusData = ref<boolean>(false); // แสดงตั้งเวลาเผยแพร่
|
const isStatusData = ref<boolean>(false); // แสดงตั้งเวลาเผยแพร่
|
||||||
|
|
@ -43,29 +42,10 @@ const historyId = ref<string>(""); // ID ประวัติโครงสร
|
||||||
const labelHistory = ref<string>("ประวัติโครงสร้าง"); // ชื่อประวัติโครงสร้าง
|
const labelHistory = ref<string>("ประวัติโครงสร้าง"); // ชื่อประวัติโครงสร้าง
|
||||||
const count = ref<number>(0);
|
const count = ref<number>(0);
|
||||||
|
|
||||||
// รายการเมนูเพิ่มโครงสร้าง
|
const modalCommand = ref<boolean>(false); //ส่งไปออกคำสั่ง
|
||||||
const itemStructure = ref<DataOption[]>([
|
|
||||||
{
|
|
||||||
id: "NEW",
|
|
||||||
name: "สร้างใหม่",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "ORG",
|
|
||||||
name: "ทำสำเนาเฉพาะโครงสร้าง",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "ORG_POSITION",
|
|
||||||
name: "ทำสำเนาโครงสร้างและตำแหน่ง",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "ORG_POSITION_PERSON",
|
|
||||||
name: "ทำสำเนาโครงสร้าง ตำแหน่งและคนครอง",
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* function เรียกข้อมูลโครงสร้าง แบบปัจุบันและ แบบร่าง
|
* function เรียกข้อมูลโครงสร้าง แบบปัจุบันและ แบบร่าง
|
||||||
*
|
|
||||||
* เก็บข่อมูลใน store
|
* เก็บข่อมูลใน store
|
||||||
*/
|
*/
|
||||||
async function fetchOrganizationActive() {
|
async function fetchOrganizationActive() {
|
||||||
|
|
@ -225,6 +205,7 @@ onMounted(async () => {
|
||||||
</div>
|
</div>
|
||||||
</q-card>
|
</q-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<q-card class="my-card">
|
<q-card class="my-card">
|
||||||
<q-card-section class="q-pa-sm">
|
<q-card-section class="q-pa-sm">
|
||||||
|
|
@ -294,6 +275,17 @@ onMounted(async () => {
|
||||||
@click="ocClickAddStructure('ADD')"
|
@click="ocClickAddStructure('ADD')"
|
||||||
class="q-px-md"
|
class="q-px-md"
|
||||||
/>
|
/>
|
||||||
|
<q-btn
|
||||||
|
v-if="store.typeOrganizational === 'draft'"
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
dense
|
||||||
|
color="add"
|
||||||
|
icon="mdi-account-arrow-right"
|
||||||
|
@click.prevent="modalCommand = true"
|
||||||
|
>
|
||||||
|
<q-tooltip>ส่งไปออกคำสั่ง</q-tooltip>
|
||||||
|
</q-btn>
|
||||||
|
|
||||||
<!-- <q-btn-dropdown
|
<!-- <q-btn-dropdown
|
||||||
v-if="checkPermission($route)?.attrOwnership == 'OWNER'"
|
v-if="checkPermission($route)?.attrOwnership == 'OWNER'"
|
||||||
|
|
@ -383,6 +375,13 @@ onMounted(async () => {
|
||||||
:close="onClickDateTime"
|
:close="onClickDateTime"
|
||||||
:fetch-active="fetchOrganizationActive"
|
:fetch-active="fetchOrganizationActive"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<!-- dialog ส่งไปออกคำสั่ง -->
|
||||||
|
<DialogCreateCommandORG
|
||||||
|
v-model:modal="modalCommand"
|
||||||
|
command-type-code="C-PM-38"
|
||||||
|
:org-publish-date="store.orgPublishDate as Date | undefined"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@ const transferId = ref<string>(route.params.id as string); //Id รายกา
|
||||||
const roleAdmin = ref<boolean>(false); //admin
|
const roleAdmin = ref<boolean>(false); //admin
|
||||||
const edit = ref<boolean>(false); //การแก่ไข
|
const edit = ref<boolean>(false); //การแก่ไข
|
||||||
const dataProfile = ref<DataProfile>(); //ข้อมูลส่วนตัว
|
const dataProfile = ref<DataProfile>(); //ข้อมูลส่วนตัว
|
||||||
|
const workflowRef = ref<any>(null);
|
||||||
|
|
||||||
const organizationPositionOld = ref<string>(""); //ตำแหน่ง/สังกัด
|
const organizationPositionOld = ref<string>(""); //ตำแหน่ง/สังกัด
|
||||||
const positionTypeOld = ref<string>(""); //ประเภทตำแหน่ง
|
const positionTypeOld = ref<string>(""); //ประเภทตำแหน่ง
|
||||||
|
|
@ -335,7 +336,7 @@ onMounted(async () => {
|
||||||
<div class="bg-grey-1 q-pa-sm col-12 row items-center text-primary">
|
<div class="bg-grey-1 q-pa-sm col-12 row items-center text-primary">
|
||||||
<div class="q-pl-sm text-weight-bold text-dark">ข้อมูลการขอโอน</div>
|
<div class="q-pl-sm text-weight-bold text-dark">ข้อมูลการขอโอน</div>
|
||||||
<q-space />
|
<q-space />
|
||||||
<q-btn
|
<!-- <q-btn
|
||||||
v-if="!roleAdmin && responseData.status != 'APPROVE'"
|
v-if="!roleAdmin && responseData.status != 'APPROVE'"
|
||||||
outline
|
outline
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
@ -344,7 +345,7 @@ onMounted(async () => {
|
||||||
class="q-px-sm"
|
class="q-px-sm"
|
||||||
label="ส่งคำร้องไปยัง สกจ."
|
label="ส่งคำร้องไปยัง สกจ."
|
||||||
@click="confirmMessage"
|
@click="confirmMessage"
|
||||||
/>
|
/> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12"><q-separator /></div>
|
<div class="col-12"><q-separator /></div>
|
||||||
<div class="row col-12 q-pa-md">
|
<div class="row col-12 q-pa-md">
|
||||||
|
|
@ -489,7 +490,8 @@ onMounted(async () => {
|
||||||
v-if="
|
v-if="
|
||||||
!(
|
!(
|
||||||
responseData.status == 'REPORT' ||
|
responseData.status == 'REPORT' ||
|
||||||
responseData.status == 'DONE'
|
responseData.status == 'DONE' ||
|
||||||
|
!workflowRef?.permission.isUpdate
|
||||||
) && checkPermission($route)?.attrIsUpdate
|
) && checkPermission($route)?.attrIsUpdate
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
|
|
@ -686,7 +688,11 @@ onMounted(async () => {
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
||||||
<!-- Workflow -->
|
<!-- Workflow -->
|
||||||
<WorkFlow :id="transferId" :sys-name="'transfer'" />
|
<WorkFlow
|
||||||
|
ref="workflowRef"
|
||||||
|
:id="transferId"
|
||||||
|
:sys-name="'PLACEMENT_TRANSFER'"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,12 @@ import { useRouter } from "vue-router";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useCommandMainStore } from "@/modules/18_command/store/Main";
|
import { useCommandMainStore } from "@/modules/18_command/store/Main";
|
||||||
|
|
||||||
import type { ListCommand } from "@/modules/18_command/interface/index/Main";
|
/** importType*/
|
||||||
|
import type { QTableProps } from "quasar";
|
||||||
|
import type {
|
||||||
|
ListCommand,
|
||||||
|
DataOption,
|
||||||
|
} from "@/modules/18_command/interface/index/Main";
|
||||||
|
|
||||||
import DialogHeader from "@/components/DialogHeader.vue";
|
import DialogHeader from "@/components/DialogHeader.vue";
|
||||||
|
|
||||||
|
|
@ -28,6 +33,7 @@ const {
|
||||||
const modal = defineModel<boolean>("modal", { required: true });
|
const modal = defineModel<boolean>("modal", { required: true });
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
commandTypeCode: String, // ไอดีประเภทคำสั่ง
|
commandTypeCode: String, // ไอดีประเภทคำสั่ง
|
||||||
|
orgPublishDate: { type: Date, defult: undefined },
|
||||||
});
|
});
|
||||||
|
|
||||||
const commandOp = ref<ListCommand[]>([]); // ประเภทคำสั่ง
|
const commandOp = ref<ListCommand[]>([]); // ประเภทคำสั่ง
|
||||||
|
|
@ -36,33 +42,123 @@ const commandNo = ref<string>(""); //คำสั่งเลขที่
|
||||||
const commandYear = ref<number>(new Date().getFullYear());
|
const commandYear = ref<number>(new Date().getFullYear());
|
||||||
const commandAffectDate = ref<Date | null>(null); //วันที่ลงนาม
|
const commandAffectDate = ref<Date | null>(null); //วันที่ลงนาม
|
||||||
const commandExcecuteDate = ref<Date | null>(null); //วันที่คำสั่งมีผล
|
const commandExcecuteDate = ref<Date | null>(null); //วันที่คำสั่งมีผล
|
||||||
|
const group = ref<string>(
|
||||||
|
"กลุ่มที่ 1.1 : ปฏิบัติงาน ชำนาญงาน ปฏิบัติการ ชำนาญการ"
|
||||||
|
); //กลุ่ม
|
||||||
|
const isCheckOrgPublishDate = ref<boolean>(false); //เช็คค่าของวันที่คำสั่งมีผล
|
||||||
|
const groupOp = ref<DataOption[]>([]);
|
||||||
|
const groupDataOp = ref<DataOption[]>([
|
||||||
|
{
|
||||||
|
id: "1.1",
|
||||||
|
name: "กลุ่มที่ 1.1 : ปฏิบัติงาน ชำนาญงาน ปฏิบัติการ ชำนาญการ",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "1.2",
|
||||||
|
name: "กลุ่มที่ 1.2 : อาวุโส ชำนาญการพิเศษ อำนวยการต้น",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2",
|
||||||
|
name: "กลุ่มที่ 2 : ทักษะพิเศษ เชี่ยวชาญ ทรงคุณวุฒิ อำนวยการสูง บริหารต้น บริหารสูง",
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
//Table
|
||||||
|
const rows = ref<any[]>([
|
||||||
|
{
|
||||||
|
id: "1",
|
||||||
|
posMasterNo: "สกก.3",
|
||||||
|
positionName: "นักจัดการงานทั่วไป",
|
||||||
|
posTypeName: "ทั่วไป",
|
||||||
|
posLevelName: "ปฏิบัติงาน",
|
||||||
|
positionIsSelected: "นายศรัณย์ ศิลาดี",
|
||||||
|
group: "1.1",
|
||||||
|
selected: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4",
|
||||||
|
posMasterNo: "สกก.4",
|
||||||
|
positionName: "นักจัดการงานทั่วไป",
|
||||||
|
posTypeName: "วิชาการ",
|
||||||
|
posLevelName: "ปฏิบัติการ",
|
||||||
|
positionIsSelected: "นางเกษมณี ใจดี",
|
||||||
|
group: "1.1",
|
||||||
|
selected: true,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
const selected = ref<any[]>([]);
|
||||||
|
const columns = ref<QTableProps["columns"]>([
|
||||||
|
{
|
||||||
|
name: "posMasterNo",
|
||||||
|
align: "left",
|
||||||
|
label: "ตำแหน่งเลขที่",
|
||||||
|
sortable: false,
|
||||||
|
field: "posMasterNo",
|
||||||
|
headerStyle: "font-size: 14px",
|
||||||
|
style: "font-size: 14px",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "positionName",
|
||||||
|
align: "left",
|
||||||
|
label: "ตำแหน่งในสายงาน",
|
||||||
|
field: "positionName",
|
||||||
|
sortable: false,
|
||||||
|
headerStyle: "font-size: 14px",
|
||||||
|
style: "font-size: 14px",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "posTypeName",
|
||||||
|
align: "left",
|
||||||
|
label: "ประเภทตำแหน่ง",
|
||||||
|
sortable: false,
|
||||||
|
field: "posTypeName",
|
||||||
|
headerStyle: "font-size: 14px",
|
||||||
|
style: "font-size: 14px",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "posLevelName",
|
||||||
|
align: "left",
|
||||||
|
label: "ระดับตำแหน่ง",
|
||||||
|
sortable: false,
|
||||||
|
field: "posLevelName",
|
||||||
|
headerStyle: "font-size: 14px",
|
||||||
|
style: "font-size: 14px",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "positionIsSelected",
|
||||||
|
align: "left",
|
||||||
|
label: "คนครอง",
|
||||||
|
sortable: false,
|
||||||
|
field: "positionIsSelected",
|
||||||
|
headerStyle: "font-size: 14px",
|
||||||
|
style: "font-size: 14px",
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
/** ฟังก์ชันบันทึกและไปยังหน้าคำสั่ง*/
|
/** ฟังก์ชันบันทึกและไปยังหน้าคำสั่ง*/
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, async () => {
|
dialogConfirm($q, async () => {
|
||||||
showLoader();
|
// showLoader();
|
||||||
const body = {
|
// const body = {
|
||||||
commandYear: commandYear.value,
|
// commandYear: commandYear.value,
|
||||||
commandNo: commandNo.value,
|
// commandNo: commandNo.value,
|
||||||
commandTypeId: commandType.value,
|
// commandTypeId: commandType.value,
|
||||||
commandAffectDate: commandAffectDate.value,
|
// commandAffectDate: commandAffectDate.value,
|
||||||
commandExcecuteDate: commandExcecuteDate.value,
|
// commandExcecuteDate: commandExcecuteDate.value,
|
||||||
persons: [],
|
// persons: [],
|
||||||
};
|
// };
|
||||||
|
// await http
|
||||||
await http
|
// .post(config.API.command + `/person`, body)
|
||||||
.post(config.API.command + `/person`, body)
|
// .then(async (res) => {
|
||||||
.then(async (res) => {
|
// const id = await res.data.result;
|
||||||
const id = await res.data.result;
|
// router.push(`/command/edit/${id}`);
|
||||||
router.push(`/command/edit/${id}`);
|
// modal.value = false;
|
||||||
modal.value = false;
|
// })
|
||||||
})
|
// .catch((e) => {
|
||||||
.catch((e) => {
|
// messageError($q, e);
|
||||||
messageError($q, e);
|
// })
|
||||||
})
|
// .finally(() => {
|
||||||
.finally(() => {
|
// hideLoader();
|
||||||
hideLoader();
|
// });
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -76,6 +172,10 @@ function closeModal() {
|
||||||
commandYear.value = new Date().getFullYear();
|
commandYear.value = new Date().getFullYear();
|
||||||
commandAffectDate.value = null;
|
commandAffectDate.value = null;
|
||||||
commandExcecuteDate.value = null;
|
commandExcecuteDate.value = null;
|
||||||
|
group.value = "กลุ่มที่ 1.1 : ปฏิบัติงาน ชำนาญงาน ปฏิบัติการ ชำนาญการ";
|
||||||
|
isCheckOrgPublishDate.value = false;
|
||||||
|
// rows.value = [];
|
||||||
|
// selected.value = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
/** ฟังก์ชันดึงข้อมูลคำสั่ง */
|
/** ฟังก์ชันดึงข้อมูลคำสั่ง */
|
||||||
|
|
@ -88,9 +188,69 @@ async function fetchCommandType() {
|
||||||
commandType.value = commandOp.value[0].id;
|
commandType.value = commandOp.value[0].id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ฟังก์ชันต้นหาข้อมูลของ Option ขอสถานะ
|
||||||
|
* @param val ค่าที่ต้องการฟิลเตอร์
|
||||||
|
* @param update อัพเดทค่า
|
||||||
|
* @param refData ดาต้าที่ต้องการฟิลเตอร์
|
||||||
|
*/
|
||||||
|
function filterOption(val: string, update: Function) {
|
||||||
|
update(() => {
|
||||||
|
group.value = val ? "" : group.value;
|
||||||
|
groupOp.value = groupDataOp.value.filter(
|
||||||
|
(v: DataOption) => v.name.indexOf(val) > -1
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ฟังก์ชันเลือกกลุ่ม
|
||||||
|
* @param val กลุ่มที่ต้องการค้นหา
|
||||||
|
*/
|
||||||
|
function updateGroup(val: string) {
|
||||||
|
const data = [
|
||||||
|
{
|
||||||
|
id: "1",
|
||||||
|
posMasterNo: "สกก.3",
|
||||||
|
positionName: "นักจัดการงานทั่วไป",
|
||||||
|
posTypeName: "ทั่วไป",
|
||||||
|
posLevelName: "ปฏิบัติงาน",
|
||||||
|
positionIsSelected: "นายศรัณย์ ศิลาดี",
|
||||||
|
group: "1.1",
|
||||||
|
selected: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2",
|
||||||
|
posMasterNo: "สกก.2",
|
||||||
|
positionName: "นักทรัพยากรบุคคล",
|
||||||
|
posTypeName: "วิชาการ",
|
||||||
|
posLevelName: "ชำนาญการพิเศษ",
|
||||||
|
positionIsSelected: "นางสาวพรทิพย์ กาญจนา",
|
||||||
|
group: "1.2",
|
||||||
|
selected: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3",
|
||||||
|
posMasterNo: "สกก.1",
|
||||||
|
positionName: "นักบริหาร",
|
||||||
|
posTypeName: "บริหาร",
|
||||||
|
posLevelName: "สูง",
|
||||||
|
positionIsSelected: "นางสาวพรทิพย์ กาญจนา",
|
||||||
|
group: "2",
|
||||||
|
selected: true,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
rows.value = data.filter((e: any) => e.group === val);
|
||||||
|
}
|
||||||
|
|
||||||
watch(modal, () => {
|
watch(modal, () => {
|
||||||
if (modal.value) {
|
if (modal.value) {
|
||||||
fetchCommandType();
|
fetchCommandType();
|
||||||
|
if (props.orgPublishDate) {
|
||||||
|
commandExcecuteDate.value = props.orgPublishDate;
|
||||||
|
isCheckOrgPublishDate.value = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -128,19 +288,23 @@ watch(modal, () => {
|
||||||
</template>
|
</template>
|
||||||
</q-select>
|
</q-select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- คำสั่งเลขที่ -->
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<q-input
|
<q-input
|
||||||
class="inputgreen"
|
class="inputgreen"
|
||||||
outlined
|
outlined
|
||||||
dense
|
dense
|
||||||
|
hide-bottom-space
|
||||||
v-model="commandNo"
|
v-model="commandNo"
|
||||||
:label="`${'คำสั่งเลขที่'}`"
|
:label="`${'คำสั่งเลขที่'}`"
|
||||||
|
:rules="[(val:string) => !!val || `${'กรุณากรอกคำสั่งเลขที่'}`]"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<label class="col-1 flex justify-center items-center text-bold"
|
<label class="col-1 flex justify-center items-center text-bold"
|
||||||
>/</label
|
>/</label
|
||||||
>
|
>
|
||||||
|
<!-- พ.ศ -->
|
||||||
<div class="col-5">
|
<div class="col-5">
|
||||||
<datepicker
|
<datepicker
|
||||||
menu-class-name="modalfix"
|
menu-class-name="modalfix"
|
||||||
|
|
@ -179,6 +343,7 @@ watch(modal, () => {
|
||||||
</datepicker>
|
</datepicker>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- วันที่ลงนาม -->
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<datepicker
|
<datepicker
|
||||||
clearable
|
clearable
|
||||||
|
|
@ -222,6 +387,7 @@ watch(modal, () => {
|
||||||
</datepicker>
|
</datepicker>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- วันที่คำสั่งมีผล -->
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<datepicker
|
<datepicker
|
||||||
clearable
|
clearable
|
||||||
|
|
@ -230,7 +396,8 @@ watch(modal, () => {
|
||||||
:locale="'th'"
|
:locale="'th'"
|
||||||
autoApply
|
autoApply
|
||||||
:enableTimePicker="false"
|
:enableTimePicker="false"
|
||||||
class="inputgreen"
|
:class="!isCheckOrgPublishDate ? 'inputgreen' : ''"
|
||||||
|
:readonly="isCheckOrgPublishDate"
|
||||||
>
|
>
|
||||||
<template #year="{ year }">
|
<template #year="{ year }">
|
||||||
{{ year + 543 }}
|
{{ year + 543 }}
|
||||||
|
|
@ -240,11 +407,12 @@ watch(modal, () => {
|
||||||
</template>
|
</template>
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
<q-input
|
<q-input
|
||||||
|
:readonly="isCheckOrgPublishDate"
|
||||||
clearable
|
clearable
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
class="inputgreen"
|
:class="!isCheckOrgPublishDate ? 'inputgreen' : ''"
|
||||||
:model-value="
|
:model-value="
|
||||||
commandExcecuteDate == null
|
commandExcecuteDate == null
|
||||||
? null
|
? null
|
||||||
|
|
@ -265,6 +433,111 @@ watch(modal, () => {
|
||||||
</template>
|
</template>
|
||||||
</datepicker>
|
</datepicker>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- กลุ่ม -->
|
||||||
|
<div class="col-12">
|
||||||
|
<q-select
|
||||||
|
v-model="group"
|
||||||
|
:label="`${'กลุ่ม'}`"
|
||||||
|
option-label="name"
|
||||||
|
:options="groupOp"
|
||||||
|
option-value="id"
|
||||||
|
class="inputgreen"
|
||||||
|
dense
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
lazy-rules
|
||||||
|
use-input
|
||||||
|
hide-bottom-space
|
||||||
|
outlined
|
||||||
|
@update:model-value="updateGroup"
|
||||||
|
@filter="(inputValue:any,doneFn:Function) => filterOption(inputValue, doneFn) "
|
||||||
|
>
|
||||||
|
<template v-slot:no-option>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section class="text-grey">
|
||||||
|
ไม่มีข้อมูล
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</template>
|
||||||
|
</q-select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- TABLE -->
|
||||||
|
<div class="col-12">
|
||||||
|
<d-table
|
||||||
|
ref="table"
|
||||||
|
:columns="columns"
|
||||||
|
:rows="rows"
|
||||||
|
:paging="true"
|
||||||
|
row-key="id"
|
||||||
|
flat
|
||||||
|
bordered
|
||||||
|
dense
|
||||||
|
:rows-per-page-options="[10, 25, 50, 100]"
|
||||||
|
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">
|
||||||
|
<q-td>
|
||||||
|
<q-checkbox
|
||||||
|
keep-color
|
||||||
|
color="primary"
|
||||||
|
dense
|
||||||
|
v-model="props.row.selected"
|
||||||
|
/>
|
||||||
|
</q-td>
|
||||||
|
|
||||||
|
<q-td
|
||||||
|
v-for="col in props.cols"
|
||||||
|
:key="col.name"
|
||||||
|
:props="props"
|
||||||
|
>
|
||||||
|
<div v-if="col.name === 'posMasterNo'">
|
||||||
|
{{
|
||||||
|
props.row.isSit
|
||||||
|
? col.value + " " + "(นั่งทับตำแหน่ง)"
|
||||||
|
: col.value
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<div v-else-if="col.name === 'posLevelName'">
|
||||||
|
{{
|
||||||
|
props.row.posLevelName
|
||||||
|
? props.row.isSpecial == true
|
||||||
|
? `${props.row.posLevelName} (ฉ)`
|
||||||
|
: props.row.posLevelName
|
||||||
|
: "-"
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
{{ col.value ? col.value : "-" }}
|
||||||
|
</div>
|
||||||
|
</q-td>
|
||||||
|
</q-tr>
|
||||||
|
</template>
|
||||||
|
<!-- <template v-slot:pagination="scope">
|
||||||
|
<q-pagination
|
||||||
|
v-model="reqMaster.page"
|
||||||
|
active-color="primary"
|
||||||
|
color="dark"
|
||||||
|
:max="totalPage"
|
||||||
|
:max-pages="5"
|
||||||
|
size="sm"
|
||||||
|
boundary-links
|
||||||
|
direction-links
|
||||||
|
></q-pagination>
|
||||||
|
</template> -->
|
||||||
|
</d-table>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
||||||
|
|
@ -272,8 +545,13 @@ watch(modal, () => {
|
||||||
|
|
||||||
<q-card-actions align="right">
|
<q-card-actions align="right">
|
||||||
<q-btn
|
<q-btn
|
||||||
label="บันทึกและไปยังหน้าคำสั่ง"
|
label="ส่งไปออกคำสั่ง"
|
||||||
:disable="commandType == ''"
|
:disable="
|
||||||
|
commandType == '' ||
|
||||||
|
rows.filter((x) => x.selected).length === 0 ||
|
||||||
|
!commandNo ||
|
||||||
|
!commandYear
|
||||||
|
"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="public"
|
color="public"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue