|
@@ -59,7 +59,7 @@ public class FIRP0195 extends QCCatalogue {
|
|
|
String conditionRecord = structureMap.get("病情记录");
|
|
|
String treatmentPlan = structureMap.get("治疗计划和措施");
|
|
|
String title = structureMap.get("查房标题");
|
|
|
- if (title.contains("病理报告")) {
|
|
|
+ if (title != null && title.contains("病理报告")) {
|
|
|
continue;
|
|
|
}
|
|
|
conditionRecord = StringUtil.isBlank(conditionRecord) ? "" : conditionRecord;
|