|
@@ -28,7 +28,7 @@ public class DecimalUtils {
|
|
|
public static BigDecimal getAbsAndScale(BigDecimal req, int length){
|
|
|
if(Objects.isNull(req))
|
|
|
return null;
|
|
|
- return req.abs().setScale(length, RoundingMode.HALF_UP);
|
|
|
+ return req.abs().setScale(length, RoundingMode.DOWN);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -40,7 +40,7 @@ public class DecimalUtils {
|
|
|
public static String getAbsAndScaleStr(String req, int length){
|
|
|
if(StringUtils.isBlank(req))
|
|
|
return null;
|
|
|
- return new BigDecimal(req).abs().setScale(length, RoundingMode.HALF_UP).toString();
|
|
|
+ return new BigDecimal(req).abs().setScale(length, RoundingMode.DOWN).toString();
|
|
|
}
|
|
|
|
|
|
public static String getAbsForArray(String list, int length) {
|