Commit 8b318575 by zhangxingmin

push

parent 9cecd195
......@@ -96,6 +96,11 @@ public class GenerateExpectedFortuneDto {
private String ruleItemBizId;
/**
* 期交保费
*/
private BigDecimal paymentPremium;
/**
* 获得积分业务员绑定的基本法列表对应计算值
*/
private List<AlgorithmResDto> algorithmResDtoList;
......
......@@ -316,6 +316,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
.policyNo(brokerDto.getPolicyNo())
//佣金发放状态 0=待出账 1=可出账 2=已出账
.status(FortuneStatusEnum.WAIT.getItemValue())
//期交保费
.paymentPremium(brokerDto.getPaymentPremium())
//所属团队 TODO
// .team()
//所属团队业务ID TODO
......@@ -383,6 +385,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
.policyNo(brokerDto.getPolicyNo())
//佣金发放状态 0=待出账 1=可出账 2=已出账
.status(FortuneStatusEnum.WAIT.getItemValue())
//期交保费
.paymentPremium(brokerDto.getPaymentPremium())
//所属团队 TODO
// .team()
//所属团队业务ID TODO
......@@ -418,8 +422,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
//保单发佣批次ID
// fortune.setBatchBizId(fortuneDto.getBatchBizId());
fortune.setFortuneBizType("R");
fortune.setPolicyCurrency("");
fortune.setPremium(null);
fortune.setPolicyCurrency(fortuneDto.getCurrency());
fortune.setPremium(fortuneDto.getPaymentPremium());
//转介人姓名 (获得积分的业务员)
fortune.setBroker(fortuneDto.getBroker());
//转介人业务ID (获得积分的业务员)
......
......@@ -49,6 +49,11 @@ public class QueryPolicyAndBrokerDto {
*/
private LocalDate effectiveDate;
/**
* 期交保费
*/
private BigDecimal paymentPremium;
//======保单信息end=======
//======保单转介人信息start=======
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment