|
@@ -40,8 +40,14 @@ public class PRE03025 extends QCCatalogue {
|
|
|
&& inputInfo.getBeHospitalizedDoc().getStructureMap().get("现病史").matches(".*急诊.*术.*|.*急症.*术.*")) {
|
|
|
return;
|
|
|
}
|
|
|
+ //判断首程里是否有急诊
|
|
|
boolean emergencyOperation = findEmergencyOperation(inputInfo);
|
|
|
+
|
|
|
boolean emergencyOperationFromWardRecord = findEmergencyOperationFromWardRecord(inputInfo);
|
|
|
+ if(emergencyOperation || emergencyOperationFromWardRecord){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
int i = getOperationSum(operationDocs); // 获取手术记录次数
|
|
|
int j = 0; // 获取术前讨论、术前小结次数
|