Commit 29cbd6cc by 墨竹

feat:加好友增加判断

parent 0aff4774
......@@ -401,7 +401,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
if (corpid.startsWith("ww")) {
Integer agreeExternalUseridFlag = wxEnterpriseDTO.getAgreeExternalUseridFlag();
log.info("加好友ww开头的,并且是agreeExternalUseridFlag:{}走原来的逻辑(根据同一开平不同开平走):{}", agreeExternalUseridFlag, corpid);
if (agreeExternalUseridFlag == 1) {
if (agreeExternalUseridFlag != null && agreeExternalUseridFlag == 1) {
log.info("同意直接走,发送欢迎语逻辑:wxEnterpriseId:{}", wxEnterpriseId);
addFriendByWelcome(dto, staffClerkRelationDTO);
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment