Explorar el Código

fix bug

release_toaliyun_real
zhengfangyuan hace 3 años
padre
commit
59723eec98
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. +3
    -2
      mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java

+ 3
- 2
mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java Ver fichero

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


Cargando…
Cancelar
Guardar