Index: ssts-web/src/main/webapp/disinfectsystem/config/gdsy/config.js =================================================================== diff -u -r20358 -r20365 --- ssts-web/src/main/webapp/disinfectsystem/config/gdsy/config.js (.../config.js) (revision 20358) +++ ssts-web/src/main/webapp/disinfectsystem/config/gdsy/config.js (.../config.js) (revision 20365) @@ -131,6 +131,8 @@ showRememberRecycleUserButton : true, //发货计划打印是否支持器械包分组打印.true表示支持,false或者没有配置,都表示不支持 enableInvoicePlanTousseGroupPrint:true, + //临床科室的全部申请单界面是否隐藏[“申请器械包”、“申请一次性物品”、“申请消毒物品”、“申请自定义器械包”、“申请外部代理灭菌包”、“借物”]这六个按钮(true则隐藏,false或者没有配置都隐藏) + hideClinicalDepartmentApplyButton : true, //发货计划按申请单类型查询model appFormModel : [ ['全部申请单', ''] Index: ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsApplicationView.js =================================================================== diff -u -r20360 -r20365 --- ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsApplicationView.js (.../goodsApplicationView.js) (revision 20360) +++ ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsApplicationView.js (.../goodsApplicationView.js) (revision 20365) @@ -2099,7 +2099,7 @@ { text: '借物', iconCls: 'btn_ext_add_tousse', - hidden: SSTS_borrow_Create || (sstsConfig.recyclingApplicationVersion == 2 && !isFirstSupplyRoomUser), + hidden: SSTS_borrow_Create || (sstsConfig.hideClinicalDepartmentApplyButton && !isFirstSupplyRoomUser), handler: function () { addAndEditTousseLease(''); } @@ -2738,7 +2738,7 @@ id : 'applyTousse', iconCls : 'btn_ext_add_tousse', tooltip : sstsConfig.packageName || '申请器械包', - hidden : SSTS_PACKAGE_Create || sstsConfig.applicationFormType != 2 || (sstsConfig.recyclingApplicationVersion == 2 && !isFirstSupplyRoomUser), + hidden : SSTS_PACKAGE_Create || sstsConfig.applicationFormType != 2 || (sstsConfig.hideClinicalDepartmentApplyButton && !isFirstSupplyRoomUser), handler : function() { formPrinted = 1; openApplication(invoicePlanForTousseType_Tousse, tousseApplicationForm, ''); @@ -2748,7 +2748,7 @@ id : 'applyDisposableGood', iconCls : 'btn_ext_add_tousse', tooltip : '申请一次性物品', - hidden : SSTS_DisposableGoods_Create || sstsConfig.applicationFormType != 2 || (sstsConfig.recyclingApplicationVersion == 2 && !isFirstSupplyRoomUser), + hidden : SSTS_DisposableGoods_Create || sstsConfig.applicationFormType != 2 || (sstsConfig.hideClinicalDepartmentApplyButton && !isFirstSupplyRoomUser), handler : function() { formPrinted = 1; openApplication(invoicePlanForTousseType_Diposable, diposableGoodsApplicationForm, ''); @@ -2758,7 +2758,7 @@ id : 'applyDisinfection', tooltip : '申请内容物不固定的消毒物品', iconCls : 'btn_ext_add_foreignTousse', - hidden : SSTS_Disinfection_Create || sstsConfig.applicationFormType != 2 || (sstsConfig.recyclingApplicationVersion == 2 && !isFirstSupplyRoomUser), + hidden : SSTS_Disinfection_Create || sstsConfig.applicationFormType != 2 || (sstsConfig.hideClinicalDepartmentApplyButton && !isFirstSupplyRoomUser), handler : function() { formPrinted = 1; openApplication(invoicePlanForTousseType_Tousse, disinfectGoodsApplicationForm, ''); @@ -2767,7 +2767,7 @@ text : '申请外来器械', id : 'applyForeign', iconCls : 'btn_ext_add_customTousse', - hidden : SSTS_ForeignTousseApplication_Create || sstsConfig.recyclingApplicationVersion == 2 || sstsConfig.recyclingApplicationVersion == 3, + hidden : SSTS_ForeignTousseApplication_Create || sstsConfig.recyclingApplicationVersion == 3, handler : function() { formPrinted = 1; openForeignTousseForm("","apply"); @@ -2776,7 +2776,7 @@ text : '申请自定义器械包', id : 'applyCustomTousse', iconCls : 'btn_ext_add_foreignTousse', - hidden : SSTS_Application_Custom_Create, + hidden : SSTS_Application_Custom_Create || (sstsConfig.hideClinicalDepartmentApplyButton && !isFirstSupplyRoomUser), handler : function() { handleDepartStore.proxy.extraParams.applyDepartCode = ""; handleDepartStore.proxy.extraParams.tousseType = ""; @@ -2786,7 +2786,7 @@ text : '申请外部代理灭菌包', id : '申请外部代理灭菌包', iconCls : 'btn_ext_add_tousse', - hidden : SSTS_ForeignProxyDisinfection_Apply, + hidden : SSTS_ForeignProxyDisinfection_Apply || (sstsConfig.hideClinicalDepartmentApplyButton && !isFirstSupplyRoomUser), handler : function() { formPrinted = 1; addAndEditForeignProxyDisinfection('');