|
@@ -175,37 +175,37 @@ public class VerifyCaseFrontSheet {
|
|
|
if (StringUtil.isBlank(info.getAdmissDoctor())) {
|
|
|
sb.append("住院医师不能为空!");
|
|
|
}
|
|
|
- if (null == info.getQualityControlLevel()) {
|
|
|
+ if (StringUtil.isBlank(info.getQualityControlLevel())) {
|
|
|
sb.append("病案质量不能为空!");
|
|
|
}
|
|
|
- if (null == info.getZyDismissWay()) {
|
|
|
+ if (StringUtil.isBlank(info.getZyDismissWay())) {
|
|
|
sb.append("患者离院方式不能为空!");
|
|
|
}
|
|
|
- if (null == info.getAdmissAgainInOneMonth()) {
|
|
|
+ if (StringUtil.isBlank(info.getAdmissAgainInOneMonth())) {
|
|
|
sb.append("患者是否有出院31天内再住院计划不能为空!");
|
|
|
}
|
|
|
if (StringUtil.isBlank(info.getQualityControlDoctor())) {
|
|
|
sb.append("质控医生不能为空!");
|
|
|
}
|
|
|
- if (null == info.getCaseClassification()) {
|
|
|
+ if (StringUtil.isBlank(info.getCaseClassification())) {
|
|
|
sb.append("病例分型不能为空!");
|
|
|
}
|
|
|
- if (null == info.getHasIcu()) {
|
|
|
+ if (StringUtil.isBlank(info.getHasIcu())) {
|
|
|
sb.append("实施重症监护不能为空!");
|
|
|
}
|
|
|
- if (null == info.getMonopathyManagement()) {
|
|
|
+ if (StringUtil.isBlank(info.getMonopathyManagement())) {
|
|
|
sb.append("单病种管理不能为空!");
|
|
|
}
|
|
|
- if (null == info.getClinicalPathwayManagement()) {
|
|
|
+ if (StringUtil.isBlank(info.getClinicalPathwayManagement())) {
|
|
|
sb.append("实施临床路径管理不能为空!");
|
|
|
}
|
|
|
- if (null == info.getDrgsManagement()) {
|
|
|
+ if (StringUtil.isBlank(info.getDrgsManagement())) {
|
|
|
sb.append("DRGs管理不能为空!");
|
|
|
}
|
|
|
- if (null == info.getUseAntibiotic()) {
|
|
|
+ if (StringUtil.isBlank(info.getUseAntibiotic())) {
|
|
|
sb.append("抗生素使用不能为空!");
|
|
|
}
|
|
|
- if (null == info.getBacilliculture()) {
|
|
|
+ if (StringUtil.isBlank(info.getBacilliculture())) {
|
|
|
sb.append("细菌培养标本送检不能为空!");
|
|
|
}
|
|
|
if (zipCodeLengthWrong(info.getAddrZipCode())) {
|
|
@@ -240,7 +240,7 @@ public class VerifyCaseFrontSheet {
|
|
|
isNewBornInfoNull(info.getNewBornAdmissWeight())) {
|
|
|
sb.append("请填写新生儿信息!");
|
|
|
}
|
|
|
- if (null == info.getXxeApgar()) {
|
|
|
+ if (StringUtil.isBlank(info.getXxeApgar())) {
|
|
|
sb.append("新生儿Apgar评分不能为空!");
|
|
|
}
|
|
|
} else {
|
|
@@ -261,12 +261,12 @@ public class VerifyCaseFrontSheet {
|
|
|
}
|
|
|
}
|
|
|
if (StringUtil.notBlank(info.getHasSurgery()) && "0".equals(info.getHasSurgery()) && "0".equals(info.getDiagConform3())) {
|
|
|
- sb.append("无手术时,诊断符合情况中的术前与术后需要为’未做‘!");
|
|
|
+ sb.append("无手术时,诊断符合情况中的术前与术后需要为【未做】!");
|
|
|
}
|
|
|
if (StringUtil.notBlank(info.getHasSurgery())) {
|
|
|
if ("1".equals(info.getHasSurgery()) || "2".equals(info.getHasSurgery()) || "3".equals(info.getHasSurgery())) {
|
|
|
if ("0".equals(info.getDiagConform3())) {
|
|
|
- sb.append("有手术时,诊断符合情况中的术前与术后不可为’未做‘!");
|
|
|
+ sb.append("有手术时,诊断符合情况中的术前与术后不可为【未做】!");
|
|
|
}
|
|
|
}
|
|
|
}
|