|
|
|
@@ -1134,8 +1134,9 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
|
//联营面积取高时,联营扣点调整比率设置 |
|
|
|
long[] revenuePriceArrs = new long[size]; |
|
|
|
if (wxRentContract.getType().equals(EnumRentContractType.RENT_BY_AREA_AND_JOINT.getCode())) { |
|
|
|
revenuePriceArrs[0] = price; |
|
|
|
BigDecimal revenuePriceD = new BigDecimal(price); |
|
|
|
long _revenuePriceD = wxRentContract.getRevenue()*wxRentContract.getPayRatio()/10000; |
|
|
|
revenuePriceArrs[0] = _revenuePriceD; |
|
|
|
BigDecimal revenuePriceD = new BigDecimal(_revenuePriceD); |
|
|
|
//联营扣点调整比率 |
|
|
|
String revenueRationSet = wxRentContract.getRevenueRatioSet(); |
|
|
|
List<Long> revenueRationSets = null; |
|
|
|
|