2023-09-19 16:36:40 +07:00
|
|
|
<script setup lang="ts">
|
2024-11-05 14:04:53 +07:00
|
|
|
import { ref, watch, type PropType, computed } from "vue";
|
2023-09-19 16:36:40 +07:00
|
|
|
import { useQuasar } from "quasar";
|
2024-08-19 16:14:43 +07:00
|
|
|
|
2024-05-02 17:05:19 +07:00
|
|
|
import { useTransferDataStore } from "@/modules/05_placement/store";
|
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
2024-09-27 15:59:13 +07:00
|
|
|
import { useCommandMainStore } from "@/modules/18_command/store/Main";
|
|
|
|
|
|
|
|
|
|
import type { QTableProps } from "quasar";
|
|
|
|
|
import type { ListCommand } from "@/modules/18_command/interface/index/Main";
|
|
|
|
|
import type { listMain } from "@/modules/05_placement/interface/response/OhterMain";
|
|
|
|
|
|
|
|
|
|
/** importComponents*/
|
|
|
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
|
|
|
import DialogCreateCommand from "@/modules/18_command/components/DialogCreateCommand.vue";
|
2024-05-02 17:05:19 +07:00
|
|
|
|
2024-08-19 16:14:43 +07:00
|
|
|
const $q = useQuasar();
|
2024-09-27 15:59:13 +07:00
|
|
|
const storeCommand = useCommandMainStore();
|
2024-05-02 17:05:19 +07:00
|
|
|
const storeFn = useTransferDataStore();
|
|
|
|
|
const { statusText } = storeFn;
|
2024-12-04 13:47:44 +07:00
|
|
|
const { dialogConfirm, date2Thai, onSearchDataTable } = useCounterMixin();
|
2023-09-19 16:36:40 +07:00
|
|
|
|
2024-08-19 16:14:43 +07:00
|
|
|
/**
|
|
|
|
|
* props
|
|
|
|
|
*/
|
2023-09-19 16:36:40 +07:00
|
|
|
const props = defineProps({
|
|
|
|
|
Modal: Boolean,
|
|
|
|
|
clickClose: Function,
|
|
|
|
|
resetFilter: Function,
|
|
|
|
|
fecthlistOthet: Function,
|
|
|
|
|
optionsType: Array,
|
2023-09-29 10:27:24 +07:00
|
|
|
type: String,
|
2023-09-19 16:36:40 +07:00
|
|
|
});
|
2024-08-19 16:14:43 +07:00
|
|
|
const emit = defineEmits([
|
|
|
|
|
"update:filterKeyword2",
|
|
|
|
|
"update:type",
|
|
|
|
|
"update:selected",
|
|
|
|
|
]);
|
|
|
|
|
|
2024-12-04 13:47:44 +07:00
|
|
|
const filterKeyword2 = defineModel<string>("filterKeyword2", {
|
|
|
|
|
required: true,
|
|
|
|
|
});
|
|
|
|
|
const rows = defineModel<listMain[]>("rows", { required: true });
|
|
|
|
|
const rowsData = defineModel<listMain[]>("rowsData", { required: true });
|
2024-09-27 15:59:13 +07:00
|
|
|
//Table
|
|
|
|
|
const selected = ref<listMain[]>([]); //ราชชื่อที่เลือกส่งไปออกคำสั่ง
|
2024-11-05 14:04:53 +07:00
|
|
|
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,
|
2025-04-02 14:29:20 +07:00
|
|
|
position: i.position,
|
|
|
|
|
posType: i.posTypeName,
|
|
|
|
|
posLevel: i.posLevelName,
|
2024-11-05 14:04:53 +07:00
|
|
|
}));
|
|
|
|
|
});
|
2023-09-19 16:36:40 +07:00
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"fullname",
|
2025-04-02 14:29:20 +07:00
|
|
|
"positionNumberOld",
|
2023-09-19 16:36:40 +07:00
|
|
|
"positionLevel",
|
2024-05-24 14:58:40 +07:00
|
|
|
"organizationPositionOld",
|
2025-04-02 14:29:20 +07:00
|
|
|
"organizationPositionReturn",
|
2024-05-02 17:05:19 +07:00
|
|
|
"createdAt",
|
|
|
|
|
"status",
|
2023-09-19 16:36:40 +07:00
|
|
|
]);
|
|
|
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
2023-09-20 13:58:12 +07:00
|
|
|
sortable: false,
|
2023-09-19 16:36:40 +07:00
|
|
|
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",
|
2024-05-02 17:05:19 +07:00
|
|
|
format(val, row) {
|
2025-04-02 14:29:20 +07:00
|
|
|
return `${row.prefix === null ? "" : row.prefix}${row.firstName} ${
|
|
|
|
|
row.lastName
|
|
|
|
|
}`;
|
2024-05-02 17:05:19 +07:00
|
|
|
},
|
2023-09-19 16:36:40 +07:00
|
|
|
},
|
2025-04-02 14:29:20 +07:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
name: "positionNumberOld",
|
|
|
|
|
align: "left",
|
2025-04-02 14:38:28 +07:00
|
|
|
label: "เลขที่ตำแหน่งเดิม",
|
2025-04-02 14:29:20 +07:00
|
|
|
sortable: true,
|
|
|
|
|
field: "positionNumberOld",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
format(val, row) {
|
|
|
|
|
return row.positionNumberOld;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
2023-09-19 16:36:40 +07:00
|
|
|
{
|
|
|
|
|
name: "positionLevel",
|
|
|
|
|
align: "left",
|
2025-04-02 14:29:20 +07:00
|
|
|
label: "ตำแหน่งประเภทเดิม",
|
2023-09-19 16:36:40 +07:00
|
|
|
sortable: true,
|
|
|
|
|
field: "positionLevel",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2024-05-02 17:05:19 +07:00
|
|
|
format(val, row) {
|
|
|
|
|
let name = "";
|
2024-05-24 14:58:40 +07:00
|
|
|
if (row.positionTypeOld && row.positionLevelOld) {
|
|
|
|
|
name = `${row.positionTypeOld} (${row.positionLevelOld})`;
|
|
|
|
|
} else if (row.positionTypeOld) {
|
|
|
|
|
name = `${row.positionTypeOld}`;
|
|
|
|
|
} else if (row.positionLevelOld) {
|
|
|
|
|
name = `(${row.positionLevelOld})`;
|
2024-05-02 17:05:19 +07:00
|
|
|
} else name = "-";
|
|
|
|
|
return name;
|
|
|
|
|
},
|
2023-09-19 16:36:40 +07:00
|
|
|
},
|
|
|
|
|
{
|
2024-05-24 14:58:40 +07:00
|
|
|
name: "organizationPositionOld",
|
2023-09-19 16:36:40 +07:00
|
|
|
align: "left",
|
2024-05-24 17:50:43 +07:00
|
|
|
label: "ตำแหน่ง/สังกัดเดิม",
|
2023-09-19 16:36:40 +07:00
|
|
|
sortable: true,
|
2024-05-24 14:58:40 +07:00
|
|
|
field: "organizationPositionOld",
|
2025-03-28 14:01:29 +07:00
|
|
|
format(val, row) {
|
|
|
|
|
return row.organizationPositionOld.replace(/\n/g, " ");
|
|
|
|
|
},
|
2023-09-19 16:36:40 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
2025-04-02 14:29:20 +07:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
name: "organizationPositionReturn",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ตำแหน่ง/หน่วยงานที่บรรจุกลับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "organizationPositionReturn",
|
|
|
|
|
format(val, row) {
|
|
|
|
|
return row.organizationPositionOld.replace(/\n/g, " ");
|
|
|
|
|
},
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
2023-09-19 16:36:40 +07:00
|
|
|
{
|
2024-05-02 17:05:19 +07:00
|
|
|
name: "createdAt",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "วันที่ดำเนินการ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "createdAt",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
format: (val) => date2Thai(val),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "status",
|
2023-09-19 16:36:40 +07:00
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
2024-05-02 17:05:19 +07:00
|
|
|
field: "status",
|
2023-09-19 16:36:40 +07:00
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
2024-05-02 17:05:19 +07:00
|
|
|
format: (val) => statusText(val),
|
2023-09-19 16:36:40 +07:00
|
|
|
},
|
|
|
|
|
]);
|
2024-08-19 16:14:43 +07:00
|
|
|
|
2024-09-27 15:59:13 +07:00
|
|
|
const commandType = ref<string>(""); //ประเภทคำสั่ง
|
|
|
|
|
const commandMainOp = ref<ListCommand[]>([]); //ข้อมูลรายการคำสั่ง
|
|
|
|
|
const commandOp = ref<ListCommand[]>([]); //ตัวเลือกคำสั่ง
|
|
|
|
|
const modalCommand = ref<boolean>(false); //สร้างคำสั่ง
|
2023-09-19 16:36:40 +07:00
|
|
|
|
2024-09-27 15:59:13 +07:00
|
|
|
/** update filter*/
|
|
|
|
|
function updateInput(value: string) {
|
|
|
|
|
emit("update:filterKeyword2", value);
|
2024-08-19 16:14:43 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* รีเซ็ตค่าในช่องค้นหา
|
|
|
|
|
*/
|
|
|
|
|
function Reset() {
|
2023-09-29 10:27:24 +07:00
|
|
|
emit("update:filterKeyword2", "");
|
2024-08-19 16:14:43 +07:00
|
|
|
}
|
2023-09-19 16:36:40 +07:00
|
|
|
|
2024-08-19 16:14:43 +07:00
|
|
|
/**
|
|
|
|
|
* ยืนยันการส่งไปออกคำสั่ง
|
|
|
|
|
*/
|
|
|
|
|
function clickAddlist() {
|
|
|
|
|
dialogConfirm($q, async () => {
|
2024-09-27 15:59:13 +07:00
|
|
|
modalCommand.value = true;
|
|
|
|
|
props.clickClose?.();
|
2023-09-19 16:36:40 +07:00
|
|
|
});
|
2024-08-19 16:14:43 +07:00
|
|
|
}
|
|
|
|
|
|
2024-09-19 15:02:44 +07:00
|
|
|
/**
|
2024-09-27 15:59:13 +07:00
|
|
|
* ฟิลเตอร์ คำสั่ง
|
|
|
|
|
* @param val ค่าจาก Input
|
|
|
|
|
* @param update Funtion quasar
|
2024-09-19 15:02:44 +07:00
|
|
|
*/
|
2024-09-27 15:59:13 +07:00
|
|
|
function filterSelector(val: string, update: Function) {
|
|
|
|
|
update(() => {
|
|
|
|
|
commandOp.value = commandMainOp.value.filter(
|
|
|
|
|
(v: ListCommand) => v.name.indexOf(val) > -1
|
|
|
|
|
);
|
|
|
|
|
});
|
2023-09-29 10:27:24 +07:00
|
|
|
}
|
2024-09-19 15:02:44 +07:00
|
|
|
|
2024-12-04 13:47:44 +07:00
|
|
|
function onSearch() {
|
|
|
|
|
rows.value = onSearchDataTable(
|
|
|
|
|
filterKeyword2.value,
|
|
|
|
|
rowsData.value,
|
|
|
|
|
columns2.value ? columns2.value : []
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-19 15:02:44 +07:00
|
|
|
/**
|
2024-09-27 15:59:13 +07:00
|
|
|
* เมื่อ props.modal เป็น tru
|
2024-09-19 15:02:44 +07:00
|
|
|
* กำหนดให้ selected เป็นค่าว่าง
|
|
|
|
|
*/
|
|
|
|
|
watch(
|
|
|
|
|
() => props.Modal,
|
2024-09-27 15:59:13 +07:00
|
|
|
async () => {
|
2024-09-19 15:02:44 +07:00
|
|
|
if (props.Modal === true) {
|
2024-12-04 13:47:44 +07:00
|
|
|
rows.value = rowsData.value ? rowsData.value : [];
|
2024-09-19 15:02:44 +07:00
|
|
|
selected.value = [];
|
2024-09-27 15:59:13 +07:00
|
|
|
commandType.value = "";
|
|
|
|
|
const data = await storeCommand.getCommandTypes();
|
|
|
|
|
commandMainOp.value = data.filter(
|
|
|
|
|
(e: ListCommand) => e.code === "C-PM-08" || e.code === "C-PM-09"
|
|
|
|
|
);
|
2024-09-19 15:02:44 +07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
2023-09-19 16:36:40 +07:00
|
|
|
</script>
|
2023-09-22 17:23:38 +07:00
|
|
|
|
2023-09-19 16:36:40 +07:00
|
|
|
<template>
|
2024-11-15 16:53:28 +07:00
|
|
|
<q-dialog v-model="props.Modal" persistent>
|
2023-09-19 16:36:40 +07:00
|
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
2024-09-27 15:59:13 +07:00
|
|
|
<q-form greedy @submit.prevent @validation-success="clickAddlist">
|
|
|
|
|
<DialogHeader
|
|
|
|
|
:tittle="'ส่งไปออกคำสั่งอื่นๆ'"
|
|
|
|
|
:close="props.clickClose"
|
|
|
|
|
/>
|
|
|
|
|
<q-separator />
|
|
|
|
|
<q-card-section>
|
|
|
|
|
<div class="row q-col-gutter-sm">
|
|
|
|
|
<div class="row col-12">
|
2023-09-19 16:36:40 +07:00
|
|
|
<q-select
|
2024-09-27 15:59:13 +07:00
|
|
|
v-model="commandType"
|
2023-09-19 16:36:40 +07:00
|
|
|
dense
|
2024-09-27 15:59:13 +07:00
|
|
|
outlined
|
2023-09-19 16:36:40 +07:00
|
|
|
label="ประเภทคำสั่ง"
|
2024-09-27 15:59:13 +07:00
|
|
|
:options="commandOp"
|
|
|
|
|
option-label="name"
|
|
|
|
|
option-value="code"
|
2023-09-19 16:36:40 +07:00
|
|
|
emit-value
|
|
|
|
|
map-options
|
2023-09-29 10:27:24 +07:00
|
|
|
use-input
|
2024-11-29 15:58:37 +07:00
|
|
|
hide-selected
|
|
|
|
|
fill-input
|
|
|
|
|
style="width: 480px; max-width: auto"
|
2024-09-27 15:59:13 +07:00
|
|
|
@filter="(inputValue:string,
|
|
|
|
|
doneFn:Function) => filterSelector(inputValue, doneFn
|
|
|
|
|
) "
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:no-option>
|
2023-09-29 10:27:24 +07:00
|
|
|
<q-item>
|
|
|
|
|
<q-item-section class="text-grey">
|
|
|
|
|
ไม่มีข้อมูล
|
|
|
|
|
</q-item-section>
|
|
|
|
|
</q-item>
|
|
|
|
|
</template>
|
|
|
|
|
</q-select>
|
2024-09-27 15:59:13 +07:00
|
|
|
<q-space />
|
|
|
|
|
<div class="row q-col-gutter-sm">
|
|
|
|
|
<q-input
|
|
|
|
|
borderless
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
2024-12-04 13:47:44 +07:00
|
|
|
v-model="filterKeyword2"
|
2024-09-27 15:59:13 +07:00
|
|
|
placeholder="ค้นหา"
|
2025-05-23 11:47:17 +07:00
|
|
|
@keydown.enter.prevent="onSearch"
|
2024-09-27 15:59:13 +07:00
|
|
|
>
|
|
|
|
|
<template v-slot:append>
|
2024-11-29 15:58:37 +07:00
|
|
|
<q-icon name="search" />
|
2024-09-27 15:59:13 +07:00
|
|
|
</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"
|
2024-11-05 16:33:46 +07:00
|
|
|
style="min-width: 140px"
|
2024-09-27 15:59:13 +07:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns2"
|
2024-12-04 13:47:44 +07:00
|
|
|
:rows="rows"
|
2024-09-27 15:59:13 +07:00
|
|
|
row-key="profileId"
|
|
|
|
|
flat
|
|
|
|
|
:visible-columns="visibleColumns2"
|
|
|
|
|
selection="multiple"
|
|
|
|
|
v-model:selected="selected"
|
2023-09-19 16:36:40 +07:00
|
|
|
>
|
2024-09-27 15:59:13 +07:00
|
|
|
<template v-slot:header-selection="scope">
|
|
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
|
|
|
|
v-model="scope.selected"
|
2023-09-19 16:36:40 +07:00
|
|
|
/>
|
|
|
|
|
</template>
|
2024-09-27 15:59:13 +07:00
|
|
|
<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>
|
2024-05-02 17:05:19 +07:00
|
|
|
|
2024-09-27 15:59:13 +07:00
|
|
|
<div
|
2025-03-28 14:01:29 +07:00
|
|
|
v-else-if="col.name === 'organizationPositionOld'"
|
|
|
|
|
class="text-html"
|
2024-09-27 15:59:13 +07:00
|
|
|
>
|
2025-04-02 14:29:20 +07:00
|
|
|
{{ props.row.organizationPositionOld ?? "-" }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
v-else-if="col.name === 'organizationPositionReturn'"
|
|
|
|
|
>
|
|
|
|
|
<div class="col-4">
|
|
|
|
|
<div>
|
|
|
|
|
{{
|
|
|
|
|
props.row.position !== null
|
|
|
|
|
? props.row.position
|
|
|
|
|
: ""
|
|
|
|
|
}}{{
|
|
|
|
|
(props.row.posTypeName !== null &&
|
|
|
|
|
props.row.posTypeName === "บริหาร") ||
|
|
|
|
|
props.row.posTypeName === "อำนวยการ"
|
|
|
|
|
? `${props.row.posTypeName}`
|
|
|
|
|
: ""
|
|
|
|
|
}}{{
|
|
|
|
|
props.row.posLevelName !== null
|
|
|
|
|
? `${props.row.posLevelName}`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
{{ props.row.root !== null ? props.row.root : "-" }}
|
|
|
|
|
{{
|
|
|
|
|
props.row.rootShortName !== null
|
|
|
|
|
? `(${props.row.rootShortName})`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
{{
|
|
|
|
|
props.row.nodeName !== null
|
|
|
|
|
? props.row.nodeName
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
{{
|
|
|
|
|
props.row.nodeShortName !== null
|
|
|
|
|
? `(${props.row.nodeShortName}${props.row.posMasterNo})`
|
|
|
|
|
: ""
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-03-28 14:01:29 +07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div v-else>
|
2024-09-27 15:59:13 +07:00
|
|
|
{{ 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="ส่งไปออกคำสั่ง"
|
|
|
|
|
type="submit"
|
|
|
|
|
:disable="selected.length === 0 || commandType === ''"
|
|
|
|
|
color="public"
|
|
|
|
|
>
|
|
|
|
|
<q-tooltip>ส่งไปออกคำสั่ง</q-tooltip>
|
|
|
|
|
</q-btn>
|
|
|
|
|
</q-card-actions>
|
|
|
|
|
</q-form>
|
2023-09-19 16:36:40 +07:00
|
|
|
</q-card>
|
|
|
|
|
</q-dialog>
|
2024-09-27 15:59:13 +07:00
|
|
|
|
|
|
|
|
<DialogCreateCommand
|
|
|
|
|
v-model:modal="modalCommand"
|
|
|
|
|
:command-type-code="commandType"
|
2024-11-05 14:04:53 +07:00
|
|
|
:persons="dataMapToSend"
|
2024-09-27 15:59:13 +07:00
|
|
|
/>
|
2023-09-19 16:36:40 +07:00
|
|
|
</template>
|