|
@@ -658,6 +658,14 @@ public class IsvRegisterServiceImpl implements IsvRegisterService {
|
|
if (hospital != null) {
|
|
if (hospital != null) {
|
|
subHospital = String.format("%s(%s)", hospital.getHospitalName(), hospital.getAddress());
|
|
subHospital = String.format("%s(%s)", hospital.getHospitalName(), hospital.getAddress());
|
|
}
|
|
}
|
|
|
|
+ } else {
|
|
|
|
+ int hospitalId = item.getHospitalId();
|
|
|
|
+ if (hospitalId == ConstantDef.TAIHE_HOSPITAL_ID) {
|
|
|
|
+ Hospital hospital = systemSrv.getHospitalById(hospitalId);
|
|
|
|
+ if (hospital != null) {
|
|
|
|
+ subHospital = String.format("%s(%s)", hospital.getHospitalName(), hospital.getAddress());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
data.setSubHospital(subHospital);
|
|
data.setSubHospital(subHospital);
|
|
list.add(data);
|
|
list.add(data);
|