Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
ac94b49e
Commit
ac94b49e
authored
Dec 27, 2021
by
周晓航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
预定单 预约单 预定时间校验模式修改
Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent
7fb2bb35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
1 deletions
+31
-1
order-application-service/src/main/java/cn/freemud/utils/DateUtils.java
+31
-1
No files found.
order-application-service/src/main/java/cn/freemud/utils/DateUtils.java
View file @
ac94b49e
...
...
@@ -45,7 +45,37 @@ public class DateUtils {
}
public
static
int
diffDay
(
Date
before
,
Date
after
)
{
return
Integer
.
parseInt
(
String
.
valueOf
((
after
.
getTime
()
-
before
.
getTime
())
/
86400000L
));
Calendar
cal1
=
Calendar
.
getInstance
();
cal1
.
setTime
(
before
);
Calendar
cal2
=
Calendar
.
getInstance
();
cal2
.
setTime
(
after
);
int
day1
=
cal1
.
get
(
Calendar
.
DAY_OF_YEAR
);
int
day2
=
cal2
.
get
(
Calendar
.
DAY_OF_YEAR
);
int
year1
=
cal1
.
get
(
Calendar
.
YEAR
);
int
year2
=
cal2
.
get
(
Calendar
.
YEAR
);
if
(
year1
!=
year2
)
//同一年
{
int
timeDistance
=
0
;
for
(
int
i
=
year1
;
i
<
year2
;
i
++)
{
if
(
i
%
4
==
0
&&
i
%
100
!=
0
||
i
%
400
==
0
)
//闰年
{
timeDistance
+=
366
;
}
else
//不是闰年
{
timeDistance
+=
365
;
}
}
return
timeDistance
+
(
day2
-
day1
)
;
}
else
//不同年
{
return
day2
-
day1
;
}
}
}
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