|
|
@@ -636,7 +636,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
|
|
|
@Override
|
|
|
@Transactional
|
|
|
- public int addFollow(FollowBusinessBo fbb,String ufid) throws BusinessException {
|
|
|
+ public int addFollow(FollowBusinessBo fbb,String ufid,Integer mainStatus) throws BusinessException {
|
|
|
// 更新跟进记录表
|
|
|
SimpleDateFormat format = new SimpleDateFormat(AFTConstants.YYYYMMDDHHMMSS);
|
|
|
UserFollow userFollow = new UserFollow();
|
|
|
@@ -785,7 +785,9 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
|
|
|
}
|
|
|
}
|
|
|
+ if (mainStatus==1){
|
|
|
followProject(fbb.getUid());
|
|
|
+ }
|
|
|
return 1;
|
|
|
}
|
|
|
|