@ -2653,7 +2653,7 @@
data: {cmtDoctor: doctorFlag, id: id, lockinfo: lockinfo, content: content, isscaned: isScanedChk},
success: function (result) {
$("#doctorModal").modal('hide');
if (result.indexOf("成功")) {
if (result.indexOf("成功")!=-1 ) {
$("#table").bootstrapTable("refresh");
toastr.success("归档医生提交成功!");
} else {
@ -2661,6 +2661,7 @@
}
}
});
$("input[name='isScanedChk']").prop("checked",false);
}else{
//如果缺失病案首页或入院记录则无法强制提交
if (lockinfo.indexOf("病案首页") != -1 || lockinfo.indexOf("入院记录") != -1) {
@ -2706,14 +2707,15 @@
data: {cmtNurse: nursFlag, id: id, lockinfo: lockinfo, content: content, isscaned: isScanedChk2},
success: function (result) {
$("#nursModal").modal('hide');
if (result.indexOf("成功")) {
if (result.indexOf("成功")!=-1 ) {
$("#table").bootstrapTable("refresh");
toastr.success("归档护士提交成功!");
} else {
toastr.error("归档护士提交失败!" );
toastr.error(result );
}
}
});
$("input[name='isScanedChk2']").prop("checked",false);
}else{
$("#flagStaff").val(1);
//弹窗提示是否强制性
@ -2773,6 +2775,8 @@
}
}
});
$("input[name='isScanedChk']").prop("checked",false);
$("input[name='isScanedChk2']").prop("checked",false);
});
$("#wzSaveBtn").on('click', function () {