690329:2041 Fixing refactor Correspondence GPT-5.3-Codex #02
CI / CD Pipeline / build (push) Failing after 15m15s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-03-29 20:41:08 +07:00
parent 2c0fcc0ac9
commit 0a52bd830d
4 changed files with 897 additions and 3 deletions
@@ -60,12 +60,12 @@ export class CorrespondenceService {
* - RFA, RFI: Use alphabet starting with 'A' (A, B, C...)
* - Other types (LETTER, MEMO, etc.): Use numeric (null for first, then 1, 2, 3...)
*/
private getInitialRevisionLabel(typeCode: string): string | null {
private getInitialRevisionLabel(typeCode: string): string | undefined {
const alphabetTypes = ['RFA', 'RFI'];
if (alphabetTypes.includes(typeCode.toUpperCase())) {
return 'A'; // Alphabet for RFA, RFI
}
return null; // Numeric (null for revision 0)
return undefined; // Numeric (no label for revision 0)
}
constructor(