어뎁터 없을때 상세조회 되도록 변경
eapim-admin CI / build (push) Waiting to run

This commit is contained in:
eastargh
2026-07-20 10:53:33 +09:00
parent 70c2ac8376
commit 545e09891b
@@ -37,10 +37,12 @@ public class InboundErrorInfoManService extends BaseService {
InboundErrorInfoUI ui = inboundErrorInfoUIMapper.toVo(inboundErrorInfoService.getById(eaiSvcSerno));
adapterGroupService.findById(ui.getAdptrBzwkGroupName()).ifPresent(a -> {
ui.setAdptrMsgDstcd(a.getAdptrmsgdstcd());
ui.setAdptrMsgPtrncd(a.getAdptrmsgptrncd());
});
if (ui.getAdptrBzwkGroupName() != null) {
adapterGroupService.findById(ui.getAdptrBzwkGroupName()).ifPresent(a -> {
ui.setAdptrMsgDstcd(a.getAdptrmsgdstcd());
ui.setAdptrMsgPtrncd(a.getAdptrmsgptrncd());
});
}
return ui;
}