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
1b4382ea
Commit
1b4382ea
authored
Jun 16, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:
parent
c0cd45cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
anniversary.go
domain/model/cp_m/anniversary.go
+2
-2
No files found.
domain/model/cp_m/anniversary.go
View file @
1b4382ea
...
@@ -122,7 +122,7 @@ func GetNeedRemindCpAnniversary(model *domain.Model) []CpAnniversary {
...
@@ -122,7 +122,7 @@ func GetNeedRemindCpAnniversary(model *domain.Model) []CpAnniversary {
now
:=
time
.
Now
()
.
Unix
()
now
:=
time
.
Now
()
.
Unix
()
for
i
,
v
:=
range
rows
{
for
i
,
v
:=
range
rows
{
ts
:=
CalcNextAnniversary
(
v
.
Timestamp
)
ts
:=
CalcNextAnniversary
(
v
.
Timestamp
)
if
now
>
ts
{
if
now
>
ts
&&
now
-
ts
<=
86400
{
res
=
append
(
res
,
rows
[
i
])
res
=
append
(
res
,
rows
[
i
])
}
}
}
}
...
@@ -142,7 +142,7 @@ func GetUserTodayCpAnniversary(model *domain.Model, cpId mysql.ID) []CpAnniversa
...
@@ -142,7 +142,7 @@ func GetUserTodayCpAnniversary(model *domain.Model, cpId mysql.ID) []CpAnniversa
now
:=
time
.
Now
()
.
Unix
()
now
:=
time
.
Now
()
.
Unix
()
for
i
,
v
:=
range
rows
{
for
i
,
v
:=
range
rows
{
ts
:=
CalcNextAnniversary
(
v
.
Timestamp
)
ts
:=
CalcNextAnniversary
(
v
.
Timestamp
)
if
now
>
ts
{
if
now
>
ts
&&
now
-
ts
<=
86400
{
res
=
append
(
res
,
rows
[
i
])
res
=
append
(
res
,
rows
[
i
])
}
}
}
}
...
...
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