|
@@ -11,7 +11,7 @@ import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* @ClassName : FIRP0225
|
|
|
- * @Description : 出院时间与出院记录时间不一致
|
|
|
+ * @Description : 出院时间与出院记录时间不一致,具体到天
|
|
|
* @Author : 胡敬
|
|
|
* @Date: 2020-03-14 17:10
|
|
|
*/
|
|
@@ -25,7 +25,7 @@ public class FIRP0225 extends QCCatalogue {
|
|
|
Map<String, String> leaveHospitalStructureMap = inputInfo.getLeaveHospitalDoc().getStructureMap();
|
|
|
String firstDischargeTime = firstpageStructureMap.get(Content.dischargeTime);//病案首页出院时间
|
|
|
String dischargeTime = leaveHospitalStructureMap.get(Content.dischargeTime);//出院小结出院时间
|
|
|
- if (!CatalogueUtil.equalsDate(firstDischargeTime, dischargeTime, "yyyy-MM-ddHH:mm")) {
|
|
|
+ if (!CatalogueUtil.equalsDate(firstDischargeTime, dischargeTime, "yyyy-MM-dd")) {
|
|
|
status.set("-1");
|
|
|
}
|
|
|
}
|