Index: ssts-web/src/main/webapp/disinfectsystem/sterilizationmanager/sterilizationrecord/sterilizationRecordForm.js =================================================================== diff -u -r36653 -r36679 --- ssts-web/src/main/webapp/disinfectsystem/sterilizationmanager/sterilizationrecord/sterilizationRecordForm.js (.../sterilizationRecordForm.js) (revision 36653) +++ ssts-web/src/main/webapp/disinfectsystem/sterilizationmanager/sterilizationrecord/sterilizationRecordForm.js (.../sterilizationRecordForm.js) (revision 36679) @@ -2911,10 +2911,11 @@ childObjBarcodes.push(childObjBarcode); }); DWREngine.setAsync(false); + var urgentInfoMap = {} //如果灭菌程序不能添加器械包,要清除灭菌物品列表 SterilizationRecordTableManager.isTousseUrgent(null, childObjBarcodes, function (res) { var result = Ext.decode(res); - urgentInfoMap = new Map(Object.entries(result.urgentInfoMap)); + urgentInfoMap = result.urgentInfoMap; }); DWREngine.setAsync(true); clickNode.eachChild(function (pNode) { @@ -2925,8 +2926,8 @@ var urgentLevel = pNode.attributes.urgentLevel; var childType = 'TOUSSE_IN'; var isUrgent = '否'; - if (urgentInfoMap != null && urgentInfoMap.has(childObjBarcode)) { - var urgentInfo = urgentInfoMap.get(childObjBarcode); + if (urgentInfoMap != null && urgentInfoMap[childObjBarcode]) { + var urgentInfo = urgentInfoMap[childObjBarcode]; if (urgentInfo.isUrgent) { isUrgent = '是'; if (!isBasketUrgent) {