|
@@ -6,7 +6,6 @@ import com.lantone.qc.pub.model.OutputInfo;
|
|
|
import com.lantone.qc.pub.model.doc.ClinicalBloodDoc;
|
|
|
import com.lantone.qc.pub.util.ListUtil;
|
|
|
import com.lantone.qc.pub.util.StringUtil;
|
|
|
-import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -29,16 +28,10 @@ public class CLI0571 extends QCCatalogue {
|
|
|
if (clinicalBloodDocs != null && clinicalBloodDocs.size() > 0) {
|
|
|
for (ClinicalBloodDoc cliB : clinicalBloodDocs) {
|
|
|
Map<String, String> cliBStructureMap = cliB.getStructureMap();
|
|
|
- //台州
|
|
|
- if (StringUtils.isNotEmpty(cliBStructureMap.get("Rh血型"))) {
|
|
|
- status.set("0");
|
|
|
- return;
|
|
|
- }
|
|
|
- //长兴
|
|
|
- if (cliBStructureMap.containsKey("输注种类、血型、数量")) {
|
|
|
- String bloodType = cliBStructureMap.get("输注种类、血型、数量");
|
|
|
+ if (cliBStructureMap.containsKey("病历内容")) {
|
|
|
+ String bloodType = cliBStructureMap.get("病历内容");
|
|
|
if (StringUtil.isNotBlank(bloodType)) {
|
|
|
- if (bloodType.contains("RH") || bloodType.contains("Rh")
|
|
|
+ if (bloodType.contains("Rh") || bloodType.contains("RH")
|
|
|
|| bloodType.contains("血蛋白")) {
|
|
|
status.set("0");
|
|
|
return;
|
|
@@ -47,6 +40,5 @@ public class CLI0571 extends QCCatalogue {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|