Index: ssts-web/src/main/webapp/disinfectsystem/config/gzzyyfs/config.js =================================================================== diff -u -r37508 -r37540 --- ssts-web/src/main/webapp/disinfectsystem/config/gzzyyfs/config.js (.../config.js) (revision 37508) +++ ssts-web/src/main/webapp/disinfectsystem/config/gzzyyfs/config.js (.../config.js) (revision 37540) @@ -98,6 +98,14 @@ enableUrgentFunction:true, //是否禁用组织机构管理同步按钮 hiddenOrgunitSyncButton:true, + //入库单扩展字段 + expandFieldsOfSyncGodownEntry:[ + {"fieldName":"sterileBatchNumber","coloumnName":"灭菌批号"} + ], + //出库单扩展字段 + expandFieldsOfSyncGodownOut:[ + {"fieldName":"sterileBatchNumber","coloumnName":"灭菌批号"} + ], //是否禁用用户管理同步按钮 hiddenUserSyncButton:false } \ No newline at end of file Index: ssts-web/src/main/webapp/disinfectsystem/datasynchronization/inventory/showStorageEntryItem.jsp =================================================================== diff -u -r36651 -r37540 --- ssts-web/src/main/webapp/disinfectsystem/datasynchronization/inventory/showStorageEntryItem.jsp (.../showStorageEntryItem.jsp) (revision 36651) +++ ssts-web/src/main/webapp/disinfectsystem/datasynchronization/inventory/showStorageEntryItem.jsp (.../showStorageEntryItem.jsp) (revision 37540) @@ -21,6 +21,7 @@ InventoryTableManager inventoryTableManager = (InventoryTableManager)SpringBeanManger.getBean("inventoryTableManager"); Collection items = inventoryTableManager.findStorageEntryItems(request.getParameter("materialEntryId"), type,startDate,endDate); request.setAttribute("storageEntryItems", items); + request.setAttribute("type", type); %> @@ -32,6 +33,8 @@ + + @@ -56,6 +59,7 @@ 价格 批号 失效日期 + 灭菌批号 @@ -66,12 +70,41 @@  ${item.unitPrice }  ${item.batchNumber }  ${item.expDate } +  ${item.sterileBatchNumber } + \ No newline at end of file