async일시, guid 리턴하던것 원복, null 값으로.

This commit is contained in:
cho
2026-01-06 10:53:50 +09:00
parent c2e62ad3ec
commit e32fec635c
@@ -1360,16 +1360,7 @@ public class RequestProcessor extends RequestProcessorSupport {
}
}
else {
// 비동기 거래, S-A의 응답거래시에는 NULL을 리턴
//return null; // 원래 null return 인데 광주은행은 GUID를 Return 해 달라고 해서 수정함 jwhong
//map.put("guid", guid);
Map<String, String> map = new HashMap<>();
map.put("uuid", vo.getUuid());
JSONObject json = new JSONObject(map);
//return json.toJSONString();
return vo.getUuid();
return null;
}
}