Index: ssts-print/src/main/java/com/forgon/disinfectsystem/print/vo/PrintRowVo.java =================================================================== diff -u -r15648 -r15689 --- ssts-print/src/main/java/com/forgon/disinfectsystem/print/vo/PrintRowVo.java (.../PrintRowVo.java) (revision 15648) +++ ssts-print/src/main/java/com/forgon/disinfectsystem/print/vo/PrintRowVo.java (.../PrintRowVo.java) (revision 15689) @@ -49,6 +49,10 @@ * 生产厂家 */ private String manufacturer; + /** + * 失效日期 + */ + private String expDate; private Double price; @@ -215,5 +219,12 @@ public void setManufacturer(String manufacturer) { this.manufacturer = manufacturer; } - + + public String getExpDate() { + return StringTools.defaultIfBlank(expDate,""); + } + + public void setExpDate(String expDate) { + this.expDate = StringTools.defaultIfBlank(expDate,""); + } } Index: ssts-web/src/main/webapp/disinfectsystem/config/gdsy/print/printConfig.js =================================================================== diff -u -r15648 -r15689 --- ssts-web/src/main/webapp/disinfectsystem/config/gdsy/print/printConfig.js (.../printConfig.js) (revision 15648) +++ ssts-web/src/main/webapp/disinfectsystem/config/gdsy/print/printConfig.js (.../printConfig.js) (revision 15689) @@ -232,12 +232,13 @@ position : ["49","1%","99%","2000"], content : [ {header : "编码", dataIndex : 'externalCode', width : 80, align : 'center', fontSize : 11}, - {header : "名称", dataIndex : 'goodsName', width : 200, align : 'left', fontSize : 11}, - {header : "申领规格", dataIndex : 'sp', width : 160, align : 'left', fontSize : 11}, - {header : "申领单位", dataIndex : 'unit', width : 80, align : 'center', fontSize : 11}, - {header : "发放数量", dataIndex : 'applyAmount', width : 80, align : 'center', fontSize : 11}, + {header : "名称", dataIndex : 'goodsName', width : 180, align : 'left', fontSize : 11}, + {header : "申领规格", dataIndex : 'sp', width : 200, align : 'left', fontSize : 11}, + {header : "申领单位", dataIndex : 'unit', width : 40, align : 'center', fontSize : 11}, + {header : "发放数量", dataIndex : 'applyAmount', width : 40, align : 'center', fontSize : 11}, {header : "生产批号", dataIndex : 'batchNumber', width : 80, align : 'center', fontSize : 11}, - {header : "灭菌日期", dataIndex : 'sterileBatchNumber', width : 80, align : 'center', fontSize : 11}, + {header : "灭菌日期", dataIndex : 'sterileBatchNumber', width : 100, align : 'center', fontSize : 11}, + {header : "失效日期", dataIndex : 'expDate', width : 100, align : 'center', fontSize : 11}, {header : "生产厂家", dataIndex : 'manufacturer', width : 90, align : 'center', fontSize : 11} // {header : "回收数量", dataIndex : 'recyclingAmount', width : 70, align : 'center', fontSize : 11} //{header : "单位", dataIndex : 'unit', width : 60, align : 'left', fontSize : 11}, @@ -248,8 +249,8 @@ content : [ // {label : "回收人:", dataIndex : 'recyclingUser'}, {label : " 发货者:", dataIndex : ''}, - {label : " 收物者:", dataIndex : ''}, - {label : " 录入:", dataIndex : 'applicant'}, + {label : " 收物者:", dataIndex : ''}, + {label : " 录入:", dataIndex : 'applicant'}, {label : " 制表:", dataIndex : 'printUser'}, {label : " 打印时间:", dataIndex : 'printTime'} ] Index: ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/RecyclingApplicationManagerImpl.java =================================================================== diff -u -r15648 -r15689 --- ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/RecyclingApplicationManagerImpl.java (.../RecyclingApplicationManagerImpl.java) (revision 15648) +++ ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/RecyclingApplicationManagerImpl.java (.../RecyclingApplicationManagerImpl.java) (revision 15689) @@ -2429,6 +2429,7 @@ rowVo.setBatchNumber(batchStock.getBatchNumber()); rowVo.setSterileBatchNumber(batchStock.getSterileBatchNumber()); rowVo.setManufacturer(batchStock.getManufacturer()); + rowVo.setExpDate(batchStock.getExpDateStr()); } }