Install 작업 분기문 버그 수정

This commit is contained in:
Hyojin Ahn 2026-06-17 08:15:32 -04:00
parent c64d9b62ea
commit 506440bc2e
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ public class CustomerDailyOrderService {
// 2. MIS -> externalId (문자열 email or id) // 2. MIS -> externalId (문자열 email or id)
if (dto.getCdoExternalDriverId() != null) { if (dto.getCdoExternalDriverId() != null) {
Map<String, Object> body = null; Map<String, Object> body = null;
if (dto.getCdoJobType() == "INSTALL") { if ("INSTALL".equals(dto.getCdoJobType())) {
body = hcmEmployeeClient.getEmpFromExternalId( "MIS_MEMBER", dto.getCdoExternalCreatedBy() ); body = hcmEmployeeClient.getEmpFromExternalId( "MIS_MEMBER", dto.getCdoExternalCreatedBy() );
} else { } else {
body = hcmEmployeeClient.getEmpFromExternalId( "MIS_DRIVER", dto.getCdoExternalDriverId() ); body = hcmEmployeeClient.getEmpFromExternalId( "MIS_DRIVER", dto.getCdoExternalDriverId() );