|
|
|
@@ -1223,7 +1223,7 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
|
JSONObject jsonObject = array.getJSONObject(i); |
|
|
|
String perMonthMoney = jsonObject.getString("perMonthMoney"); |
|
|
|
if(StringUtils.isNotBlank(perMonthMoney) && !"0".equals(perMonthMoney)){ |
|
|
|
BigDecimal priceD = new BigDecimal(perMonthMoney); |
|
|
|
BigDecimal priceD = new BigDecimal(perMonthMoney).multiply(new BigDecimal(100)); |
|
|
|
priceArrs[i] = priceD.setScale(0, RoundingMode.HALF_EVEN).longValue(); |
|
|
|
}else{ |
|
|
|
priceArrs[i] = 0; |
|
|
|
|