|
|
@@ -365,7 +365,7 @@ public class InsFeeAuditServiceImpl extends ServiceImpl<InsFeeAuditMapper, InsFe
|
|
|
receiverDTO.setReceiverAmountLimit(equityAmount);
|
|
|
}
|
|
|
// 累加金额
|
|
|
- BigDecimal amount = Optional.ofNullable(rights.getAmount()).orElse(BigDecimal.ZERO);
|
|
|
+ BigDecimal amount = Optional.ofNullable(rights.getSettlePrice()).orElse(BigDecimal.ZERO);
|
|
|
Integer count = Optional.ofNullable(rights.getRightsCount()).orElse(0);
|
|
|
rightsTotalAmount = rightsTotalAmount.add(amount.multiply(new BigDecimal(count)));
|
|
|
|