|
@@ -51,6 +51,8 @@ var viewRecordId = null;
|
|
|
//记录检查项目列表用于判断是否调用重复验证检查接口YX03
|
|
|
var jcItemList = null;
|
|
|
|
|
|
+var ghFeeSelect = '1';
|
|
|
+
|
|
|
$(function () {
|
|
|
getAjaxRequst("/thmz/queryWpyOrderHide",{},true,function (res) {
|
|
|
wpyHide = res.data
|
|
@@ -2240,6 +2242,7 @@ function cancelClinic(patientId, times) {
|
|
|
function setMzPatientInfo(mzPatientMi) {
|
|
|
postAjaxJsonHttpRequst("/thmz/getSqGhfFlag",{patientId:mzPatientMi.patientId},true,function (res) {
|
|
|
$("#ghFeeSelect").val(res.data)
|
|
|
+ ghFeeSelect = res.data;
|
|
|
$('#ghFeeSelect').selectpicker('refresh');
|
|
|
})
|
|
|
|
|
@@ -3886,6 +3889,7 @@ function editPrescription(jsonData, type) {
|
|
|
|
|
|
if(jsonData.ghFeeFlag === '1'){
|
|
|
$("#ghFeeSelect").val('1')
|
|
|
+ ghFeeSelect = '1';
|
|
|
$('#ghFeeSelect').selectpicker('refresh');
|
|
|
}
|
|
|
var patientAllergenInfoList = jsonData.patientAllergenInfoList;
|
|
@@ -4691,6 +4695,7 @@ function iniAdmissStatus() {
|
|
|
function initGhFeeSelect() {
|
|
|
getAjaxRequst("/thmz/getGhFeeValue",{},true,function (res) {
|
|
|
$("#ghFeeSelect").val(res.data)
|
|
|
+ ghFeeSelect = res.data;
|
|
|
$('#ghFeeSelect').selectpicker('refresh');
|
|
|
})
|
|
|
}
|
|
@@ -10888,7 +10893,8 @@ function getParamsForpPrescription(type) {
|
|
|
|
|
|
jsonData.reqType = $("#mzReqType").val();
|
|
|
jsonData.orderType = $("#mzOrderTypeSelect").val();
|
|
|
- jsonData.ghFeeFlag = $("#ghFeeSelect").val();
|
|
|
+ // jsonData.ghFeeFlag = $("#ghFeeSelect").val();
|
|
|
+ jsonData.ghFeeFlag = ghFeeSelect;
|
|
|
jsonData.opspDisecode = curOpspDiseCode;
|
|
|
jsonData.opspDiseName = curOpspDiseName;
|
|
|
|