-
- เพิ่มข้อมูล
-
diff --git a/src/modules/18_command/interface/request/Main.ts b/src/modules/18_command/interface/request/Main.ts
index 647d2a5d5..d3078342c 100644
--- a/src/modules/18_command/interface/request/Main.ts
+++ b/src/modules/18_command/interface/request/Main.ts
@@ -12,13 +12,18 @@ interface FormCommand {
}
interface FormDataDetail {
+ id: string;
+ status: string;
commandNo: string;
commandYear: number | null;
- // commandName: string;
detailHeader: string;
detailBody: string;
detailFooter: string;
issue: string | null;
+ commandAffectDate: Date | null;
+ commandExcecuteDate: Date | null;
+ commandSysId: string;
+ commandTypeName: string;
}
export type { FormQuery, FormCommand, FormDataDetail };
diff --git a/src/modules/18_command/views/detail.vue b/src/modules/18_command/views/detail.vue
index cfccd57a6..9bfbc06d0 100644
--- a/src/modules/18_command/views/detail.vue
+++ b/src/modules/18_command/views/detail.vue
@@ -1,10 +1,15 @@
@@ -134,6 +192,8 @@ onMounted(() => {
ref="childDetailRef"
v-model:is-change-data="isChangeData"
:on-check-change-data="onCheckChangeData"
+ :fetch-data-command-list="fetchDataCommandList"
+ :form-command-list="formCommandList"
/>
@@ -144,6 +204,8 @@ onMounted(() => {
ref="childListPersonsRef"
v-model:is-change-data="isChangeData"
:on-check-change-data="onCheckChangeData"
+ :form-command-list="formCommandList"
+ :fetch-data-command-list="fetchDataCommandList"
/>