|
|
|
@@ -831,7 +831,11 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
|
long[] priceArr = new long[arraySize]; |
|
|
|
for (int i = 0; i < arraySize; i++) { |
|
|
|
JSONObject rentInfoObject = rentInfoArray.getJSONObject(i); |
|
|
|
priceArr[i] = new BigDecimal(rentInfoObject.getString("price")).multiply(new BigDecimal(100)).longValue(); |
|
|
|
String priceStr = rentInfoObject.getString("price"); |
|
|
|
if(priceStr.equalsIgnoreCase("NaN")) { |
|
|
|
priceStr = "0"; |
|
|
|
} |
|
|
|
priceArr[i] = new BigDecimal(priceStr).multiply(new BigDecimal(100)).longValue(); |
|
|
|
} |
|
|
|
priceList.add(priceArr); |
|
|
|
//大于一年 |
|
|
|
|