260318:1237 Fix UUID #4
Build and Deploy / deploy (push) Successful in 11m17s

This commit is contained in:
admin
2026-03-18 12:37:29 +07:00
parent 5d89079c2a
commit ba642e7e42
71 changed files with 533 additions and 319 deletions
+3 -2
View File
@@ -10,7 +10,7 @@ import apiClient from '@/lib/api/client';
*/
export interface NumberingTemplate {
id: number;
projectId: number;
projectId: number | string;
correspondenceTypeId: number | null; // null = Default Format for project
correspondenceType?: {
id: number;
@@ -18,9 +18,10 @@ export interface NumberingTemplate {
typeName: string;
} | null;
project?: {
id: number;
id: number | string;
projectCode: string;
projectName: string;
uuid?: string;
};
formatTemplate: string;
description?: string;