|
@@ -52,7 +52,10 @@ public class OPE0587 extends QCCatalogue {
|
|
|
List<String> operDateList = new ArrayList<>();
|
|
|
for (OperationDoc opera : operationDocs) {
|
|
|
OperationRecordDoc operationRecordDoc = opera.getOperationRecordDoc();
|
|
|
- String operDate = operationRecordDoc.getStructureMap().get("手术日期");
|
|
|
+ if(operationRecordDoc==null){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ String operDate = operationRecordDoc.getStructureMap().get("手术日期")==null?null:operationRecordDoc.getStructureMap().get("手术日期");
|
|
|
if (StringUtil.isNotBlank(operDate)) {
|
|
|
operDateList.add(operDate);
|
|
|
}
|