|
@@ -1,7 +1,6 @@
|
|
|
package com.lantone.qc.kernel.catalogue.threelevelward;
|
|
|
|
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
-import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
import com.lantone.qc.pub.Content;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
@@ -10,11 +9,7 @@ import com.lantone.qc.pub.model.label.ThreeLevelWardLabel;
|
|
|
import com.lantone.qc.pub.util.StringUtil;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* @ClassName : THR0135
|
|
@@ -29,7 +24,8 @@ public class THR0135 extends QCCatalogue {
|
|
|
if (inputInfo.getThreeLevelWardDocs().size() > 0) {
|
|
|
List<ThreeLevelWardDoc> threeLevelWardDocs = inputInfo.getThreeLevelWardDocs();
|
|
|
for (ThreeLevelWardDoc threeLevelWardDoc : threeLevelWardDocs) {
|
|
|
- if (StringUtil.isBlank(threeLevelWardDoc.getThreeLevelWardLabel().getTitle())
|
|
|
+ if (threeLevelWardDoc.getThreeLevelWardLabel() == null
|
|
|
+ || StringUtil.isBlank(threeLevelWardDoc.getThreeLevelWardLabel().getTitle())
|
|
|
|| !Content.director.equals(threeLevelWardDoc.getThreeLevelWardLabel().getTitle())) {
|
|
|
continue;
|
|
|
}
|