Index: ssts-web/src/main/webapp/disinfectsystem/config/cdlqyq1yy/config.js =================================================================== diff -u -r22738 -r23938 --- ssts-web/src/main/webapp/disinfectsystem/config/cdlqyq1yy/config.js (.../config.js) (revision 22738) +++ ssts-web/src/main/webapp/disinfectsystem/config/cdlqyq1yy/config.js (.../config.js) (revision 23938) @@ -97,5 +97,7 @@ // 科室申领模块的填写申请单界面是否隐藏器械包价格 true : 隐藏 hideToussePriceColumn:true, //回收时,申请数量与回收数量不一致,是否要确认 - confirmRecyclingAmount:false + confirmRecyclingAmount:false, + //装配打印后是否提示"物品是否有缺陷" + enableConfirmNoticeAfterPackingPrint : true } \ No newline at end of file Index: ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js =================================================================== diff -u -r23937 -r23938 --- ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 23937) +++ ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 23938) @@ -3420,20 +3420,22 @@ if(tousseesToPrint.length > 0){ doPrintLabels(tousseesToPrint,cfg); - } - //打印完成给出确认提示筐,物品是否有缺陷,正常则不管,缺陷则弹出质量监测窗口:CDSLQYQYYY-51 - Ext.Msg.show({ - title : '请确认', - msg : '物品是否有缺陷?', - buttons: {"yes":"正常","no":"缺陷"}, - width: 200, - height: 100, - fn : function(btn){ - if(btn == 'no'){ - addQualityMonitoringByResponPart("清洗消毒"); - } + if(sstsConfig.enableConfirmNoticeAfterPackingPrint){ + //打印完成给出确认提示筐,物品是否有缺陷,正常则不管,缺陷则弹出质量监测窗口:CDSLQYQYYY-51 + Ext.Msg.show({ + title : '请确认', + msg : '物品是否有缺陷?', + buttons: {"yes":"正常","no":"缺陷"}, + width: 200, + height: 100, + fn : function(btn){ + if(btn == 'no'){ + addQualityMonitoringByResponPart("清洗消毒"); + } + } + }); } - }); + } } function printLabelsAfterConfirmPacking(curTousseesToPrint){ if(!packing){