|
@@ -27,7 +27,7 @@ public class THR0144 extends QCCatalogue {
|
|
|
List<ThreeLevelWardDoc> threeLevelWardDocs = inputInfo.getThreeLevelWardDocs();
|
|
|
String lastWardCRoundRecord = "", lastWardRoundTitle = "";
|
|
|
Date lastWardCRoundDate = null;
|
|
|
- String wardRoundTime, wardCRoundRecord, WardRoundTitle;
|
|
|
+ String wardRoundTime, wardCRoundRecord, wardRoundTitle;
|
|
|
for (ThreeLevelWardDoc threeLevelWardDoc : threeLevelWardDocs) {
|
|
|
Map<String, String> threeLevelWardDocStructureMap = threeLevelWardDoc.getStructureMap();
|
|
|
if (StringUtil.isEmpty(threeLevelWardDocStructureMap.get("查房日期"))
|
|
@@ -36,12 +36,12 @@ public class THR0144 extends QCCatalogue {
|
|
|
}
|
|
|
wardRoundTime = threeLevelWardDocStructureMap.get("查房日期");
|
|
|
wardCRoundRecord = threeLevelWardDocStructureMap.get("病情记录");
|
|
|
- WardRoundTitle = threeLevelWardDocStructureMap.get("查房标题");
|
|
|
+ wardRoundTitle = threeLevelWardDocStructureMap.get("查房标题");
|
|
|
Date wardRoundDate = StringUtil.parseDateTime(wardRoundTime);
|
|
|
if (lastWardCRoundDate == null || (wardRoundDate != null && wardRoundDate.after(lastWardCRoundDate))) {
|
|
|
lastWardCRoundDate = wardRoundDate;
|
|
|
lastWardCRoundRecord = wardCRoundRecord;
|
|
|
- lastWardRoundTitle = WardRoundTitle;
|
|
|
+ lastWardRoundTitle = wardRoundTitle;
|
|
|
}
|
|
|
}
|
|
|
if (!lastWardCRoundRecord.contains("出院")
|