|
@@ -812,6 +812,11 @@ public class QwExternalContactController extends BaseController
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
private List<Long> getList(Integer addType, QwExternalContactParam param){
|
|
private List<Long> getList(Integer addType, QwExternalContactParam param){
|
|
|
|
|
+ if (param != null && StringUtils.isNotBlank(param.getQwUserName())){
|
|
|
|
|
+ String qwUserName = param.getQwUserName();
|
|
|
|
|
+ String result = qwUserName.replaceAll("\\(\\d+\\)$", "");
|
|
|
|
|
+ param.setQwUserName(result);
|
|
|
|
|
+ }
|
|
|
if(addType == null){
|
|
if(addType == null){
|
|
|
return Collections.emptyList();
|
|
return Collections.emptyList();
|
|
|
}
|
|
}
|