feat: NICE CI 인증톡 진행 - sendBulk 반영

dev
Jonguk. Lim 1 month ago
parent 542eddf511
commit dd5b4d26b1

@ -106,10 +106,25 @@ public class NiceCiSendBulkService {
log.info(responseVO.toString());
return responseVO;
}
} catch (Exception e) {
xit.setPrcsCd(IupPrcsCd.IPCP.getCode());
niceCiMapper.updatePrcsCdOfInputXit(xit);
// FIXME: API 호출 에러
} catch (EnsException e) {
if(EnsErrCd.API_COMM_ERROR.equals(e.getErrCd())){
xit.setPrcsCd(IupPrcsCd.FAIL.getCode());
niceCiMapper.updatePrcsCdOfInputXit(xit);
}
} catch (Exception e){
xit.setPrcsCd(IupPrcsCd.FAIL.getCode());
niceCiMapper.updatePrcsCdOfInputXit(xit);
}
}
return null;
return EnsResponseVO.okBuilder()
//.resultInfo(niceCiMapper.selectAcceptTgts(null))
.build();
}
/**

Loading…
Cancel
Save