Index: ssts-recyclingrecord/src/main/java/com/forgon/disinfectsystem/recyclingrecord/service/RecyclingRecordManagerImpl.java =================================================================== diff -u -r14080 -r14084 --- ssts-recyclingrecord/src/main/java/com/forgon/disinfectsystem/recyclingrecord/service/RecyclingRecordManagerImpl.java (.../RecyclingRecordManagerImpl.java) (revision 14080) +++ ssts-recyclingrecord/src/main/java/com/forgon/disinfectsystem/recyclingrecord/service/RecyclingRecordManagerImpl.java (.../RecyclingRecordManagerImpl.java) (revision 14084) @@ -519,7 +519,7 @@ //修改回收记录时已清洗的篮筐不能再追加物品 if(basket != null){ List washRecords = basket.getWashAndDisinfectRecords(); - if(washRecords != null && washRecords.size() > 0){ + if(washRecords != null && washRecords.size() > 0 && json.optInt("amount") > 0){ throw new RuntimeException("条码为 "+basketBarcode+"的篮筐已关联清洗记录,不能保存!"); } }