获取次数问题

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 * @param patientSn id
* @return * @return
*/ */
private static Integer getAdmissTimes(String visitSn, String patientSn) { private static Integer getAdmissTimes(String visitSn, String patientSn) {
patientSn = patientSn.replace("m", "").replace("z", ""); String[] split = visitSn.split("_");
String admissTimesStr = visitSn.replace(patientSn, ""); return Integer.valueOf(split[1]);
return Integer.valueOf(admissTimesStr);
} }
private List<ReportDto> parseQuerySdRyInspectReport(String respBody, TBasic tBasic, AtomicInteger reportTotalCount) { private List<ReportDto> parseQuerySdRyInspectReport(String respBody, TBasic tBasic, AtomicInteger reportTotalCount) {

Loading…
Cancel
Save