|
|
|
@ -1469,7 +1469,7 @@ public class CaseServiceImpl implements CaseService {
|
|
|
|
|
//比较正确答案
|
|
|
|
|
List<CaseRetirementPlan> newCaseRetirementPlans = caseRetirementPlanMapper.selectByExampleWithBLOBs(caseRetirementPlanExample);
|
|
|
|
|
CaseRetirementPlan caseRetirementPlan = newCaseRetirementPlans.get(0);
|
|
|
|
|
wrongCount = getCaseRetirementPlanWrongCount(wrongCount,caseRetirementPlan);
|
|
|
|
|
wrongCount = getCaseRetirementPlanWrongCount(wrongCount, caseRetirementPlan);
|
|
|
|
|
setCount(stuTrainingWithBLOBs, wrongCount);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -1736,8 +1736,8 @@ public class CaseServiceImpl implements CaseService {
|
|
|
|
|
if (caseInvestmentPlans != null && !caseInvestmentPlans.isEmpty()) {
|
|
|
|
|
CaseInvestmentPlan investmentPlan = caseInvestmentPlans.get(0);
|
|
|
|
|
//当前客户所处家庭生命周期
|
|
|
|
|
if (investmentPlan.getLifeCycleId() != null) {
|
|
|
|
|
if (stuInvestmentPlan.getLifeCycleId() == null || !stuInvestmentPlan.getLifeCycleId().equals(investmentPlan.getLifeCycleId())) {
|
|
|
|
|
if (StringUtils.isNotBlank(investmentPlan.getLifeCycleId())) {
|
|
|
|
|
if (StringUtils.isNotBlank(stuInvestmentPlan.getLifeCycleId()) || !stuInvestmentPlan.getLifeCycleId().equals(investmentPlan.getLifeCycleId())) {
|
|
|
|
|
wrongCount += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|