|
@@ -227,9 +227,9 @@ public class BuyingMoreService implements BaseService<BuyingMore, BuyingMoreExam
|
|
|
result.setSigningDate(contractManage.getSigningDate());
|
|
|
result.setHousePrice(contractManage.getHousePrice());
|
|
|
// 买受人最新份额占比 = 合同中买受人产权份额占比+已增购的历史记录份额-已回购的历史份额
|
|
|
- String allBuyerProportion = extendMapper.getAllBuyerProportion(contractManage.getHouseId());
|
|
|
+ String allTransferProportion = extendMapper.getAllTransferProportion(contractManage.getHouseId());
|
|
|
BigDecimal baseBuyerProportion = new BigDecimal(contractManage.getBuyerProportion().toString());
|
|
|
- BigDecimal buyerProportion = baseBuyerProportion.add(new BigDecimal(allBuyerProportion));
|
|
|
+ BigDecimal buyerProportion = baseBuyerProportion.add(new BigDecimal(allTransferProportion));
|
|
|
result.setBuyerProportion(buyerProportion.doubleValue());
|
|
|
return result;
|
|
|
|