|
@@ -61,7 +61,11 @@ public class ModuleMappingUtil {
|
|
|
if (behospitalInfo != null) {
|
|
|
String behDeptId = behospitalInfo.getBehDeptId();
|
|
|
if (StringUtil.isNotBlank(behDeptId)) {
|
|
|
- return getHtmlDataTypeModuleId(modeId + "-" + behDeptId);
|
|
|
+ String ret = getHtmlDataTypeModuleId(modeId + "-" + behDeptId + "-" + behospitalInfo.getSex());
|
|
|
+ if (StringUtil.isBlank(ret)) {
|
|
|
+ return getHtmlDataTypeModuleId(modeId + "-" + behDeptId);
|
|
|
+ }
|
|
|
+ return ret;
|
|
|
}
|
|
|
}
|
|
|
return null;
|