|
@@ -1468,14 +1468,14 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
|
|
HSSFRow row = sheet.createRow(rowNum);
|
|
HSSFRow row = sheet.createRow(rowNum);
|
|
row.createCell(0).setCellValue(rowNum);
|
|
row.createCell(0).setCellValue(rowNum);
|
|
if(wxCorpInfo!=null&&wxCorpInfo.getSaasSyncContact()==1){
|
|
if(wxCorpInfo!=null&&wxCorpInfo.getSaasSyncContact()==1){
|
|
- row.createCell(1).setCellValue("$userName="+item.getCorpwxUserid()+"$");
|
|
|
|
|
|
+ row.createCell(1).setCellValue("$userName="+item.getCorpwxUserid()==null?"":item.getCorpwxUserid()+"$");
|
|
}else {
|
|
}else {
|
|
row.createCell(1).setCellValue(item.getName());
|
|
row.createCell(1).setCellValue(item.getName());
|
|
}
|
|
}
|
|
row.createCell(2).setCellValue(item.getRoleName());
|
|
row.createCell(2).setCellValue(item.getRoleName());
|
|
row.createCell(3).setCellValue(item.getPhone());
|
|
row.createCell(3).setCellValue(item.getPhone());
|
|
if(wxCorpInfo!=null&&wxCorpInfo.getSaasSyncContact()==1){
|
|
if(wxCorpInfo!=null&&wxCorpInfo.getSaasSyncContact()==1){
|
|
- row.createCell(4).setCellValue("$departmentName="+item.getCorpwxDeptid()+"$");
|
|
|
|
|
|
+ row.createCell(4).setCellValue("$departmentName="+item.getCorpwxDeptid()==null?"":item.getCorpwxDeptid()+"$");
|
|
}else {
|
|
}else {
|
|
row.createCell(4).setCellValue(item.getDepartmentName());
|
|
row.createCell(4).setCellValue(item.getDepartmentName());
|
|
}
|
|
}
|