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

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)); InboundErrorInfoUI ui = inboundErrorInfoUIMapper.toVo(inboundErrorInfoService.getById(eaiSvcSerno));
if (ui.getAdptrBzwkGroupName() != null) {
adapterGroupService.findById(ui.getAdptrBzwkGroupName()).ifPresent(a -> { adapterGroupService.findById(ui.getAdptrBzwkGroupName()).ifPresent(a -> {
ui.setAdptrMsgDstcd(a.getAdptrmsgdstcd()); ui.setAdptrMsgDstcd(a.getAdptrmsgdstcd());
ui.setAdptrMsgPtrncd(a.getAdptrmsgptrncd()); ui.setAdptrMsgPtrncd(a.getAdptrmsgptrncd());
}); });
}
return ui; return ui;
} }