|
@@ -1372,7 +1372,11 @@ public class ProjectServiceImpl extends ServiceImpl<ProjectMapper, Project> impl
|
|
|
double costTime = 0;
|
|
|
List<Map<String, Object>> mapList = membList.stream().filter(mb -> mb.get("creatorId").equals(user.getId())).collect(Collectors.toList());
|
|
|
List<String> membRowData=new ArrayList<>();
|
|
|
- membRowData.add(user.getName());
|
|
|
+ if(wxCorpInfo!=null&&wxCorpInfo.getSaasSyncContact()==1){
|
|
|
+ membRowData.add((String)("$userName="+user.getCorpwxUserid()+"$"));
|
|
|
+ }else {
|
|
|
+ membRowData.add(user.getName());
|
|
|
+ }
|
|
|
for(Object i:projectIds){
|
|
|
List<Map<String, Object>> resultList = mapList.stream().filter(mp -> mp.get("projectId").equals(i)).collect(Collectors.toList());
|
|
|
if(resultList.size()>0){
|