diff --git a/src/modules/04_registry/components/TableProfile.vue b/src/modules/04_registry/components/TableProfile.vue index 0b7cb8a80..0e722ed28 100644 --- a/src/modules/04_registry/components/TableProfile.vue +++ b/src/modules/04_registry/components/TableProfile.vue @@ -304,6 +304,77 @@ class="col-3" /> +
+ + + + + + + +
{ @@ -508,6 +585,15 @@ const updateEmployeeLevel = (value: string | number | null) => { const updatePosNo = (value: string | number | null) => { emit("update:posNo", value); }; +const updateReportYear = (value: string | number | null) => { + emit("update:reportYear", value); +}; +const updateReportNo = (value: string | number | null) => { + emit("update:reportNo", value); +}; +const updateReportType = (value: string | number | null) => { + emit("update:reportType", value); +}; // const updateProfileType = (value: string | number | null) => { // emit("update:profileType", value); // }; @@ -515,6 +601,9 @@ const updatePosNo = (value: string | number | null) => { const clearDate = () => { emit("update:retireYear", null); }; +const clearReportDate = () => { + emit("update:reportYear", null); +}; const clickSearchPanel = () => { emit("update:retireYear", null);