Index: ssts-web/src/main/webapp/disinfectsystem/useRecord/tabs/tousseInstanceInfoTab.js =================================================================== diff -u -r18363 -r18376 --- ssts-web/src/main/webapp/disinfectsystem/useRecord/tabs/tousseInstanceInfoTab.js (.../tousseInstanceInfoTab.js) (revision 18363) +++ ssts-web/src/main/webapp/disinfectsystem/useRecord/tabs/tousseInstanceInfoTab.js (.../tousseInstanceInfoTab.js) (revision 18376) @@ -1093,7 +1093,7 @@ } // 流转记录 - if (!isComboTousse) { + if (!isComboTousse && (sstsConfig.hasOwnProperty('enableSurgicalInstrumentsManagement') && sstsConfig.enableSurgicalInstrumentsManagement)) { tabsItemArr.push({ title: '流转记录', items:[ @@ -1275,19 +1275,22 @@ top.Ext.getCmp('wtr_idCardBarcode').setValue(washTransitionRecordInfo.idCardBarcode); //清洗交接_标识牌实例 //流转记录 - var tousseOperationInfoArray = result.tousseOperationJSONs; - for(var j = 0;j < tousseOperationInfoArray.length ; j++){ - var tousseOperationInfo = tousseOperationInfoArray[j]; - var tousseOperationData = new Ext.data.Record({ - operator : tousseOperationInfo.operator, - operationTime : tousseOperationInfo.operationTime, - destLocation : tousseOperationInfo.destLocation, - destDepart : tousseOperationInfo.destDepart, - operation : tousseOperationInfo.operation - }); - top.Ext.getCmp('tousseOperation').getStore().add(tousseOperationData); + if ((sstsConfig.hasOwnProperty('enableSurgicalInstrumentsManagement') && sstsConfig.enableSurgicalInstrumentsManagement)) { + var tousseOperationInfoArray = result.tousseOperationJSONs; + for(var j = 0;j < tousseOperationInfoArray.length ; j++){ + var tousseOperationInfo = tousseOperationInfoArray[j]; + var tousseOperationData = new Ext.data.Record({ + operator : tousseOperationInfo.operator, + operationTime : tousseOperationInfo.operationTime, + destLocation : tousseOperationInfo.destLocation, + destDepart : tousseOperationInfo.destDepart, + operation : tousseOperationInfo.operation + }); + top.Ext.getCmp('tousseOperation').getStore().add(tousseOperationData); + } } + //发货记录 var invoiceInfo = result.invoice; if(invoiceInfo){