|
|
@ -3550,15 +3550,22 @@ public class BusSalesOrderService extends MybatisBaseService<BusSalesOrderMapper |
|
|
|
List<OrderSolutionVo> list = new ArrayList<>(); |
|
|
|
if (solutionsDetailsVoResultBean.getData() != null) { |
|
|
|
SolutionsDetailsVo solutionsDetailsVo = solutionsDetailsVoResultBean.getData(); |
|
|
|
StringBuilder typeValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionsDetailsVo.getTypeKey())) { |
|
|
|
typeValue = typeValue.append("销售类型:" + solutionsDetailsVo.getType()); |
|
|
|
} else { |
|
|
|
typeValue = typeValue.append("销售类型:" + appOrderDetailsVo.getPayType()); |
|
|
|
} |
|
|
|
list.add(getValueSpanSize(typeValue.toString(), 1, 0, false)); |
|
|
|
|
|
|
|
if (StringUtils.isNotBlank(solutionsDetailsVo.getTypeKey()) && "02".equals(solutionsDetailsVo.getTypeKey())) { |
|
|
|
StringBuilder typeValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionsDetailsVo.getTypeKey())) { |
|
|
|
typeValue = typeValue.append("销售类型:" + solutionsDetailsVo.getType()); |
|
|
|
} else { |
|
|
|
typeValue = typeValue.append("销售类型:" + appOrderDetailsVo.getPayType()); |
|
|
|
} |
|
|
|
list.add(getValueSpanSize(typeValue.toString(), 2, 0, false)); |
|
|
|
//资方及产品政策
|
|
|
|
StringBuilder polivyNameValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionsDetailsVo.getPolicyName())) { |
|
|
|
polivyNameValue = polivyNameValue.append("资方及产品政策:").append(solutionsDetailsVo.getPolicyName()); |
|
|
|
} else { |
|
|
|
polivyNameValue = polivyNameValue.append("资方及产品政策:").append("-"); |
|
|
|
} |
|
|
|
list.add(getValueSpanSize(polivyNameValue.toString(), 2, 0, false)); |
|
|
|
list.add(getValueSpanSize("融资项目", 2, 1, true)); |
|
|
|
//厂家贴息
|
|
|
|
StringBuilder factoryDiscountValue = new StringBuilder(); |
|
|
@ -3586,6 +3593,13 @@ public class BusSalesOrderService extends MybatisBaseService<BusSalesOrderMapper |
|
|
|
} |
|
|
|
list.add(getValueSpanSize(serviceAmountValue.toString(), 2, 0, false)); |
|
|
|
} else { |
|
|
|
StringBuilder typeValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionsDetailsVo.getTypeKey())) { |
|
|
|
typeValue = typeValue.append("销售类型:" + solutionsDetailsVo.getType()); |
|
|
|
} else { |
|
|
|
typeValue = typeValue.append("销售类型:" + appOrderDetailsVo.getPayType()); |
|
|
|
} |
|
|
|
list.add(getValueSpanSize(typeValue.toString(), 1, 0, false)); |
|
|
|
//是否打包
|
|
|
|
StringBuilder isPackValue = new StringBuilder(); |
|
|
|
if (StringUtils.isNotBlank(solutionsDetailsVo.getIsPack())) { |
|
|
|