获取次数问题

3.2.4.44
wyb 2 years ago
parent 88f815092c
commit 00bcb7c50a

@ -512,16 +512,15 @@ public class ReportJob {
}
/**
*
*
* @param visitSn id12+
*
* @param visitSn _
* @param patientSn id
* @return
*/
private static Integer getAdmissTimes(String visitSn, String patientSn) {
patientSn = patientSn.replace("m", "").replace("z", "");
String admissTimesStr = visitSn.replace(patientSn, "");
return Integer.valueOf(admissTimesStr);
String[] split = visitSn.split("_");
return Integer.valueOf(split[1]);
}
private List<ReportDto> parseQuerySdRyInspectReport(String respBody, TBasic tBasic, AtomicInteger reportTotalCount) {

Loading…
Cancel
Save