Index: ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/RecyclingApplicationManagerImpl.java =================================================================== diff -u -r14825 -r14843 --- ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/RecyclingApplicationManagerImpl.java (.../RecyclingApplicationManagerImpl.java) (revision 14825) +++ ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/RecyclingApplicationManagerImpl.java (.../RecyclingApplicationManagerImpl.java) (revision 14843) @@ -2692,7 +2692,7 @@ price = 0.0; } Double fPrice = MathTools.mul(price, tpf, 2).doubleValue(); - Double rowPrice = MathTools.mul(fPrice,tousseItem.getAmount(),2).doubleValue(); + Double rowPrice = MathTools.mul(fPrice,tousseItem.getEditAmount(),2).doubleValue(); tousseItem.setPrice(fPrice); tousseItem.setRowPrice(rowPrice); } @@ -2719,7 +2719,7 @@ //price = MathTools.mul(price, dpf, 2); BigDecimal bg = MathTools.mul(price, dpf); price = bg == null ? 0.0 : bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue(); - Double rowPrice = MathTools.mul(price,tousseItem.getAmount(),2).doubleValue(); + Double rowPrice = MathTools.mul(price,tousseItem.getEditAmount(),2).doubleValue(); tousseItem.setPrice(price); tousseItem.setRowPrice(rowPrice); tousseItem.setDisposableGoodsId(diposableGoods.getId());