Index: ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsTemplateApplicationView.js =================================================================== diff -u -r17916 -r17953 --- ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsTemplateApplicationView.js (.../goodsTemplateApplicationView.js) (revision 17916) +++ ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsTemplateApplicationView.js (.../goodsTemplateApplicationView.js) (revision 17953) @@ -3889,12 +3889,16 @@ }, {header : "预回收人",width : 65 * fontSizeScale,dataIndex : 'prepareRecycleOperator',hidden : sstsConfig.hiddenRecyclingPeople}, {header : "预回收确认人",width : 85 * fontSizeScale,dataIndex : 'prepareRecycleComfirmor',hidden : sstsConfig.hiddenPreRecyclingConfirmPeople}, - {header : "预回收时间",width : 130 * fontSizeScale,dataIndex : 'prepareRecycleDateTime',hidden : sstsConfig.hiddenPreRecyclingTime}, - {header : "回收时间",width : 130 * fontSizeScale,dataIndex : 'recyclingTime',hidden : !sstsConfig.showRecyclingTime} - + {header : "预回收时间",width : 130 * fontSizeScale,dataIndex : 'prepareRecycleDateTime',hidden : sstsConfig.hiddenPreRecyclingTime} ]; - var readerDetail = [ + var recyclingTime = {header : "回收时间",width : 130 * fontSizeScale,dataIndex : 'recyclingTime',hidden : !sstsConfig.showRecyclingTime}; + //如果sstsConfig.recyclingTimeLocation不存在或者是其他非数字类型的字符串时会默认插在最后,false会插在最前,true则是插在第二列 + Ext4.Array.insert(columns, sstsConfig.recyclingTimeLocation, [recyclingTime]); + + + + var readerDetail = [ {name : 'id'}, {name : 'serialNumber'}, {name : 'applicant'}, Index: ssts-web/src/main/webapp/disinfectsystem/config/dgsdhyy/config.js =================================================================== diff -u -r17950 -r17953 --- ssts-web/src/main/webapp/disinfectsystem/config/dgsdhyy/config.js (.../config.js) (revision 17950) +++ ssts-web/src/main/webapp/disinfectsystem/config/dgsdhyy/config.js (.../config.js) (revision 17953) @@ -75,6 +75,8 @@ //科室申领是否启用黑白名单过滤物品(目前只支持器械包) appIsUseBwList : true, //主页是否弹出未归还告警 - isShowUnReturnWarning : true + isShowUnReturnWarning : true, + //科室申领回收时间显示的位置 + recyclingTimeLocation : 6 } \ No newline at end of file