|
|
|
@ -43,4 +43,12 @@ public class SdRyHospitalController {
|
|
|
|
|
List<SdRyBloodReportVO> vos = sdBusinessService.getBloodView(inpatientNo, admissTimes);
|
|
|
|
|
return CommonResult.success(vos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation("根据病案主键,保存患者门诊交叉索引,门诊号")
|
|
|
|
|
@GetMapping("/trInpatientOutPatient")
|
|
|
|
|
public CommonResult<String> trInpatientOutPatient(@RequestParam("patientId") String patientId) {
|
|
|
|
|
log.info("顺德人医,根据病案主键,保存患者门诊交叉索引,门诊号,patientId:{}", patientId);
|
|
|
|
|
sdBusinessService.trInpatientOutPatient(patientId);
|
|
|
|
|
return CommonResult.success("完成");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|