Index: ssts-userecord/src/main/java/com/forgon/disinfectsystem/useRecord/service/UseRecordManagerImpl.java =================================================================== diff -u -r27431 -r27455 --- ssts-userecord/src/main/java/com/forgon/disinfectsystem/useRecord/service/UseRecordManagerImpl.java (.../UseRecordManagerImpl.java) (revision 27431) +++ ssts-userecord/src/main/java/com/forgon/disinfectsystem/useRecord/service/UseRecordManagerImpl.java (.../UseRecordManagerImpl.java) (revision 27455) @@ -7787,7 +7787,9 @@ TousseItemVo vo = new TousseItemVo(); vo.setTousseName(tousseName); vo.setAmount((int)amount); - vo.setTallyAmount((int)tallyAmount); +// vo.setTallyAmount((int)tallyAmount); + //清点数量设置为回收数量 + vo.setTallyAmount(vo.getAmount()); vo.setRecyclingAmount((int)recyclingAmount); tousseItemVoList.add(vo); map.put(serialNumber, tousseItemVoList); @@ -7800,7 +7802,9 @@ TousseItemVo vo = new TousseItemVo(); vo.setTousseName(tousseName); vo.setAmount((int)amount); - vo.setTallyAmount((int)tallyAmount); +// vo.setTallyAmount((int)tallyAmount); + //清点数量设置为回收数量 + vo.setTallyAmount(vo.getAmount()); vo.setRecyclingAmount((int)recyclingAmount); tousseItemVoList.add(vo); map.put(serialNumber, tousseItemVoList); @@ -7812,7 +7816,9 @@ TousseItemVo vo = new TousseItemVo(); vo.setTousseName(tousseName); vo.setAmount((int)amount); - vo.setTallyAmount((int)tallyAmount); +// vo.setTallyAmount((int)tallyAmount); + //清点数量设置为回收数量 + vo.setTallyAmount(vo.getAmount()); vo.setRecyclingAmount((int)recyclingAmount); tousseItemVoList.add(vo); map.put(serialNumber, tousseItemVoList);