251209:1453 Frontend: progress nest = UAT & Bug Fixing
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-09 14:53:42 +07:00
parent 8aceced902
commit aa96cd90e3
125 changed files with 11052 additions and 785 deletions

View File

@@ -1,6 +1,6 @@
// File: src/types/dto/correspondence/submit-correspondence.dto.ts
export interface SubmitCorrespondenceDto {
/** ID ของ Routing Template ที่เลือกใช้ในการเดินเอกสาร */
templateId: number;
}
/** Optional note when submitting to workflow */
note?: string;
}

View File

@@ -19,7 +19,13 @@ export interface CreateTransmittalDto {
remarks?: string;
/** ID ของเอกสาร (Correspondence IDs) ที่จะแนบไปใน Transmittal นี้ */
itemIds: number[];
items: CreateTransmittalItemDto[];
}
export interface CreateTransmittalItemDto {
itemType: string;
itemId: number;
description?: string;
}
// --- Update (Partial) ---
@@ -40,4 +46,4 @@ export interface SearchTransmittalDto {
/** จำนวนต่อหน้า (Default: 20) */
pageSize?: number;
}
}