فهرست منبع

优化门诊医生帮助字典

hurugang 3 سال پیش
والد
کامیت
d0a0a1d50a

+ 1 - 1
src/main/java/cn/hnthyy/thmz/controller/mz/MzBlRecordController.java

@@ -108,7 +108,7 @@ public class MzBlRecordController {
             MzVisitTable mzVisitTable = mzVisitTableService.queryByPatientIdAndTimes(patientId, times);
             String icdText = StringUtils.isBlank(mzBlRecord.getTentativeDiagnosis()) ? "" : mzBlRecord.getTentativeDiagnosis();
             if (mzVisitTable != null && mzVisitTable.getIcdText() != null && StringUtils.isNotBlank(mzVisitTable.getIcdText())) {
-                icdText += mzVisitTable.getIcdText();
+                icdText = mzVisitTable.getIcdText()+icdText;
                 //results.put("icdText", StringUtils.isBlank(mzBlRecord.getTentativeDiagnosis())?mzVisitTable.getIcdText():mzVisitTable.getIcdText()+" "+mzBlRecord.getTentativeDiagnosis());
             }
             results.put("icdText", icdText);

+ 4 - 0
src/main/java/cn/hnthyy/thmz/controller/mz/MzChargeDetailController.java

@@ -1544,6 +1544,10 @@ public class MzChargeDetailController {
             Clinic clinic = null;
             ZdUnitCode zdUnitCode=zdUnitCodeService.queryByCode(employee.getDeptCode());
             if (YesNoEnum.NO.code.equals(zdUnitCode.getGhjzFlag())){
+                if (mzPrescriptionVo.getSerialNo().startsWith("clnicId_")) {
+                    Long clnicId = Long.valueOf(mzPrescriptionVo.getSerialNo().replace("clnicId_", ""));
+                    clinic = clinicService.queryById(clnicId);
+                }
                 mzPrescriptionVo.setDoctorCode(tokenUser.getUserIdCode());
                 mzPrescriptionVo.setVisitDeptCode(employee.getDeptCode());
                 mzPrescriptionVo.setSerialNo(null);

+ 1 - 1
src/main/java/cn/hnthyy/thmz/mapper/his/zd/ZdChargeItemMapper.java

@@ -327,7 +327,7 @@ public interface ZdChargeItemMapper {
             "</when>",
             "  code=rtrim(code),name,specification=charge_unit,charge_amount,manufactory=yb_comment,exec_unit,group_no='00' ,type=3  ",
             "    FROM zd_charge_item WITH(NOLOCK)   ",
-            "where del_flag=0 and  class_code in ('C','D','E','G','F','J')",
+            "where del_flag=0 and  class_code in ('B','C', 'D', 'E', 'G', 'F','H', 'J')",
             "<when test='commonParams!=null'>",
             " and (py_code like #{commonParams} collate Chinese_PRC_CI_AS or d_code  like #{commonParams} collate Chinese_PRC_CI_AS or code like #{commonParams} collate Chinese_PRC_CI_AS or name like #{commonParams} collate Chinese_PRC_CI_AS or class_code like #{commonParams} collate Chinese_PRC_CI_AS ",
             ") ",

+ 48 - 13
src/main/resources/static/js/mz/clinic.js

@@ -1281,6 +1281,7 @@ function clinicalReception(patientId, serialNo) {
                 realClinicalReception(patientId, serialNo);
             });
         });
+        $("#cancelButton").off("click");
     } else {
         realClinicalReception(patientId, serialNo);
     }
@@ -1321,6 +1322,7 @@ function cancelClinic(patientId, times) {
             }
         });
     });
+    $("#cancelButton").off("click");
 };
 
 
@@ -1986,6 +1988,7 @@ function fitAppeal(appeal, paramsType, id) {
             }
             extracted(paramsType, appeal, inputId);
         });
+        $("#cancelButton").off("click");
     } else {
         extracted(paramsType, appeal, inputId);
     }
@@ -2973,6 +2976,7 @@ function saveJyJcItem(calculateTotalAmountFlag) {
                             $("#messageModal").modal("hide");
                             saveJyJcItemReal(true);
                         });
+                        $("#cancelButton").off("click");
                     } else {
                         //虽然是不满6岁,但是也没有需要加收的项目,直接保存
                         saveJyJcItemReal(calculateTotalAmountFlag);
@@ -3159,6 +3163,7 @@ function saveZyReq(messageFlag) {
                 $("#messageModal").modal("hide");
                 saveZyReq(false);
             });
+            $("#cancelButton").off("click");
             return;
         }
     }
