|
@@ -2050,16 +2050,14 @@ public class SetlListUpldService {
|
|
|
BeanUtil.copyProperties(setlinfo5, setlinfo1, CopyOptions.create().setIgnoreNullValue(true));
|
|
|
DrgGroupTestVO drgGroupTestVO = createDrgGroupTestVO(param, setlinfo1);
|
|
|
log.info("调用诊断辅助入参:{}", JSON.toJSONString(drgGroupTestVO));
|
|
|
- String url = "http://172.16.32.126:8080";
|
|
|
try {
|
|
|
- String result = drgWebApi.localHelpDrgDagns(drgGroupTestVO);
|
|
|
- log.info("调用诊断辅助返回结果:{}", result);
|
|
|
- url += result;
|
|
|
+ ResultVo<String> res = drgWebApi.getDrgIntelligentGrouping(JSON.parseObject(JSON.toJSONString(drgGroupTestVO)));
|
|
|
+ log.info("调用诊断辅助返回结果:{}", res);
|
|
|
+ return res;
|
|
|
} catch (Exception e) {
|
|
|
log.error("调用诊断辅助填报接口报错", e);
|
|
|
throw new BizException(ExceptionEnum.LOGICAL_ERROR, "调用诊断辅助填报接口报错");
|
|
|
}
|
|
|
- return ResultVoUtil.success(ExceptionEnum.SUCCESS, ExceptionEnum.SUCCESS.getMessage(), url);
|
|
|
}
|
|
|
|
|
|
private DrgGroupTestVO createDrgGroupTestVO(ZyInactpatient param, SetlinfoUpld setlinfoUpld) {
|