|
@@ -1,10 +1,10 @@
|
|
|
package com.lantone.qc.kernel.catalogue.firstpagerecord;
|
|
|
|
|
|
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;
|
|
|
+import com.lantone.qc.pub.util.StringUtil;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.Map;
|
|
@@ -21,7 +21,9 @@ public class FIRP0262 extends QCCatalogue {
|
|
|
status.set("0");
|
|
|
if (inputInfo.getFirstPageRecordDoc() != null && inputInfo.getFirstPageRecordDoc().getStructureMap() != null) {
|
|
|
Map<String, String> firstpageStructureMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
|
|
|
- if (CatalogueUtil.isEmpty(firstpageStructureMap.get(Content.ob_oa))){
|
|
|
+ String obOa = firstpageStructureMap.get(Content.ob_oa);
|
|
|
+ /* 台州运行质控病案首页未填时有默认值,希望之后his能直接处理掉默认值,设为空 */
|
|
|
+ if (StringUtil.isBlank(obOa) || "【】".equals(obOa)) {
|
|
|
status.set("-1");
|
|
|
}
|
|
|
}
|