Browse Source

移动端销售订单详情金融方案按格式拼接

master
dimengzhe 2 years ago
parent
commit
16b61cb12c
  1. 4
      anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/biz/bussalesorder/BusSalesOrderService.java

4
anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/biz/bussalesorder/BusSalesOrderService.java

@ -3373,9 +3373,9 @@ public class BusSalesOrderService extends MybatisBaseService<BusSalesOrderMapper
SolutionsDetailsVo solutionsDetailsVo = solutionsDetailsVoResultBean.getData();
StringBuilder typeValue = new StringBuilder();
if (StringUtils.isNotBlank(solutionsDetailsVo.getTypeKey())) {
typeValue = typeValue.append("三方金融类型:" + solutionsDetailsVo.getType());
typeValue = typeValue.append("销售类型:" + solutionsDetailsVo.getType());
} else {
typeValue = typeValue.append("三方金融类型:" + "-");
typeValue = typeValue.append("销售类型:" + "-");
}
list.add(getValueSpanSize(typeValue.toString(), 1, 0, false));
if (StringUtils.isNotBlank(solutionsDetailsVo.getTypeKey()) && "02".equals(solutionsDetailsVo.getTypeKey())) {

Loading…
Cancel
Save