修改留观病历查询全部

master
zengwh 3 years ago
parent 71a3743a5c
commit 57f1a69948

@ -1749,7 +1749,6 @@
Archive_Master
WHERE
inp_no LIKE 'LG%'
AND ArchiveState != '已归档'
<if test="patientId != null and patientId != ''">
AND patient_id LIKE '%' + #{patientId} + '%'
</if>

@ -595,7 +595,8 @@
<select class="input-sm form-control" id="archivestate">
<option value="">全部</option>
<option value="初审">初审</option>
<option value="初审退回">初审退回</option>
<option value="复审退回">复审退回</option>
<option value="已归档">已归档</option>
</select>
</div>
<div class="form-group divCss">
@ -5393,5 +5394,5 @@
}
}
</script>
<script src="${path}/static/js/lastVerify/observationRecordList.js"></script>
<script src="${path}/static/js/lastVerify/observationRecordList.js?time=2022-02-25"></script>
</html>

@ -146,17 +146,17 @@ function initTableLg() {
field: 'archivestate',
align: 'center',
valign: 'middle',
formatter: function (value, row, index) {
/*formatter: function (value, row, index) {
//在院 未归档 归档中 初审 已归档 已认证
//在院 未归档 归档中 初审 已归档 已认证 复审退回
var a = '';
if (value == "初审") {
a = '<span style="color:#8FBC8F"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
} else if (value == "审退回") {
} else if (value == "审退回") {
a = '<span style="color:red"><i class="fa fa-check-circle-o" aria-hidden="true"></i>' + value + '</span>';
}
return a;
}
}*/
},
{
title: '是否死亡',

Loading…
Cancel
Save