Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-user
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
chenweijian
hilo-user
Commits
05f8aa0a
Commit
05f8aa0a
authored
Jul 10, 2023
by
chenweijian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
派对申请
parent
823b8882
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
invite_apply.go
domain/model/invite_m/invite_apply.go
+2
-2
party_invite.go
route/invite_r/party_invite.go
+1
-1
No files found.
domain/model/invite_m/invite_apply.go
View file @
05f8aa0a
...
@@ -52,9 +52,9 @@ func GetApplyList(model *domain.Model, userIds []uint64, pageIndex, pageSize, gT
...
@@ -52,9 +52,9 @@ func GetApplyList(model *domain.Model, userIds []uint64, pageIndex, pageSize, gT
}
}
// 检查被邀请人是否存在
// 检查被邀请人是否存在
func
IsInInviteApply
(
model
*
domain
.
Model
,
userId
mysql
.
ID
)
(
bool
,
error
)
{
func
IsInInviteApply
(
model
*
domain
.
Model
,
userId
mysql
.
ID
,
status
int
)
(
bool
,
error
)
{
var
apply
InviteApply
var
apply
InviteApply
if
err
:=
model
.
Db
.
Model
(
InviteApply
{})
.
Where
(
"new_user_id = ?
"
,
userId
)
.
First
(
&
apply
)
.
Error
;
err
!=
nil
{
if
err
:=
model
.
Db
.
Model
(
InviteApply
{})
.
Where
(
"new_user_id = ?
and status = ?"
,
userId
,
status
)
.
First
(
&
apply
)
.
Error
;
err
!=
nil
{
if
err
!=
gorm
.
ErrRecordNotFound
{
if
err
!=
gorm
.
ErrRecordNotFound
{
return
false
,
err
return
false
,
err
}
}
...
...
route/invite_r/party_invite.go
View file @
05f8aa0a
...
@@ -86,7 +86,7 @@ func InviteApply(c *gin.Context) (*mycontext.MyContext, error) {
...
@@ -86,7 +86,7 @@ func InviteApply(c *gin.Context) (*mycontext.MyContext, error) {
return
myCtx
,
bizerr
.
InviteApplyNoPermission
return
myCtx
,
bizerr
.
InviteApplyNoPermission
}
}
// 被邀请人是否已经被人提交过申请
// 被邀请人是否已经被人提交过申请
isApply
,
err
:=
invite_m
.
IsInInviteApply
(
model
,
newUser
.
ID
)
isApply
,
err
:=
invite_m
.
IsInInviteApply
(
model
,
newUser
.
ID
,
1
)
if
err
!=
nil
{
if
err
!=
nil
{
model
.
Log
.
Errorf
(
"InviteApply param:%v, err:%v"
,
param
,
err
)
model
.
Log
.
Errorf
(
"InviteApply param:%v, err:%v"
,
param
,
err
)
return
myCtx
,
err
return
myCtx
,
err
...
...
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