|
@@ -63,6 +63,12 @@ public class PRE0328 extends QCCatalogue {
|
|
|
j++;
|
|
|
}
|
|
|
}
|
|
|
+ /* 如果入院时间-手术开始时间小于30分钟,则术前讨论、术前小结次数+1*/
|
|
|
+ if (emergencyOperation) {
|
|
|
+ if (j == 0) {
|
|
|
+ j++;
|
|
|
+ }
|
|
|
+ }
|
|
|
//医嘱中包含“冠状动脉造影术”,且无术前讨论.则报规则
|
|
|
for (DoctorAdviceDoc doctorAdviceDoc : doctorAdviceDocs) {
|
|
|
Map<String, String> doctorAdviceStructuerMap = doctorAdviceDoc.getStructureMap();
|
|
@@ -72,13 +78,6 @@ public class PRE0328 extends QCCatalogue {
|
|
|
info.set("手术记录不一致");
|
|
|
}
|
|
|
}
|
|
|
- /* 如果入院时间-手术开始时间小于30分钟,则术前讨论、术前小结次数+1*/
|
|
|
- if (emergencyOperation) {
|
|
|
- if (j == 0) {
|
|
|
- j++;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
if (i > 0 && i > j) {
|
|
|
status.set("-1");
|