Commit 938b3a9d by 徐高华

staffid

parent c92da3d2
......@@ -341,9 +341,6 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
@Override
public String addMemberUnionidRelatedNew(MemberUnionidRelatedDTO dto, String wxUserId) {
TabHaobanStaff staff = this.staffMapper.selectByUserIdAndEnterpriseId(dto.getWxEnterpriseId(), wxUserId) ;
String staffId = staff.getStaffId() ;
dto.setStaffId(staffId);
//解析组装信息
dto = getMemberUnionidRelatedDTONew(dto,wxUserId);
if (null == dto) {
......@@ -387,8 +384,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
}
String staffId = staff.getStaffId();
String staffName = staff.getStaffName();
String staffWxUserId = staff.getWxUserId();
log.info("新增外部联系人,staffWxUserId={},staffId={}", staffWxUserId,staffId);
log.info("新增外部联系人,staffId={}",staffId);
StaffClerkRelationDTO staffClerkRelationDTO = null;
//活码处理 "DT" "HM"
WxUserAddLogQDTO wxUserAddLogQDTO = new WxUserAddLogQDTO();
......@@ -1111,9 +1107,6 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
private void editMemberUnionidRelatedProcess(MemberUnionidRelatedDTO dto, String wxUserId) {
log.info("修改标签/会员信息回调:{}", JSONObject.toJSONString(dto));
TabHaobanStaff staff = this.staffMapper.selectByUserIdAndEnterpriseId(dto.getWxEnterpriseId(), wxUserId) ;
String staffId = staff.getStaffId() ;
dto.setStaffId(staffId);
TabHaobanWxEnterprise wxEnterprise = wxEnterpriseService.getEnterpriseBycorpId(dto.getCorpid());
if (null == wxEnterprise) {
return;
......
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