배포 오류 해결

This commit is contained in:
dohyeons
2025-12-11 14:34:42 +09:00
parent 4247c3bb70
commit 1d97bcaa9f
6 changed files with 220 additions and 71 deletions

View File

@@ -3596,7 +3596,7 @@ export class NodeFlowExecutionService {
// 계정 ID 우선순위: nodeAccountId > smtpConfigId > 첫 번째 활성 계정
let accountId = nodeAccountId || smtpConfigId;
if (!accountId) {
const accounts = await mailAccountFileService.getAccounts();
const accounts = await mailAccountFileService.getAllAccounts();
const activeAccount = accounts.find(
(acc: any) => acc.status === "active"
);
@@ -4216,7 +4216,7 @@ export class NodeFlowExecutionService {
return this.evaluateFunction(func, sourceRow, targetRow, resultValues);
case "condition":
return this.evaluateCondition(
return this.evaluateCaseCondition(
condition,
sourceRow,
targetRow,
@@ -4393,7 +4393,7 @@ export class NodeFlowExecutionService {
/**
* 조건 평가 (CASE WHEN ... THEN ... ELSE)
*/
private static evaluateCondition(
private static evaluateCaseCondition(
condition: any,
sourceRow: any,
targetRow: any,