Commit c0d5ebc5 authored by Junling Bu's avatar Junling Bu
Browse files

Merge branch 'master' of https://gitee.com/linlinjava/litemall

parents fa189cdc d0a5ee23
...@@ -290,8 +290,13 @@ public class WxOrderService { ...@@ -290,8 +290,13 @@ public class WxOrderService {
} }
// (2)不允许参加自己开团的团购 // (2)不允许参加自己开团的团购
LitemallGroupon groupon = grouponService.queryById(userId, grouponLinkId); LitemallGroupon groupon = grouponService.queryById(userId, grouponLinkId);
if(groupon.getCreatorUserId().equals(userId)){ // if(groupon.getCreatorUserId().equals(userId)){
return ResponseUtil.fail(GROUPON_JOIN, "团购活动已经参加!"); // return ResponseUtil.fail(GROUPON_JOIN, "团购活动已经参加!");
// }
if(groupon!=null) {
if(groupon.getCreatorUserId().equals(userId)){
return ResponseUtil.fail(GROUPON_JOIN, "团购活动已经参加!");
}
} }
} }
} }
......
Supports Markdown
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