Browse Source

新增客户的修改功能(查询 修改 提交 审核 分配)

master
yxt_djz 3 years ago
parent
commit
aa02b4b6fd
  1. 6
      anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java

6
anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java

@ -982,8 +982,8 @@ public class CrmCustomerTempService extends MybatisBaseService<CrmCustomerTempMa
}
}
}
customerNoPrefix = customerNoPrefix + HanZiConverterPinYin.getPinYinFirst(name) + mobile;
return customerNoPrefix;
customerNoPrefix = customerNoPrefix+ mobile + HanZiConverterPinYin.getPinYinFirst(name) ;
return customerNoPrefix.length()>30?customerNoPrefix.substring(0,29):customerNoPrefix;
}
private Map<String, String> genetrateCustomerNumO(String customerTypeKey, SysUserInfoVo sysUserInfoVo) {
@ -1113,7 +1113,7 @@ public class CrmCustomerTempService extends MybatisBaseService<CrmCustomerTempMa
bdCustomer.setFNumber(crmCustomerTemp.getCustomerNo());
bdCustomers.add(bdCustomer);
}
finKingDeeFeign.saveBdCustomers(bdCustomers);
finKingDeeFeign.draftBdCustomers(bdCustomers);
return rb.success();
}
}
Loading…
Cancel
Save