导出名字错误

master
hujl 3 years ago
parent 6c07caeb1d
commit 39000d628b

@ -193,7 +193,7 @@ public class beHospitaledController {
//校验完整性
@ResponseBody
@RequestMapping(value = "/checkSuccess")
private String checkSuccessMethod(String archiveDetailId){
private String checkSuccessMethod(String archiveDetailId,String refreshFlag){
String result = "";
/*Archive_Master archiveMaster = archiveMasterService.selectByPrimaryKey(archiveDetailId);
result = archiveMaster.getLockinfo();*/
@ -203,7 +203,7 @@ public class beHospitaledController {
Client client = null;
try {
client = factory.createClient(endpoint);
Object[] res = client.invoke(method, archiveDetailId);
Object[] res = client.invoke(method, archiveDetailId,refreshFlag);
result = (String) res[0];
//更新master表完整性字段
if(StringUtils.isNotBlank(result)){

@ -29,6 +29,7 @@ public interface Archive_MasterMapper {
int updateByClo(Archive_Master record);
int updateByClo2(Archive_Master record);
int updateById(Archive_Master record);
List<DoctorStatistics> getDoctorFileInfo(@Param("deptCode")String deptCode,@Param("doctor")String doctor,@Param("startTime")String startTime,@Param("endTime")String endTime);
@ -100,5 +101,5 @@ public interface Archive_MasterMapper {
int insertCommonlyUsed(CommomVo commomVo);
List<Archive_Master> selectCommonlyUsed(Archive_Master record);
List<Archive_Master> selectCommonlyUsed(@Param("patientIds")String patientIds);
}

@ -83,6 +83,14 @@ public interface Archive_MasterService {
*/
int updateByClo(Archive_Master record);
/**
*
* @param record
* @return
*/
int updateByClo2(Archive_Master record);
/**
* id
* @param record

@ -726,6 +726,10 @@ public class Archive_MasterServiceImpl implements Archive_MasterService {
public int updateByClo(Archive_Master record) {
return archiveMasterMapper.updateByClo(record);
}
@Override
public int updateByClo2(Archive_Master record) {
return archiveMasterMapper.updateByClo2(record);
}
@Override
public int updateById(Archive_Master record) {
@ -1189,53 +1193,61 @@ public class Archive_MasterServiceImpl implements Archive_MasterService {
String username = (String) SecurityUtils.getSubject().getSession().getAttribute("userSession");//获取前面登录的用户名
SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String ids = master.getId();
String patientId = master.getPatientId();
String[] idList = ids.split(",");
if (patientId.length()<10){
patientId="'"+patientId+"'";
}
List<ArchiveFlowRole> archiveFlowRoles = flowRoleMapper.selectAll();
List<Archive_Master> archive_masterVos = archive_masterMapper.selectCommonlyUsed(master);
List<Archive_Master> archive_masterVos = archive_masterMapper.selectCommonlyUsed(patientId);
if(CollectionUtils.isEmpty(archive_masterVos)){
return;
}
Archive_Master archive_master_vos = archive_masterVos.get(0);
CommomVo commomVo=new CommomVo();
commomVo.setPatientId(archive_master_vos.getId());
commomVo.setAdmissTimes(archive_master_vos.getVisitId());
commomVo.setAdmissId(archive_master_vos.getInpNo());
commomVo.setInpatientNo(archive_master_vos.getInpNo());
commomVo.setName(archive_master_vos.getName());
commomVo.setCheckedDatetime(format1.format(new Date()));
commomVo.setSex(archive_master_vos.getSex());
commomVo.setAdmissId(archive_master_vos.getId());
String subAssort = archive_master_vos.getSubAssort();
int index = subAssort.indexOf("岁");
String before = subAssort.substring(0,index);
commomVo.setAge(before);
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date1=null;
Date date2=null;
String dischargeDateTime = archive_master_vos.getDischargeDateTime();
String admissionDateTime = archive_master_vos.getAdmissionDateTime();
try {
date1=format.parse(dischargeDateTime);
date2=format.parse(admissionDateTime);
} catch (ParseException e) {
e.printStackTrace();
for (int a=0;archive_masterVos.size()>a;a++){
commomVo.setPatientId(archive_masterVos.get(a).getId());
String patientId1 = commomVo.getPatientId();
System.out.println("patientId1::::"+patientId1);
commomVo.setAdmissTimes(archive_masterVos.get(a).getVisitId());
commomVo.setAdmissId(archive_masterVos.get(a).getInpNo());
commomVo.setInpatientNo(archive_masterVos.get(a).getInpNo());
commomVo.setName(archive_masterVos.get(a).getName());
commomVo.setCheckedDatetime(format1.format(new Date()));
commomVo.setSex(archive_masterVos.get(a).getSex());
commomVo.setAdmissId(archive_masterVos.get(a).getId());
String subAssort = archive_masterVos.get(a).getSubAssort();
int index = subAssort.indexOf("岁");
String before = subAssort.substring(0,index);
commomVo.setAge(before);
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date1=null;
Date date2=null;
String dischargeDateTime = archive_masterVos.get(a).getDischargeDateTime();
String admissionDateTime = archive_masterVos.get(a).getAdmissionDateTime();
try {
date1=format.parse(dischargeDateTime);
date2=format.parse(admissionDateTime);
} catch (ParseException e) {
e.printStackTrace();
}
Calendar ca1 = Calendar.getInstance();
Calendar ca2 = Calendar.getInstance();
ca1.setTime(date1);
ca2.setTime(date2);
long distanceMin =( ca1.getTimeInMillis()- ca2.getTimeInMillis())/(1000*60*60*24);
int i2= (int)distanceMin;
commomVo.setAdmissDays(i2);
int i = Integer.parseInt(before);
int i1 = i * 12;
String s = String.valueOf(i1);
commomVo.setAgeMonth(s);
commomVo.setAdmissDate(archive_masterVos.get(a).getAdmissionDateTime());
commomVo.setDisDate(archive_masterVos.get(a).getDischargeDateTime());
commomVo.setDisDept(archive_masterVos.get(a).getDeptName1());
commomVo.setAttending(archive_masterVos.get(a).getDoctorInCharge());
archive_masterMapper.insertCommonlyUsed(commomVo);
}
Calendar ca1 = Calendar.getInstance();
Calendar ca2 = Calendar.getInstance();
ca1.setTime(date1);
ca2.setTime(date2);
long distanceMin =( ca1.getTimeInMillis()- ca2.getTimeInMillis())/(1000*60*60*24);
int i2= (int)distanceMin;
commomVo.setAdmissDays(i2);
int i = Integer.parseInt(before);
int i1 = i * 12;
String s = String.valueOf(i1);
commomVo.setAgeMonth(s);
commomVo.setAdmissDate(archive_master_vos.getAdmissionDateTime());
commomVo.setDisDate(archive_master_vos.getDischargeDateTime());
commomVo.setDisDept(archive_master_vos.getDeptName1());
commomVo.setAttending(archive_master_vos.getDoctorInCharge());
archive_masterMapper.insertCommonlyUsed(commomVo);
for(String id : idList) {
if(StringUtils.isNotBlank(id)) {
//修改病案归档状态
@ -1259,7 +1271,7 @@ public class Archive_MasterServiceImpl implements Archive_MasterService {
//设为已归档状态
archiveMaster.setArchivestate(EnumVerify.DocState.MedicalRoomCheck.getCode() + "");
//更新
updateByClo(archiveMaster);
updateByClo2(archiveMaster);
//当前节点两种可能病案室审核和已召回
//是已召回将当前节点code置为病案室审核
String currentStatus = EnumVerify.DocState.MedicalRoomCheck.getCode() + "";

@ -711,7 +711,7 @@
CASE
WHEN T1 IS NOT NULL
AND YEAR ( T1 ) != '1801' THEN
'已签收' ELSE '未签收'
'已' ELSE '未'
END remark,
CASE
WHEN jzh IS NOT NULL THEN
@ -781,6 +781,16 @@
<if test="visitId != null and visitId != ''">
and m.visit_id=#{visitId,jdbcType=NCHAR}
</if>
<if test="isSuccess != null and isSuccess != ''">
<choose>
<when test="isSuccess == 1">
and m.LockInfo = '完整'
</when>
<otherwise>
and m.LockInfo != '完整'
</otherwise>
</choose>
</if>
<if test="name != null and name != ''">
and m.name like '%'+#{name,jdbcType=NCHAR}+'%'
</if>
@ -1384,6 +1394,76 @@
</set>
where id = #{id,jdbcType=NVARCHAR}
</update>
<update id="updateByClo2" parameterType="com.emr.entity.Archive_Master">
update archive_master
<set>
<if test="inpNo != null">
inp_no = #{inpNo,jdbcType=NVARCHAR},
</if>
<if test="visitId != null">
visit_id = #{visitId,jdbcType=NVARCHAR},
</if>
<if test="name != null">
name = #{name,jdbcType=NVARCHAR},
</if>
<if test="sex != null">
sex = #{sex,jdbcType=NVARCHAR},
</if>
<if test="deptName != null">
dept_name = #{deptName,jdbcType=NVARCHAR},
</if>
<if test="dischargeDateTime != null">
discharge_date_time = #{dischargeDateTime,jdbcType=NVARCHAR},
</if>
<if test="archivestate != null">
ArchiveState = #{archivestate,jdbcType=NVARCHAR},
</if>
<if test="admissionDateTime != null">
admission_date_time = #{admissionDateTime,jdbcType=NVARCHAR},
</if>
<if test="deptAdmissionTo != null">
dept_admission_to = #{deptAdmissionTo,jdbcType=NVARCHAR},
</if>
<if test="checkDoctor != null">
check_doctor = #{checkDoctor,jdbcType=NVARCHAR},
</if>
<if test="checkDatetime != null">
check_datetime = #{checkDatetime,jdbcType=NVARCHAR},
</if>
<if test="checkedDoctor != null">
checked_doctor = #{checkedDoctor,jdbcType=NVARCHAR},
</if>
<if test="checkedDatetime != null">
checked_datetime = #{checkedDatetime,jdbcType=NVARCHAR},
</if>
<if test="lockinfo != null">
LockInfo = #{lockinfo,jdbcType=NVARCHAR},
</if>
<if test="doctorInCharge != null">
DOCTOR_IN_CHARGE = #{doctorInCharge,jdbcType=NVARCHAR},
</if>
<if test="idNo != null">
ID_NO = #{idNo,jdbcType=NVARCHAR},
</if>
<if test="dischargeDisposition != null">
DISCHARGE_DISPOSITION = #{dischargeDisposition,jdbcType=NVARCHAR},
</if>
<if test="deptCodeLend != null">
dept_code_lend = #{deptCodeLend,jdbcType=NVARCHAR},
</if>
<if test="returntoRole != null">
returnto_role = #{returntoRole,jdbcType=NVARCHAR},
</if>
<if test="returnOperUsername != null">
return_oper_username = #{returnOperUsername,jdbcType=NVARCHAR},
</if>
<if test="changeReason != null">
change_reason = #{changeReason,jdbcType=NVARCHAR},
</if>
</set>
where id = #{id,jdbcType=NVARCHAR}
</update>
<update id="updateById" parameterType="com.emr.entity.Archive_Master">
update archive_master
set patient_id = #{patientId,jdbcType=NVARCHAR},
@ -1691,7 +1771,7 @@
select *,emr_dictionary.Name as deptName1 from archive_master
LEFT JOIN emr_dictionary ON archive_master.dept_name = emr_dictionary. CODE
AND emr_dictionary.parent_id = 'dept_code'
where patient_id=#{patientId}
where patient_id in (${patientIds})
</select>
<sql id="selectBabyIdWithScanSql">
SELECT

@ -43,7 +43,7 @@
t5.Num - ISNULL(t4.deathNum, 0)
) AS FLOAT
) / (
t2.fileNum - ISNULL(t4.deathNum, 0)
t1.outNum-ISNULL(t4.deathNum, 0) - ISNULL(t4.deathNum, 0)
),
2
)
@ -58,7 +58,7 @@
t6.Num - ISNULL(t4.deathNum, 0)
) AS FLOAT
) / (
t2.fileNum - ISNULL(t4.deathNum, 0)
t1.outNum-ISNULL(t4.deathNum, 0) - ISNULL(t4.deathNum, 0)
),
2
)
@ -68,7 +68,7 @@
0
ELSE
ROUND(
CAST(t7.Num AS FLOAT) / (t2.fileNum),
CAST(t7.Num AS FLOAT) / (t1.outNum),
2
)
END day7Rate
@ -88,7 +88,7 @@
</when>
</choose>
group by dept_name) as t1 on c.dept_name= t1.dept_name
left join (select dept_name,COUNT(*) AS fileNum from archive_master as s where (s.ArchiveState = '128' OR (s.ArchiveState = '64' and s.T1 is not null and s.T1 != '' and s.T1 >= '1801-02-04 00:00:00')) and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D'
left join (select dept_name,COUNT(*) AS fileNum from archive_master as s where (s.ArchiveState = '128' OR (s.ArchiveState = '64' and s.T1 is not null and s.T1 != '' and s.T1 >= '1801-02-04 00:00:00')) and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D' and s.ArchiveState='128'
<choose>
<when test="startDate != null and startDate != '' and endDate != null and endDate != ''">
and discharge_date_time between CONVERT(VARCHAR(10),#{startDate,jdbcType=NCHAR},120) and
@ -102,7 +102,7 @@
</when>
</choose>
group by dept_name) as t2 on c.dept_name= t2.dept_name
left join (select dept_name,COUNT(*) AS deathNum from archive_master as s where s.DISCHARGE_DISPOSITION=5 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D'
left join (select dept_name,COUNT(*) AS deathNum from archive_master as s where s.DISCHARGE_DISPOSITION=5 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D' and s.ArchiveState='128'
<choose>
<when test="startDate != null and startDate != '' and endDate != null and endDate != ''">
and discharge_date_time between CONVERT(VARCHAR(10),#{startDate,jdbcType=NCHAR},120) and
@ -116,7 +116,7 @@
</when>
</choose>
group by dept_name) as t4 on c.dept_name= t4.dept_name
left join (select dept_name,COUNT(*) AS Num from archive_master as s where s.ArchiveState = '128' and ( datediff( d, discharge_date_time, checked_datetime ) - ( SELECT COUNT(1) FROM emr_holiday_set WHERE date BETWEEN CONVERT ( VARCHAR (10), discharge_date_time, 120 ) AND checked_datetime AND flag = 2 )) &lt;= 2 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D'
left join (select dept_name,COUNT(*) AS Num from archive_master as s where s.ArchiveState = '128' and ( datediff( d, discharge_date_time, checked_datetime ) - ( SELECT COUNT(1) FROM emr_holiday_set WHERE date BETWEEN CONVERT ( VARCHAR (10), discharge_date_time, 120 ) AND checked_datetime AND flag = 2 )) &lt;= 2 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D' and s.ArchiveState='128'
<choose>
<when test="startDate != null and startDate != '' and endDate != null and endDate != ''">
and discharge_date_time between CONVERT(VARCHAR(10),#{startDate,jdbcType=NCHAR},120) and
@ -130,7 +130,7 @@
</when>
</choose>
group by dept_name) as t5 on c.dept_name= t5.dept_name
left join (select dept_name,COUNT(*) AS Num from archive_master as s where (s.ArchiveState = '128' OR (s.ArchiveState = '64' and s.T1 is not null and s.T1 != '' and s.T1 >= '1801-02-04 00:00:00')) and ( datediff( d, discharge_date_time, checked_datetime ) - ( SELECT COUNT(1) FROM emr_holiday_set WHERE date BETWEEN CONVERT ( VARCHAR (10), discharge_date_time, 120 ) AND checked_datetime AND flag = 2 )) &lt;= 3 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D'
left join (select dept_name,COUNT(*) AS Num from archive_master as s where (s.ArchiveState = '128' OR (s.ArchiveState = '64' and s.T1 is not null and s.T1 != '' and s.T1 >= '1801-02-04 00:00:00')) and ( datediff( d, discharge_date_time, checked_datetime ) - ( SELECT COUNT(1) FROM emr_holiday_set WHERE date BETWEEN CONVERT ( VARCHAR (10), discharge_date_time, 120 ) AND checked_datetime AND flag = 2 )) &lt;= 3 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D' and s.ArchiveState='128'
<choose>
<when test="startDate != null and startDate != '' and endDate != null and endDate != ''">
and discharge_date_time between CONVERT(VARCHAR(10),#{startDate,jdbcType=NCHAR},120) and
@ -144,7 +144,7 @@
</when>
</choose>
group by dept_name) as t6 on c.dept_name= t6.dept_name
left join (select dept_name,COUNT(*) AS Num from archive_master as s where (s.ArchiveState = '128' OR (s.ArchiveState = '64' and s.T1 is not null and s.T1 != '' and s.T1 >= '1801-02-04 00:00:00')) and ( datediff( d, discharge_date_time, checked_datetime ) - ( SELECT COUNT(1) FROM emr_holiday_set WHERE date BETWEEN CONVERT ( VARCHAR (10), discharge_date_time, 120 ) AND checked_datetime AND flag = 2 )) &lt;= 7 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D'
left join (select dept_name,COUNT(*) AS Num from archive_master as s where (s.ArchiveState = '128' OR (s.ArchiveState = '64' and s.T1 is not null and s.T1 != '' and s.T1 >= '1801-02-04 00:00:00')) and ( datediff( d, discharge_date_time, checked_datetime ) - ( SELECT COUNT(1) FROM emr_holiday_set WHERE date BETWEEN CONVERT ( VARCHAR (10), discharge_date_time, 120 ) AND checked_datetime AND flag = 2 )) &lt;= 5 and s.inp_no NOT like '%B' and s.inp_no NOT like '%C' and s.inp_no NOT like '%D' and s.ArchiveState='128'
<choose>
<when test="startDate != null and startDate != '' and endDate != null and endDate != ''">
and discharge_date_time between CONVERT(VARCHAR(10),#{startDate,jdbcType=NCHAR},120) and

@ -3,7 +3,7 @@
<c:set value="${pageContext.request.contextPath}" var="path" scope="page"/>
<html>
<head>
<title>病案归档系统</title>
<title>病案无纸化归档系统</title>
<meta charset="utf-8">
<!-- 解决部分兼容性问题如果安装了GCF则使用GCF来渲染页面如果未安装GCF则使用最高版本的IE内核进行渲染。 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <!-- 页面按原比例显示 -->
@ -239,7 +239,7 @@
<!-- mini logo for sidebar mini 50x50 pixels -->
<%--<span class="logo-mini"><b>A</b>LT</span>--%>
<!-- logo for regular state and mobile devices -->
<span>病案归档系统</span>
<span>病案无纸化归档系统</span>
</div>
<!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation">

@ -181,18 +181,26 @@
</select>
</div>
<div class="form-group divCss">
<label>纸质状态:</label>
<select class="form-control input-sm" id="isSign">
<label>回收状态:</label>
<select class="form-control input-sm" id="isSign" >
<option value="">全部</option>
<option value="1">已签收</option>
<option value="0">未签收</option>
<option value="1" selected>已</option>
<option value="0">未</option>
</select>
</div>
<div class="form-group divCss">
<label>纸质扫描:</label>
<select class="form-control input-sm" id="checkName">
<option value="">全部</option>
<option value="1">是</option>
<option value="1" selected>是</option>
<option value="0">否</option>
</select>
</div>
<div class="form-group divCss">
<label>是否完整:</label>
<select class="input-sm form-control" id="isSuccessSearch">
<option value="">全部</option>
<option value="1" selected>是</option>
<option value="0">否</option>
</select>
</div>
@ -255,6 +263,7 @@
<div class="modal-body divCss2">
<!--通过审批且未过期的patientId集合-->
<form class="form-horizontal" id="form1">
<input id="masterId" hidden></input>
<div class="row">
<div class="row divCss3">病历信息</div>
<div class="row divCss2">

@ -76,6 +76,7 @@ function initTable() {
isSearch:$("#isSearch").val(),
checkName:$("#checkName").val(),
callBackStatus:$("#callBackStatus").val(),
isSuccess:$("#isSuccessSearch").val(),
printStatus:$("#printStatus").val()
};
return temp;
@ -149,19 +150,19 @@ function initTable() {
}
},
{
title: '纸质状态',
title: '回收状态',
field: 'remark',
align: 'center',
valign: 'middle',
formatter: function (value, row) {
var isSign = $("#isSign").val();
if(isSign != '') {
value = isSign == 1 ? '已签收' : '未签收';
value = isSign == 1 ? '已' : '未';
}
var colorStr = ''
if(value == '已签收'){
if(value == '已'){
colorStr = '#8FBC8F';
}else if(value == '未签收'){
}else if(value == '未'){
colorStr = 'red';
}else{
value = '';
@ -188,6 +189,19 @@ function initTable() {
return str;
}
},
{
title: '是否完整',
field: 'lockinfo',
align: 'center',
valign: 'middle',
formatter:function(value, row){
if(value == '完整'){
return '<span style="color:green">是</span>';
}else{
return '<span style="color:red">否</span>';
}
}
},
// {
// title: 'HIS召回状态',
// field: 'callBackStatus',
@ -290,6 +304,7 @@ function initTable() {
$("#inLab").html(row.inpNo);
$("#inTimeLab").html(row.visitId);
$("#wzContent").html(row.lockinfo);
$("#masterId").val(row.id);
//入/出院年+出院月+住院号+住院次数
var outDate = "";
if (row.dischargeDateTime != null && row.dischargeDateTime != "") {
@ -299,6 +314,7 @@ function initTable() {
}
$("#outDateLab").val(outDate[0] + "" + outDate[1] + "" + row.inpNo.trim() + "" + row.visitId + "");
initTree(row.id);
// backSetValue1(e, value, row)
getSource();
},
//查看流程
@ -623,19 +639,24 @@ $("#approvesBtn").on('click', function () {
setFormToken();
selects = $("#table").bootstrapTable('getSelections');
var count = selects.length;
console.log(selects)
if(count !== 0){
var ids = '';
var patientIds = '';
for (var i = 0; i < count; i++) {
if(i === 0){
if (i === 0 ){
ids += selects[i].id;
patientIds += selects[i].patientId;
}else{
patientIds += "'"+selects[i].patientId+"'";
}
else{
ids += "," + selects[i].id;
patientIds += "," + selects[i].patientId;
patientIds += "," + "'"+selects[i].patientId+"'";
}
}
debugger
console.log(patientIds)
callApproveDiag(ids,count,patientIds);
}else{
toastr.warning("批量审批请至少选中一个");
}
@ -644,28 +665,27 @@ $("#approvesBtn").on('click', function () {
/**
* 校验完整性
* */
function backSetValue1(id) {
$("#checkSuccessBtn").click(function () {
var masterId = id
var result = checkSuccessMethod(masterId);
debugger
if (result != '失败') {
$("#wzContent").text(result);
//增加完整性刷新后高亮状态
$("#wzContent").addClass("wzContent");
toastr.success("完整性状态已刷新");
//刷新表格
$('#table').bootstrapTable('updateByUniqueId', {
id: masterId,
row: {
lockinfo: result
}
});
} else {
toastr.warning("校验失败,校验程序未启动或出错!");
}
})
}
$("#checkSuccessBtn").click(function(){
var masterId = $("#masterId").val();
var result = checkSuccessMethod(masterId);
if(result != '失败'){
$("#wzContent").text(result);
//增加完整性刷新后高亮状态
$("#wzContent").addClass("wzContent");
toastr.success("完整性状态已刷新");
//刷新表格
$('#table').bootstrapTable('updateByUniqueId', {
id: masterId,
row: {
lockinfo: result
}
});
}else{
toastr.warning("校验失败,校验程序未启动或出错!");
}
})
//批量终审确认提交
$("#sureBtn").on('click',function(){
approveMethod();
@ -673,6 +693,7 @@ $("#sureBtn").on('click',function(){
//调用审批diag
function callApproveDiag(ids,count,patientId) {
debugger
$('#verifyModal').modal({
backdrop: 'static',//backdrop 为 static 时,点击模态对话框的外部区域不会将其关闭。
keyboard: false,//keyboard 为 false 时,按下 Esc 键不会关闭 Modal。

@ -291,7 +291,7 @@ $(function () {
trigger: 'axis'
},
legend: {
data: ['归档率%', '2日归档率%', '3日归档率%', '7日归档率%'],
data: ['归档率%', '2日归档率%', '3日归档率%', '5日归档率%'],
textStyle: {
color: "#000"
}
@ -523,7 +523,7 @@ $(function () {
}
,
{
name: '7日归档率%',
name: '5日归档率%',
type: 'line',
min: 10,
max: 100,
@ -750,7 +750,7 @@ function initTable() {
}
},
{
title: '7日归档率%',
title: '5日归档率%',
field: 'day7Rate',
align: 'center',
valign: 'middle',

Loading…
Cancel
Save