Index: ssts-recyclingrecord/src/main/java/com/forgon/disinfectsystem/recyclingrecord/action/RecyclingRecordAction.java =================================================================== diff -u -r13653 -r13828 --- ssts-recyclingrecord/src/main/java/com/forgon/disinfectsystem/recyclingrecord/action/RecyclingRecordAction.java (.../RecyclingRecordAction.java) (revision 13653) +++ ssts-recyclingrecord/src/main/java/com/forgon/disinfectsystem/recyclingrecord/action/RecyclingRecordAction.java (.../RecyclingRecordAction.java) (revision 13828) @@ -825,7 +825,7 @@ map.put("basket", classifyBasket); map.put("basketStatus", basketStatus); map.put("tousseInstance", tousseInstance); - map.put("user", user); + map.put("user", buildUserJSONObjectForGetBarcodeInfo(user)); map.put("isOneLevelSupply", isOneLevelSupply);// 是否为一级供应室 map.put("application", recyclingApplications); map.put("errorMessage", errorMessage); @@ -842,6 +842,11 @@ return null; } + private JSONObject buildUserJSONObjectForGetBarcodeInfo(User user){ + JSONObject userObj = new JSONObject(); + userObj.put("fullName", user.getFullName()); + return userObj; + } /** * (触摸屏回收页面)查出所有待回收申请单 *