Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
yn-health-science
Project
Project
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
徐俊
yn-health-science
Commits
a25f793d
Commit
a25f793d
authored
Sep 30, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1b2d717f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ComProjectTaskServiceImpl.java
...boshi/science/service/impl/ComProjectTaskServiceImpl.java
+5
-5
No files found.
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectTaskServiceImpl.java
View file @
a25f793d
...
...
@@ -350,7 +350,7 @@ public class ComProjectTaskServiceImpl extends BaseServiceImpl<ComProjectTaskDAO
}
private
void
LoadProjectKPIInfo
(
ComProjectTaskDTO
dto
)
{
List
<
ComProjectKpitDTO
>
ProjectKPIList
=
comProjectKpitDetailService
.
getProjectKpitDetailStatistic
(
dto
.
getId
());
List
<
ComProjectKpitDTO
>
ProjectKPIList
=
comProjectKpitDetailService
.
getProjectKpitDetailStatistic
(
dto
.
get
Proj
Id
());
if
(
null
==
ProjectKPIList
||
ProjectKPIList
.
size
()
==
0
)
ProjectKPIList
=
comProjectKpitService
.
getProjectKpitStatistic
();
ProjectKPIStatisticDTO
kpiDTO
=
new
ProjectKPIStatisticDTO
();
...
...
@@ -366,10 +366,10 @@ public class ComProjectTaskServiceImpl extends BaseServiceImpl<ComProjectTaskDAO
kpiDTO
.
setYear1Goal
(
dto
.
getYear1Goal
());
kpiDTO
.
setYear2Goal
(
dto
.
getYear2Goal
());
kpiDTO
.
setYear3Goal
(
dto
.
getYear3Goal
());
if
(
Objects
.
nonNull
(
dto
.
get
StartDate
())
&&
Objects
.
nonNull
(
dto
.
getEndDate
()))
{
kpiDTO
.
setStartDate
(
dto
.
get
StartDate
());
kpiDTO
.
setEndDate
(
dto
.
get
EndDate
());
kpiDTO
.
setProjDeadline
(
DateUtils
.
FormatDate
(
dto
.
get
StartDate
())
+
"至"
+
DateUtils
.
FormatDate
(
dto
.
getEndDate
()));
if
(
Objects
.
nonNull
(
dto
.
get
ProjStart
())
&&
Objects
.
nonNull
(
dto
.
getProjEnd
()))
{
kpiDTO
.
setStartDate
(
dto
.
get
ProjStart
());
kpiDTO
.
setEndDate
(
dto
.
get
ProjEnd
());
kpiDTO
.
setProjDeadline
(
DateUtils
.
FormatDate
(
dto
.
get
ProjStart
())
+
"至"
+
DateUtils
.
FormatDate
(
dto
.
getProjEnd
()));
}
List
<
ComProjectBudgetDTO
>
budgetDTO
=
dto
.
getBudget
();
if
(
null
!=
budgetDTO
)
{
...
...
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