瀏覽代碼

权益发放接口调整

wanghao 5 月之前
父節點
當前提交
52df3714c2

+ 1 - 1
tenant/insurance/quotation-summary/src/main/java/com/jzg/quotation/summary/service/impl/InsFeeAuditServiceImpl.java

@@ -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)));