|
@@ -36,8 +36,8 @@ public class THR0126 extends QCCatalogue {
|
|
|
if (inputInfo.getLeaveHospitalDoc() != null && inputInfo.getLeaveHospitalDoc().getStructureMap() != null
|
|
|
&& inputInfo.getThreeLevelWardDocs().size() > 0) {
|
|
|
Map<String, String> getLeaveHospitalStructureMap = inputInfo.getLeaveHospitalDoc().getStructureMap();
|
|
|
- String admisTime = getLeaveHospitalStructureMap.get(Content.admisTime);
|
|
|
- String dischargeTime = getLeaveHospitalStructureMap.get(Content.dischargeTime);
|
|
|
+ String admisTime = getLeaveHospitalStructureMap.get("入院日期");
|
|
|
+ String dischargeTime = getLeaveHospitalStructureMap.get("出院日期");
|
|
|
if (CatalogueUtil.isEmpty(admisTime)) {
|
|
|
status.set("0");
|
|
|
return;
|
|
@@ -101,7 +101,7 @@ public class THR0126 extends QCCatalogue {
|
|
|
|
|
|
private String getFirstCourseProfessor(FirstCourseRecordDoc firstCourseRecordDoc) {
|
|
|
String professor = "";
|
|
|
- String doctorSign = firstCourseRecordDoc.getStructureMap().get("记录医师");
|
|
|
+ String doctorSign = firstCourseRecordDoc.getStructureMap().get("医生签名");
|
|
|
if (StringUtil.isBlank(doctorSign)) {
|
|
|
return professor;
|
|
|
}
|