Browse Source

催款统计导出BUG修复

anderx 4 years ago
parent
commit
ae919ae68c

+ 0 - 2
src/main/java/com/goafanti/customer/service/impl/CustomerServiceImpl.java

@@ -590,14 +590,12 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
 		List<FollowListBo> list = (List<FollowListBo>) page.getList();
 		for (FollowListBo bo : list) {
 			if (bo.getAid().equals(TokenManager.getAdminId())) {
-
 				bo.setReadOnly(AFTConstants.NO);
 			} else {
 				bo.setContactMobile("***");
 				bo.setContacts("***");
 				bo.setReadOnly(AFTConstants.YES);
 			}
-
 		}
 		page.setList(list);
 		return page;