Commit 3f524550 by guojx

活码链接详情调整

parent f83c2091
......@@ -609,13 +609,15 @@ public class HmLinkController {
HmLinkVO linkVO = EntityUtil.changeEntityByJSON(HmLinkVO.class, link);
//是否达上线
List<String> storeIdList = this.hmQrcodeApiService.getHmStoreForWxa(wxEnterpriseId, enterpriseId) ;
linkVO.getStoreList().forEach(item->{
if(storeIdList.contains(item.getStoreId())) {
item.setIsOver(0);
}else {
item.setIsOver(1);
}
});
if (CollectionUtils.isNotEmpty(linkVO.getStoreList())) {
linkVO.getStoreList().forEach(item -> {
if (storeIdList.contains(item.getStoreId())) {
item.setIsOver(0);
} else {
item.setIsOver(1);
}
});
}
String memberLabelId = link.getMemberLabelId();
if (StringUtils.isNotBlank(memberLabelId)) {
......
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