Commit f21b6fe9 by 徐高华

过滤主导购

parent 8afdd3e6
...@@ -257,12 +257,14 @@ public class HmLinkApiServiceImpl implements HmLinkApiService { ...@@ -257,12 +257,14 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
// 服务门店 // 服务门店
if (null != fwStore) { if (null != fwStore) {
log.info("处理服务门店逻辑"); log.info("处理服务门店逻辑");
List<String> clerkIdList = new ArrayList<>() ;
if (fwStore.getZs() == 1 && StringUtils.isNotBlank(mainClerkId)) { if (fwStore.getZs() == 1 && StringUtils.isNotBlank(mainClerkId)) {
hm = this.getHmFromClerk(mainClerkId, wxEnterpriseId); hm = this.getHmFromClerk(mainClerkId, wxEnterpriseId);
clerkIdList.add(mainClerkId);
} }
if (null == hm && StringUtils.isNotBlank(mainStoreId)) { if (null == hm && StringUtils.isNotBlank(mainStoreId)) {
hm = this.getHmFormStore(wxEnterpriseId, mainStoreId, fwStore.getDz(), fwStore.getDy(), hm = this.getHmFormStore(wxEnterpriseId, mainStoreId, fwStore.getDz(), fwStore.getDy(),
Arrays.asList(mainClerkId)); clerkIdList);
} }
if (null != hm) { if (null != hm) {
remarkMap.put("sm", "会员主门店活码"); remarkMap.put("sm", "会员主门店活码");
......
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