Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
6fd5a0c7
Commit
6fd5a0c7
authored
Nov 01, 2024
by
王祖波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
无法邀请自己逻辑修改
parent
eec213b0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
GroupChatActivityInviteLogServiceImpl.java
...vice/chat/impl/GroupChatActivityInviteLogServiceImpl.java
+5
-0
GroupChatActivityShareApiServiceImpl.java
...e/out/impl/chat/GroupChatActivityShareApiServiceImpl.java
+0
-3
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/chat/impl/GroupChatActivityInviteLogServiceImpl.java
View file @
6fd5a0c7
...
@@ -254,6 +254,11 @@ public class GroupChatActivityInviteLogServiceImpl implements GroupChatActivityI
...
@@ -254,6 +254,11 @@ public class GroupChatActivityInviteLogServiceImpl implements GroupChatActivityI
return
false
;
return
false
;
}
}
}
}
String
memberId
=
chatUser
.
getMemberId
();
if
(
Objects
.
equals
(
memberId
,
context
.
getInviterMemberId
()))
{
logger
.
info
(
"无法邀请自己"
);
return
false
;
}
TabGroupChatActivityInviteLog
inviteLog
=
new
TabGroupChatActivityInviteLog
();
TabGroupChatActivityInviteLog
inviteLog
=
new
TabGroupChatActivityInviteLog
();
inviteLog
.
setChatActivityId
(
context
.
getChatActivityId
());
inviteLog
.
setChatActivityId
(
context
.
getChatActivityId
());
inviteLog
.
setInviteeUserId
(
chatUser
.
getUserId
());
inviteLog
.
setInviteeUserId
(
chatUser
.
getUserId
());
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/chat/GroupChatActivityShareApiServiceImpl.java
View file @
6fd5a0c7
...
@@ -56,9 +56,6 @@ public class GroupChatActivityShareApiServiceImpl implements GroupChatActivitySh
...
@@ -56,9 +56,6 @@ public class GroupChatActivityShareApiServiceImpl implements GroupChatActivitySh
activityHmQDTO
.
getInviterMemberId
())
||
activityHmQDTO
.
getChatActivityId
()
==
null
)
{
activityHmQDTO
.
getInviterMemberId
())
||
activityHmQDTO
.
getChatActivityId
()
==
null
)
{
return
ServiceResponse
.
failure
(
"500"
,
"参数异常"
);
return
ServiceResponse
.
failure
(
"500"
,
"参数异常"
);
}
}
if
(
Objects
.
equals
(
activityHmQDTO
.
getInviterMemberId
(),
activityHmQDTO
.
getInviteeMemberId
()))
{
return
ServiceResponse
.
failure
(
"500"
,
"无法邀请自己"
);
}
try
{
try
{
List
<
GroupChatHmBO
>
hmBOList
=
groupChatActivityService
.
listGroupChatHm
(
activityHmQDTO
);
List
<
GroupChatHmBO
>
hmBOList
=
groupChatActivityService
.
listGroupChatHm
(
activityHmQDTO
);
return
ServiceResponse
.
success
(
EntityUtil
.
changeEntityListNew
(
GroupChatHmDTO
.
class
,
hmBOList
));
return
ServiceResponse
.
success
(
EntityUtil
.
changeEntityListNew
(
GroupChatHmDTO
.
class
,
hmBOList
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment