|
|
|
@ -193,18 +193,19 @@ public class beHospitaledController {
|
|
|
|
|
String result1="";
|
|
|
|
|
String result2="";
|
|
|
|
|
String result3="";
|
|
|
|
|
if (c1.compareTo(doctorTime)<0){
|
|
|
|
|
result1="①检查文书有过修改,麻烦医生在电子病历系统重新提交医生文书";
|
|
|
|
|
}
|
|
|
|
|
if (c2.compareTo(nurseTime)<0){
|
|
|
|
|
result2="②检查文书有过修改,麻烦护士在电子病历系统重新提交护士文书";
|
|
|
|
|
}
|
|
|
|
|
if (c9.compareTo(lastTime)<0){
|
|
|
|
|
result3="③检查首页有过修改,麻烦医生在电子病历系统重新提交首页";
|
|
|
|
|
}
|
|
|
|
|
if (result1!="" ||result2!="" ||result3!="" ){
|
|
|
|
|
result=result1+result2+result3;
|
|
|
|
|
}
|
|
|
|
|
if (doctorTime!=null || nurseTime!=null || lastTime!=null ) {
|
|
|
|
|
if (c1.compareTo(doctorTime) < 0) {
|
|
|
|
|
result1 = "①检查文书有过修改,麻烦医生在电子病历系统重新提交医生文书";
|
|
|
|
|
}
|
|
|
|
|
if (c2.compareTo(nurseTime) < 0) {
|
|
|
|
|
result2 = "②检查文书有过修改,麻烦护士在电子病历系统重新提交护士文书";
|
|
|
|
|
}
|
|
|
|
|
if (c9.compareTo(lastTime) < 0) {
|
|
|
|
|
result3 = "③检查首页有过修改,麻烦医生在电子病历系统重新提交首页";
|
|
|
|
|
}
|
|
|
|
|
if (result1 != "" || result2 != "" || result3 != "") {
|
|
|
|
|
result = result1 + result2 + result3;
|
|
|
|
|
}
|
|
|
|
|
if (c1.compareTo(doctorTime)>=0 && c2.compareTo(nurseTime)>=0 && c9.compareTo(lastTime)>=0 ){
|
|
|
|
|
if(flagNum==0) {
|
|
|
|
|
try {
|
|
|
|
@ -270,6 +271,20 @@ public class beHospitaledController {
|
|
|
|
|
result = "提交失败,存在缺陷未处理!";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
if (doctorTime==null) {
|
|
|
|
|
result1 = "①文书提交时间为空,麻烦医生在电子病历系统重新提交医生文书";
|
|
|
|
|
}
|
|
|
|
|
if (nurseTime==null) {
|
|
|
|
|
result2 = "②文书提交时间为空,麻烦护士在电子病历系统重新提交护士文书";
|
|
|
|
|
}
|
|
|
|
|
if (lastTime==null) {
|
|
|
|
|
result3 = "③首页提交时间为空,麻烦医生在电子病历系统重新提交首页";
|
|
|
|
|
}
|
|
|
|
|
if (result1 != "" || result2 != "" || result3 != "") {
|
|
|
|
|
result = result1 + result2 + result3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|