Index: ssts-web/src/main/webapp/disinfectsystem/config/fsszyy/config.js =================================================================== diff -u -r33152 -r38071 --- ssts-web/src/main/webapp/disinfectsystem/config/fsszyy/config.js (.../config.js) (revision 33152) +++ ssts-web/src/main/webapp/disinfectsystem/config/fsszyy/config.js (.../config.js) (revision 38071) @@ -176,7 +176,8 @@ enableIdCardBasketBinding:true, //是否打印回收计划 printWaitRecyclingInvoicePlanSummary:true, - + //启用长时间不登陆账号停用功能 + enableDisableAccountsHaveNotLoggedInForALongTime:true, //按科室打印回收申请单 printRecyclingDetailWithDepartGroup:true , //科室申请数量干预功能 Index: ssts-web/src/main/webapp/disinfectsystem/basedatamanager/supplyroomtype/supplyRoomTypeForm.js =================================================================== diff -u -r38027 -r38071 --- ssts-web/src/main/webapp/disinfectsystem/basedatamanager/supplyroomtype/supplyRoomTypeForm.js (.../supplyRoomTypeForm.js) (revision 38027) +++ ssts-web/src/main/webapp/disinfectsystem/basedatamanager/supplyroomtype/supplyRoomTypeForm.js (.../supplyRoomTypeForm.js) (revision 38071) @@ -1315,6 +1315,21 @@ value: '是', triggerAction: 'all' }] + }, { + layout: 'form', + labelWidth: fontSize == 12 ? 180 : 210, + columnWidth: .25, + hidden: !sstsConfig.enableDisableAccountsHaveNotLoggedInForALongTime, + items: [{ + xtype: 'numberfield', + fieldLabel: '停用长时间不登陆账号(天数)', + id: 'accountsHaveNotLoggedInForALongTime', + name: 'accountsHaveNotLoggedInForALongTime', + allowDecimals: false, + emptyText: '天数', + anchor: '100%', + allowBlank: true + }] } ] }, { @@ -3975,6 +3990,12 @@ //GZFDZL-141:退货显示过期批次 var returnExpiredDGBatchNumber = Ext.getCmp("returnExpiredDGBatchNumber").getValue(); + //FSSZYY-37:停用长时间不登陆账号(天数) + var accountsHaveNotLoggedInForALongTime = ''; + if(sstsConfig.enableDisableAccountsHaveNotLoggedInForALongTime){ + accountsHaveNotLoggedInForALongTime = Ext.getCmp("accountsHaveNotLoggedInForALongTime").getValue(); + } + //KSDQDYRMYY-13 var isEnableTousseOpRecipient = '否'; var isEnableTousseOpDestLocation = '否'; @@ -4227,6 +4248,7 @@ verifyPasswordWhenNewUser:verifyPasswordWhenNewUser, returnExpiredDGBatchNumber:returnExpiredDGBatchNumber, invoiceModeTousseRange: invoiceModeTousseRange, + accountsHaveNotLoggedInForALongTime:accountsHaveNotLoggedInForALongTime, kardexContainerHost: kardexContainerHost, kardexContainerPort: kardexContainerPort, kardexContainerAddr: kardexContainerAddr, @@ -4539,6 +4561,11 @@ //GZFDZL-141:退货显示过期批次 Ext.getCmp("returnExpiredDGBatchNumber").setValue(supplyRoomConfig.returnExpiredDGBatchNumber); + //FSSZYY-37:停用长时间不登陆账号(天数) + if(sstsConfig.enableDisableAccountsHaveNotLoggedInForALongTime){ + Ext.getCmp('accountsHaveNotLoggedInForALongTime').setValue(supplyRoomConfig.accountsHaveNotLoggedInForALongTime); + } + var isFtOnlyImplantConvert = (supplyRoomConfig.isFtOnlyImplantConvert == true || supplyRoomConfig.isFtOnlyImplantConvert == 'true') ? '是' : '否'; Ext.getCmp('mergeTousseRuleForInvoiceBatchPrint').setValue(supplyRoomConfig.mergeTousseRuleForInvoiceBatchPrint); Ext.getCmp('mergeTousseRuleForInvoiceBatchPrintStr').setValue(supplyRoomConfig.mergeTousseRuleForInvoiceBatchPrint);