690404:1139 Modify ADR
CI / CD Pipeline / build (push) Successful in 4m34s
CI / CD Pipeline / deploy (push) Successful in 7m33s

This commit is contained in:
2026-04-04 11:39:56 +07:00
parent d775d5ad85
commit c95e0f537e
87 changed files with 7046 additions and 422 deletions
+3 -2
View File
@@ -70,6 +70,7 @@ type RfaTypeOption = {
};
type CorrespondenceTypeOption = {
id: number; // Master data INT ID
publicId: string; // ADR-019: public identifier
typeCode?: string;
typeName?: string;
@@ -272,8 +273,8 @@ export function RFAForm() {
try {
const res = await correspondenceService.previewNumber({
projectId: selectedProjectId,
typeId: rfaCorrespondenceType.publicId,
disciplineId,
typeId: rfaCorrespondenceType.id,
disciplineId: Number(disciplineId || 0),
recipients: [{ organizationId: toOrganizationId, type: 'TO' }],
subject: watch('subject') || 'Preview Subject',
});