Commit e302bdb7 by jianan

来佣率分隔符拆分读取佣率4

parent 8f064427
...@@ -638,7 +638,7 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte ...@@ -638,7 +638,7 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
? "未查询到预计来佣规格" ? "未查询到预计来佣规格"
: "未查询到预计来佣规格,不匹配条件:" + String.join("、", matchResult.getUnmatchedConditions()); : "未查询到预计来佣规格,不匹配条件:" + String.join("、", matchResult.getUnmatchedConditions());
log.info("未查询到预计来佣规格,当前规格:{}", JSONUtil.toJsonStr(expectedSpeciesList)); log.info("未查询到预计来佣规格,产品id:{},当前规格:{}", productLaunchBizId, JSONUtil.toJsonStr(expectedSpeciesList));
throw new BusinessException(ResultCode.FAIL.getCode(), errorMsg); throw new BusinessException(ResultCode.FAIL.getCode(), errorMsg);
} }
...@@ -818,6 +818,7 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte ...@@ -818,6 +818,7 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
map.put("PI", professionalInvestor); map.put("PI", professionalInvestor);
map.put("POLICY_CURRENCY", policy.getCurrency()); map.put("POLICY_CURRENCY", policy.getCurrency());
map.put("PROTECTION_PERIOD", policy.getGuaranteePeriod()); map.put("PROTECTION_PERIOD", policy.getGuaranteePeriod());
map.put("PROTECTION_PLAN", policy.getProductName());
return map; return map;
} }
......
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