@@ -4049,7 +4054,7 @@ function initRecommendList() {
 
     //帮助字典弹窗
     settings.width = 450;
-    settings.height = 200;
+    settings.height = 500;
     settings.placement = 'right';//值: auto,top,right,bottom,left,top-right,top-left,bottom-right,bottom-left  要显示的位置
     settings.content = '<div id="treePopoverContent"><div><ul id="treeDemo" class="ztree"></ul></div></div>';
     settings.trigger = 'click';
@@ -4596,6 +4601,7 @@ function checkYpInfo(code, serial, groupNo, needNotice) {
                                 // //选中药品后,光标默认到用法
                                 // $("#supplyType").next().click();
                             });
+                            $("#cancelButton").off("click");
                         } else {
                             refreshNavTabs(0, groupNo);
                             fitWesternMedicine(res, groupNo);
@@ -4638,6 +4644,7 @@ function checkYpInfo(code, serial, groupNo, needNotice) {
                                     // //选中药品后,光标默认到用法
                                     // $("#supplyType").next().click();
                                 });
+                                $("#cancelButton").off("click");
                             } else {
                                 refreshNavTabs(0, groupNo);
                                 fitWesternMedicine(res, groupNo);
@@ -5876,6 +5883,11 @@ function initzTree() {
                         }
                     };
                     $.fn.zTree.init($("#treeDemo"), setting, res.data);
+                    var webuiId=$("#treeButton").attr("data-target");
+                    var top=$("#"+webuiId).css("top");
+                    if(top.indexOf("-")==0){
+                        $("#"+webuiId).css("top",'0px');
+                    }
                 } else {
                     errorMesage(res);
                 }
@@ -5903,6 +5915,11 @@ function initzTree() {
                         }
                     };
                     $.fn.zTree.init($("#treeDemo"), setting, res.data);
+                    var webuiId=$("#treeButton").attr("data-target");
+                    var top=$("#"+webuiId).css("top");
+                    if(top.indexOf("-")==0){
+                        $("#"+webuiId).css("top",'0px');
+                    }
                 } else {
                     errorMesage(res);
                 }
@@ -6149,6 +6166,7 @@ function savePrescription() {
                         $("#messageModal").modal("hide");
                         printPrescription(res.data.patientId, res.data.times, res.data.id, 5, 1);
                     });
+                    $("#cancelButton").off("click");
                 } else {
                     $("#messageModal").modal("hide");
                     errorMesage(res);
@@ -6156,6 +6174,7 @@ function savePrescription() {
             }
         });
     });
+    $("#cancelButton").off("click");
 }
 
 
@@ -6224,6 +6243,7 @@ function saveapidAccepts() {
             }
         });
     });
+    $("#cancelButton").off("click");
 }
 
 
@@ -6259,6 +6279,7 @@ function removeTemplate() {
             }
         });
     });
