|
|
@ -1741,8 +1741,11 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
//融资票据
|
|
|
|
StringBuilder accessoriesAmountValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionssVo.getAccessoriesAmount())) { |
|
|
|
if(!solutionssVo.isAccessoriesAmountCb()){ |
|
|
|
accessoriesAmountValue = accessoriesAmountValue.append("\t").append("配件:").append("0"); |
|
|
|
}else{ |
|
|
|
accessoriesAmountValue = accessoriesAmountValue.append("\t").append("配件:").append(solutionssVo.getAccessoriesAmount()); |
|
|
|
|
|
|
|
} |
|
|
|
} else { |
|
|
|
accessoriesAmountValue = accessoriesAmountValue.append("\t").append("配件:").append("-"); |
|
|
|
} |
|
|
@ -1750,8 +1753,11 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
//挂车
|
|
|
|
StringBuilder trailerAmountValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionssVo.getTrailerAmount())) { |
|
|
|
if(!solutionssVo.isTrailerAmountCb()){ |
|
|
|
trailerAmountValue = trailerAmountValue.append("\t").append("挂车:").append("0"); |
|
|
|
}else{ |
|
|
|
trailerAmountValue = trailerAmountValue.append("\t").append("挂车:").append(solutionssVo.getTrailerAmount()); |
|
|
|
|
|
|
|
} |
|
|
|
} else { |
|
|
|
trailerAmountValue = trailerAmountValue.append("\t").append("挂车:").append("-"); |
|
|
|
} |
|
|
@ -1759,8 +1765,11 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
//保险
|
|
|
|
StringBuilder premiumValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionssVo.getPremium())) { |
|
|
|
if (!solutionssVo.isPremiumCb()) { |
|
|
|
premiumValue = premiumValue.append("\t").append("保险:").append("0"); |
|
|
|
}else{ |
|
|
|
premiumValue = premiumValue.append("\t").append("保险:").append(solutionssVo.getPremium()); |
|
|
|
|
|
|
|
} |
|
|
|
} else { |
|
|
|
premiumValue = premiumValue.append("\t").append("保险:").append("-"); |
|
|
|
} |
|
|
@ -1768,7 +1777,11 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
//购置税
|
|
|
|
StringBuilder purchaseTaxValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionssVo.getPurchaseTax())) { |
|
|
|
if(!solutionssVo.isPurchaseTaxCb()){ |
|
|
|
purchaseTaxValue = purchaseTaxValue.append("\t").append("购置税:").append("0"); |
|
|
|
}else{ |
|
|
|
purchaseTaxValue = purchaseTaxValue.append("\t").append("购置税:").append(solutionssVo.getPurchaseTax()); |
|
|
|
} |
|
|
|
} else { |
|
|
|
purchaseTaxValue = purchaseTaxValue.append("\t").append("购置税:").append("-"); |
|
|
|
} |
|
|
@ -1777,7 +1790,6 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
StringBuilder downPayRatioValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionssVo.getDownPayRatio())) { |
|
|
|
downPayRatioValue = downPayRatioValue.append("首付比例(%):").append(solutionssVo.getDownPayRatio()); |
|
|
|
|
|
|
|
} else { |
|
|
|
downPayRatioValue = downPayRatioValue.append("首付比例(%):").append("-"); |
|
|
|
} |
|
|
@ -1786,7 +1798,6 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
StringBuilder downPayAmountValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionssVo.getDownPayAmount())) { |
|
|
|
downPayAmountValue = downPayAmountValue.append("首付金额:").append(solutionssVo.getDownPayAmount()); |
|
|
|
|
|
|
|
} else { |
|
|
|
downPayAmountValue = downPayAmountValue.append("首付金额:").append("-"); |
|
|
|
} |
|
|
@ -2237,8 +2248,6 @@ public class LoanSolutionsService extends MybatisBaseService<LoanSolutionsMapper |
|
|
|
SolutionssVo solutionssVo = new SolutionssVo(); |
|
|
|
BeanUtil.copyProperties(query, solutionssVo); |
|
|
|
if (query.isShowMore()) { |
|
|
|
|
|
|
|
|
|
|
|
if (query.isPremiumCb()) { |
|
|
|
//保险
|
|
|
|
String premium = query.getPremium(); |
|
|
|