|
@@ -101,6 +101,7 @@ public class PRE03025 extends QCCatalogue {
|
|
|
*/
|
|
|
private int getOperationSum(List<OperationDoc> operationDocs) {
|
|
|
int num = 0;
|
|
|
+ List<String> dateStrList = new ArrayList<>();
|
|
|
for (OperationDoc operationDoc : operationDocs) {
|
|
|
OperationRecordDoc operationRecordDoc = operationDoc.getOperationRecordDoc();
|
|
|
if (operationRecordDoc == null) {
|
|
@@ -108,7 +109,7 @@ public class PRE03025 extends QCCatalogue {
|
|
|
}
|
|
|
Map<String, String> structureMap = operationRecordDoc.getStructureMap();
|
|
|
String dateStr = structureMap.get("手术日期");
|
|
|
- List<String> dateStrList = new ArrayList<>();
|
|
|
+
|
|
|
if (StringUtil.isNotBlank(dateStr)) {
|
|
|
if (!dateStrList.contains(dateStr)) {
|
|
|
dateStrList.add(dateStr);
|