+
อัปโหลดไฟล์
@@ -444,7 +480,7 @@ async function onClickDowloadFile(
ดูไฟล์เอกสาร
-
+
-
+
อัปโหลดไฟล์
@@ -469,6 +505,83 @@ async function onClickDowloadFile(
+
+
+
+
+
+ เลือกผู้เซ็นเอกสาร
+
+
+
+
+
+
+
+ ผู้บังคับบัญชาชั้นต้น
+
+
+
+
+
+
+
+
+
+
+
+ ผู้บังคับบัญชาเหนือขึ้นไป 1 ระดับ
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/modules/06_evaluate/interface/evalute.ts b/src/modules/06_evaluate/interface/evalute.ts
new file mode 100644
index 0000000..60f9e8e
--- /dev/null
+++ b/src/modules/06_evaluate/interface/evalute.ts
@@ -0,0 +1,17 @@
+interface FormCommand {
+ elementaryFullName: string;
+ elementaryPosition: string;
+ abovelevelFullname: string;
+ abovelevelPosition: string;
+}
+
+interface FormCommandRef {
+ elementaryFullName: object | null;
+ elementaryPosition: object | null;
+ abovelevelFullname: object | null;
+ abovelevelPosition: object | null;
+
+ [key: string]: any;
+}
+
+export type { FormCommand, FormCommandRef };