Commit 74c81091 by 徐高华

导购在转移门店、成员换绑的备注

parent 9b2042f2
......@@ -221,6 +221,7 @@ public class StaffClerkRelationServiceImpl implements StaffClerkRelationService
map.put("enterpriseId", enterpriseId) ;
map.put("memberId", memberId) ;
map.put("clerkId", newClerkId) ;
map.put("source","1") ;
dto.setParams(map);
this.haobanCommonMQApiService.putCommonMessage(dto);
}
......
......@@ -133,7 +133,12 @@ public class HaobanCommonMQApiServiceImpl implements HaobanCommonMQApiService {
String memberId = map.get("memberId") ;
enterpriseId = map.get("enterpriseId") ;
String clerkId = map.get("clerkId") ;
this.memberOpenCardBusinessService.memberClerkByQywx(enterpriseId, memberId, clerkId);
String source = map.get("source") ;
if(null != source) {
this.memberOpenCardBusinessService.memberClerkByQywx(enterpriseId, memberId, clerkId , 1);
}else {
this.memberOpenCardBusinessService.memberClerkByQywx(enterpriseId, memberId, clerkId);
}
break ;
default:
break;
......
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