部分页面修改 “是否有纸质资料送病案室” 4/21 wzq

master
wzqgit 4 years ago
parent 5752e245cb
commit a7da3895dd

@ -36,6 +36,9 @@ public class XMLUtil {
// 格式化xml输出的格式
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,
Boolean.TRUE);
marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
//sw.write("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n");
sw.write("");
// 将对象转换成输出流形式的xml
marshaller.marshal(obj, sw);
} catch (JAXBException e) {

@ -2764,7 +2764,7 @@
entity.cmtDoctor = 1;
entity.lockinfo = $("#wzxText").val();
entity.content = $("#doctorText").val();
if ($('#isScanedChk').is(':checked')) {
if ($('.isScanedChk1').is(':checked')) {
isScanedChk = "1";
}
entity.isscaned = isScanedChk;
@ -2772,7 +2772,7 @@
entity.cmtNurse = 1;
entity.lockinfo = $("#wzx2Text").val();
entity.content = $("#nures2Text").val();
if ($('#isScanedChk2').is(':checked')) {
if ($('.isScanedChk3').is(':checked')) {
isScanedChk = "1";
}
entity.isscaned = isScanedChk;

@ -1001,7 +1001,8 @@
<textarea id="doctorText" rows="5" style="width:95%;" disabled></textarea>
</div>
<div class="row ">
<input type="checkbox" id="isScanedChk1"/>归档病历已全部无纸化无扫描件
<%--<input type="checkbox" id="isScanedChk1" />归档病历已全部无纸化无扫描件--%>
<input type="checkbox" id="isScanedChk1" />是否有纸质病历送病案室
</div>
</div>
@ -1043,7 +1044,8 @@
<textarea id="doctorText2" rows="5" style="width:95%;" disabled></textarea>
</div>
<div class="row divCss2">
<input type="checkbox" id="isScanedChk" disabled/>归档病历已全部无纸化无扫描件
<%--<input type="checkbox" id="isScanedChk" disabled />归档病历已全部无纸化无扫描件--%>
<input type="checkbox" id="isScanedChk" disabled />是否有纸质病历送病案室
</div>
</div>
</form>

@ -244,14 +244,21 @@
// }
// }
var url = window.location.href;
var deptName = url.substring(url.lastIndexOf('&') + 1).replace("depts=", "");
// var url = window.location.href;
// var deptName = url.substring(url.lastIndexOf('&') + 1).replace("depts=", "");
//
// var len = value.length;
// if (len > 0) {
// if (value.indexOf("") == -1) {
// deptName = value.toString();
// }
// }
var len = value.length;
if (len > 0) {
if (value.indexOf("") == -1) {
deptName = value.toString();
}
var deptName = value;
if (deptName.indexOf("") != -1) {
deptName = "";
} else {
deptName = value.toString();
}
var temp = {

@ -2825,9 +2825,9 @@
//在院 未归档 归档中 初审 已归档 已认证
var a = '';
if (value == "1") {
a = '<span style="color:#c0c0c0;"><i class="glyphicon glyphicon-ban-circle" aria-hidden="true"></i>有</span>';
a = '<span style="color:#030378"><i class="glyphicon glyphicon-ok-circle" aria-hidden="true"></i>有</span>';
} else if (value == "0") {
a = '<span style="color:#030378"><i class="glyphicon glyphicon-ok-circle" aria-hidden="true"></i>无</span>';
a = '<span style="color:#c0c0c0;"><i class="glyphicon glyphicon-ban-circle" aria-hidden="true"></i>无</span>';
} else {
a = '<span style="color:red"><i class="glyphicon glyphicon-question-sign" aria-hidden="true"></i>未知</span>';
}

Loading…
Cancel
Save