|
|
|
@ -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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|