+    $("#cancelButton").off("click");
 }
 
 /**
@@ -6397,6 +6418,7 @@ function getMzPrescriptionVoPaid(patientId, times, clnicId) {
             }
         });
     });
+    $("#cancelButton").off("click");
 }
 
 
@@ -6427,6 +6449,7 @@ function repeatAccepts(patientId, times, clnicId, deptCode) {
                         $("#messageModal").modal("hide");
                         repeatAcceptsConfirm(patientId, times, clnicId);
                     });
+                    $("#cancelButton").off("click");
                     return;
                 }
                 repeatAcceptsConfirm(patientId, times, clnicId);
@@ -6811,18 +6834,18 @@ function prescriptionDetailCommon(patientId, times, clnicId, payMark, type) {
                             });
                         }
                     }
-                    $("#printBlRecord").removeClass("hide").addClass("in");
-                    $("#printBlRecord").off("click").on("click", function (t) {
-                        printBlRecord(patientId, times, 1);
-                    });
-                    $("#printBlRecordSetup").removeClass("hide").addClass("in");
-                    $("#printBlRecordSetup").off("click").on("click", function (t) {
-                        printBlRecord(patientId, times, 2);
-                    });
-                    $("#showMzBlRecordModal").removeClass("hide").addClass("in");
-                    $("#showMzBlRecordModal").off("click").on("click", function (t) {
-                        showMzBlRecordModal(patientId, times, 1);
-                    });
+                    // $("#printBlRecord").removeClass("hide").addClass("in");
+                    // $("#printBlRecord").off("click").on("click", function (t) {
+                    //     printBlRecord(patientId, times, 1);
+                    // });
+                    // $("#printBlRecordSetup").removeClass("hide").addClass("in");
+                    // $("#printBlRecordSetup").off("click").on("click", function (t) {
+                    //     printBlRecord(patientId, times, 2);
+                    // });
+                    // $("#showMzBlRecordModal").removeClass("hide").addClass("in");
+                    // $("#showMzBlRecordModal").off("click").on("click", function (t) {
+                    //     showMzBlRecordModal(patientId, times, 1);
+                    // });
                     if (jsonData.mzZyReq == null || jsonData.mzZyReq.reqDept == null || jsonData.mzZyReq.reqDept == "") {
                         $("#printZyReq").removeClass("in").addClass("hide");
                         $("#printZyReq").off("click");
@@ -6867,6 +6890,18 @@ function prescriptionDetailCommon(patientId, times, clnicId, payMark, type) {
                         });
                     }
                 }
+                $("#printBlRecord").removeClass("hide").addClass("in");
+                $("#printBlRecord").off("click").on("click", function (t) {
+                    printBlRecord(patientId, times, 1);
+                });
+                $("#printBlRecordSetup").removeClass("hide").addClass("in");
+                $("#printBlRecordSetup").off("click").on("click", function (t) {
+                    printBlRecord(patientId, times, 2);
+                });
+                $("#showMzBlRecordModal").removeClass("hide").addClass("in");
+                $("#showMzBlRecordModal").off("click").on("click", function (t) {
+                    showMzBlRecordModal(patientId, times, 1);
+                });
                 if ($("#setupId").hasClass("fa-chevron-up")) {
                     //默认不展开打印设置
                     $("#setupId").parent().click();

+ 21 - 21
src/main/resources/templates/mz/clinic.html

@@ -401,7 +401,7 @@
                                placeholder="请输入" type="text" data-placement="bottom-right">
                     </div>
                     <div class="item form-group foreclose">
-                        <label class="my_label">体格检查:</label>
+                        <label class="my_label">一般项目:</label>
                         <div class="my_label_input" style="height: 34px;line-height: 34px;">
                             <div style="float: left;">
                                 体重<input id="weight"/>kg&nbsp;&nbsp;
@@ -425,7 +425,7 @@
                     <!--</div>-->
                     <!--</div>-->
                     <div class="item form-group customization" target-id="otherCheck" id="otherCheckFlag">
-                        <label class="my_label">其他检查:</label>
+                        <label class="my_label">体格检查:</label>
                         <textarea id="otherCheck" class="form-control my_label_input"
                                   placeholder="请输入" type="text" data-placement="bottom-right"></textarea>
                     </div>
@@ -454,7 +454,7 @@
                                 中草药
                             </button>
                             <button class="btn btn-sm btn-default" type="button" onclick="billItemButtonChange(this,2)" id="yj_req_button">
-                                医技与诊疗
+                                辅助检查与检验
                             </button>
                             <button class="btn btn-sm btn-default" type="button" onclick="billItemButtonChange(this,3)" id="zy_req_button">
                                 入院
@@ -921,7 +921,7 @@
 <!--快速接诊弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="rapidAcceptsModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 680px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 680px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal" onclick="clearRapidAccepts()"><span
                         aria-hidden="true">×</span>
@@ -1015,7 +1015,7 @@
 <!--修改用户信息弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="editUserModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 680px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 680px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1214,7 +1214,7 @@
 <!--就诊【详情】信息弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="visitingDetailModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 680px;height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 680px;height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1336,7 +1336,7 @@
 <!--医疗范文【详情】信息弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="medicalModelModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 680px;height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 680px;height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1443,7 +1443,7 @@
 <div class="modal fade bs-example-modal-sm in" tabindex="-1" role="dialog" aria-hidden="true" id="messageModal"
      style="top:20%;">
     <div class="modal-dialog modal-sm">
-        <div class="modal-content" style="width: 480px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 480px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1474,7 +1474,7 @@
 <div class="modal fade bs-example-modal-sm in" tabindex="-1" role="dialog" aria-hidden="true" id="configWorkspaceModal"
      style="top:20%;">
     <div class="modal-dialog modal-sm">
-        <div class="modal-content" style="width: 550px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 550px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1527,7 +1527,7 @@
 <div class="modal fade bs-example-modal-sm in" tabindex="-1" role="dialog" aria-hidden="true" id="jcJyItemModal"
      style="top:20%;">
     <div class="modal-dialog modal-sm">
-        <div class="modal-content" style="width: 780px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 780px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1554,7 +1554,7 @@
 <div class="modal fade bs-example-modal-sm in" tabindex="-1" role="dialog" aria-hidden="true" id="saveapidAcceptsModal"
      style="top:20%;">
     <div class="modal-dialog modal-sm">
-        <div class="modal-content" style="width: 550px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 550px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -1623,7 +1623,7 @@
      id="messagePrescriptionModal"
      style="top:20%;">
     <div class="modal-dialog modal-sm">
-        <div class="modal-content" style="width: 480px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 480px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -2039,14 +2039,14 @@
                 </tr>
                 <tr>
                     <td style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;min-height: 30px;">
-                        体格检查
+                        一般项目
                     </td>
                     <td colspan="7" id="tzjcBlrecord"
                         style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;"></td>
                 </tr>
                 <tr>
                     <td style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;min-height: 30px;">
-                        其他检查
+                        体格检查
                     </td>
                     <td colspan="7" id="emrPeBlrecord"
                         style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;"></td>
@@ -2192,7 +2192,7 @@
 <!--分诊列表弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="mzfzPatientOrderModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 700px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 700px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -2229,7 +2229,7 @@
 <!--特门详情列表弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="fetchSpcSlwinfoModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 800px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 800px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -2266,7 +2266,7 @@
 <!--检查检验报告弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="previewYjReqModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 1080px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 1080px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal" ><span aria-hidden="true">×</span>
                 </button>
@@ -2477,7 +2477,7 @@
 <!--病历编辑弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="editMzBlRecordModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 680px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 680px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal" onclick="clearInput()"><span aria-hidden="true">×</span>
                 </button>
@@ -2556,7 +2556,7 @@
                     </div>
                     <div class="item form-group thmz_alert">
                         <div class="col-md-12 col-sm-12 col-xs-12 item">
-                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editTgjc">体格检查
+                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editTgjc">一般项目
                             </label>
                             <div class="col-md-8 col-sm-8 col-xs-12">
                                 <textarea id="editTgjc" class="form-control col-md-7 col-xs-12" type="text" readonly></textarea>
@@ -2565,7 +2565,7 @@
                     </div>
                     <div class="item form-group thmz_alert">
                         <div class="col-md-12 col-sm-12 col-xs-12 item">
-                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editQtjc">其他检查
+                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editQtjc">体格检查
                             </label>
                             <div class="col-md-8 col-sm-8 col-xs-12">
                                 <textarea id="editQtjc" class="form-control col-md-7 col-xs-12" type="text" readonly></textarea>
@@ -2629,7 +2629,7 @@
 <!--待合并病历列表弹框开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="otherBlRecordModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 980px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 980px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal" onclick="closeBlRecordModel()"><span aria-hidden="true">×</span>
                 </button>

+ 7 - 7
src/main/resources/templates/mz/mz_bl_record.html

@@ -132,14 +132,14 @@
                 </tr>
                 <tr>
                     <td style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;min-height: 30px;">
-                        体格检查
+                        一般项目
                     </td>
                     <td colspan="7" id="tzjcBlrecord"
                         style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;"></td>
                 </tr>
                 <tr>
                     <td style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;min-height: 30px;">
-                        其他检查
+                        体格检查
                     </td>
                     <td colspan="7" id="emrPeBlrecord"
                         style="border:solid black; border-width:0px 1px 1px 0px; padding-left:10px;"></td>
@@ -190,7 +190,7 @@
 <!--病历编辑弹窗开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="editMzBlRecordModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 680px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 680px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal" onclick="clearInput()"><span aria-hidden="true">×</span>
                 </button>
@@ -269,7 +269,7 @@
                     </div>
                     <div class="item form-group thmz_alert">
                         <div class="col-md-12 col-sm-12 col-xs-12 item">
-                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editTgjc">体格检查
+                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editTgjc">一般项目
                             </label>
                             <div class="col-md-8 col-sm-8 col-xs-12">
                                 <textarea id="editTgjc" class="form-control col-md-7 col-xs-12" type="text" readonly></textarea>
@@ -278,7 +278,7 @@
                     </div>
                     <div class="item form-group thmz_alert">
                         <div class="col-md-12 col-sm-12 col-xs-12 item">
-                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editQtjc">其他检查
+                            <label class="control-label col-md-2 col-sm-2 col-xs-12" for="editQtjc">体格检查
                             </label>
                             <div class="col-md-8 col-sm-8 col-xs-12">
                                 <textarea id="editQtjc" class="form-control col-md-7 col-xs-12" type="text" readonly></textarea>
@@ -342,7 +342,7 @@
 <div class="modal fade bs-example-modal-sm in" tabindex="-1" role="dialog" aria-hidden="true" id="messageModal"
      style="top:20%;">
     <div class="modal-dialog modal-sm">
-        <div class="modal-content" style="width: 480px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 480px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>
@@ -372,7 +372,7 @@
 <!--待合并病历列表弹框开始-->
 <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="otherBlRecordModal">
     <div class="modal-dialog modal-lg">
-        <div class="modal-content" style="width: 980px;max-height: 600px;overflow-y: auto;">
+        <div class="modal-content" style="width: 980px;max-height: 550px;overflow-y: auto;">
             <div class="modal-header">
                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span>
                 </button>