|
|
|
@@ -1042,7 +1042,7 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
|
for (int i = 0; i < arraySize; i++) { |
|
|
|
JSONObject rentInfoObject = rentInfoArray.getJSONObject(i); |
|
|
|
String priceStr = rentInfoObject.getString("price"); |
|
|
|
if (priceStr.equalsIgnoreCase("NaN")) { |
|
|
|
if (priceStr == null || priceStr.equalsIgnoreCase("NaN")) { |
|
|
|
priceStr = "0"; |
|
|
|
} |
|
|
|
priceArr[i] = new BigDecimal(priceStr).multiply(new BigDecimal(100)).longValue(); |
|
|
|
|