251211:1622 Frontend: refactor Dashboard (not finish)
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled

This commit is contained in:
admin
2025-12-11 16:22:50 +07:00
parent 3fa28bd14f
commit 2473c4c474
32 changed files with 1115 additions and 260 deletions

View File

@@ -5,8 +5,9 @@ export interface SearchCorrespondenceDto {
typeId?: number; // กรองตามประเภทเอกสาร
projectId?: number; // กรองตามโครงการ
statusId?: number; // กรองตามสถานะ (จาก Revision ปัจจุบัน)
revisionStatus?: 'CURRENT' | 'ALL' | 'OLD'; // กรองตามสถานะ Revision
// เพิ่มเติมสำหรับการแบ่งหน้า (Pagination)
page?: number;
limit?: number;
}
}

View File

@@ -52,4 +52,7 @@ export interface SearchRfaDto {
/** จำนวนต่อหน้า (Default: 20) */
pageSize?: number;
/** Revision Status Filter */
revisionStatus?: 'CURRENT' | 'ALL' | 'OLD';
}