Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
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
90574225
Commit
90574225
authored
Dec 17, 2024
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
77
parent
03559863
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
12 deletions
+9
-12
ComProjectDTO.java
...ain/java/com/yiboshi/science/param/dto/ComProjectDTO.java
+4
-7
ComProjectService.java
...n/java/com/yiboshi/science/service/ComProjectService.java
+1
-1
ComProjectConclusionServiceImpl.java
...science/service/impl/ComProjectConclusionServiceImpl.java
+4
-4
ComProjectServiceImpl.java
...m/yiboshi/science/service/impl/ComProjectServiceImpl.java
+0
-0
No files found.
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectDTO.java
View file @
90574225
...
@@ -319,25 +319,22 @@ public class ComProjectDTO extends BaseDTO {
...
@@ -319,25 +319,22 @@ public class ComProjectDTO extends BaseDTO {
private
List
<
ComProjectCooperativeUnitsDTO
>
cooperativeUnits
;
private
List
<
ComProjectCooperativeUnitsDTO
>
cooperativeUnits
;
/** 项目主要参与单位 */
/** 项目主要参与单位 */
private
List
<
ComProjectCooperativeUnitsDTO
>
participateUnits
;
private
List
<
ComProjectCooperativeUnitsDTO
>
participateUnits
;
/** 项目组成员 */
/** 项目组成员 */
private
List
<
ComProjectMembersDTO
>
members
;
private
List
<
ComProjectMembersDTO
>
members
;
/** 经费表 */
/** 经费表 */
private
List
<
ComProjectBudgetDTO
>
budget
;
private
List
<
ComProjectBudgetDTO
>
budget
;
/** 年度用款计划 */
/** 年度用款计划 */
private
List
<
ComProjectFundPlanDTO
>
fundPlan
;
private
List
<
ComProjectFundPlanDTO
>
fundPlan
;
/** 项目绩效目标表 */
private
ProjectKPIStatisticDTO
projectKPI
;
/** 购置设备预算明细表 */
private
List
<
ComProjectEquipmentDTO
>
equipments
;
/** 购置设备预算明细表 */
/** 购置设备预算明细表 */
private
List
<
ComProjectEquipmentDTO
>
deviceList
;
private
List
<
ComProjectEquipmentDTO
>
deviceList
;
/** 试制设备预算明细表 */
private
List
<
ComProjectManufactureDTO
>
manufacture
;
/** 项目绩效目标表 */
private
ProjectKPIStatisticDTO
projectKPI
;
/** 项目安排及阶段目标 */
/** 项目安排及阶段目标 */
private
List
<
ComProjectStageGoalDTO
>
stageGoals
;
private
List
<
ComProjectStageGoalDTO
>
stageGoals
;
/** 项目课颖设置表 */
/** 项目课颖设置表 */
private
List
<
ComProjectSubDTO
>
projectSubList
;
private
List
<
ComProjectSubDTO
>
projectSubList
;
/** 试制设备预算明细表 */
private
List
<
ComProjectManufactureDTO
>
manufacture
;
/** 附件列表 */
/** 附件列表 */
private
List
<
ComFileDTO
>
fileList
;
private
List
<
ComFileDTO
>
fileList
;
/** 审核列表 */
/** 审核列表 */
...
...
science-admin/src/main/java/com/yiboshi/science/service/ComProjectService.java
View file @
90574225
...
@@ -28,7 +28,7 @@ public interface ComProjectService extends BaseService<ComProjectQueryVO, ComPro
...
@@ -28,7 +28,7 @@ public interface ComProjectService extends BaseService<ComProjectQueryVO, ComPro
*
*
* @return
* @return
*/
*/
void
updateState
(
String
id
,
Integer
state
,
String
versionNo
);
void
updateState
OrNo
(
String
id
,
Integer
state
,
String
versionNo
);
/**
/**
* 获取新的版本号
* 获取新的版本号
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectConclusionServiceImpl.java
View file @
90574225
...
@@ -193,7 +193,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
...
@@ -193,7 +193,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
modal
.
setId
(
conclusion
.
getId
());
modal
.
setId
(
conclusion
.
getId
());
modal
.
setState
(
CommonEnum
.
conclusionState
.
report
.
getCode
());
modal
.
setState
(
CommonEnum
.
conclusionState
.
report
.
getCode
());
modal
.
setThesisState
(
CommonEnum
.
thesisState
.
pass
.
getCode
());
modal
.
setThesisState
(
CommonEnum
.
thesisState
.
pass
.
getCode
());
comProjectService
.
updateState
(
conclusion
.
getProjId
(),
CommonEnum
.
projState
.
report
.
getCode
(),
null
);
comProjectService
.
updateState
OrNo
(
conclusion
.
getProjId
(),
CommonEnum
.
projState
.
report
.
getCode
(),
null
);
comProjectAuditService
.
report
(
DateUtils
.
getYear
(),
conclusion
.
getId
(),
4
,
auditUnitId
,
treeCode
);
comProjectAuditService
.
report
(
DateUtils
.
getYear
(),
conclusion
.
getId
(),
4
,
auditUnitId
,
treeCode
);
return
this
.
update
(
modal
);
return
this
.
update
(
modal
);
}
}
...
@@ -210,7 +210,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
...
@@ -210,7 +210,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
Integer
state
=
null
;
Integer
state
=
null
;
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
pass
.
getCode
()))
{
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
pass
.
getCode
()))
{
state
=
CommonEnum
.
conclusionState
.
pass
.
getCode
();
state
=
CommonEnum
.
conclusionState
.
pass
.
getCode
();
comProjectService
.
updateState
(
model
.
getProjId
(),
CommonEnum
.
projState
.
conclusion
.
getCode
(),
null
);
comProjectService
.
updateState
OrNo
(
model
.
getProjId
(),
CommonEnum
.
projState
.
conclusion
.
getCode
(),
null
);
}
else
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
returnModify
.
getCode
()))
{
}
else
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
returnModify
.
getCode
()))
{
state
=
CommonEnum
.
conclusionState
.
returnModify
.
getCode
();
state
=
CommonEnum
.
conclusionState
.
returnModify
.
getCode
();
}
else
{
}
else
{
...
@@ -236,7 +236,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
...
@@ -236,7 +236,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
Integer
state
=
null
;
Integer
state
=
null
;
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
pass
.
getCode
()))
{
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
pass
.
getCode
()))
{
state
=
CommonEnum
.
thesisState
.
pass
.
getCode
();
state
=
CommonEnum
.
thesisState
.
pass
.
getCode
();
comProjectService
.
updateState
(
model
.
getProjId
(),
CommonEnum
.
projState
.
conclusion
.
getCode
(),
null
);
comProjectService
.
updateState
OrNo
(
model
.
getProjId
(),
CommonEnum
.
projState
.
conclusion
.
getCode
(),
null
);
}
else
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
returnModify
.
getCode
()))
{
}
else
if
(
e
.
getAuditResult
().
equals
(
CommonEnum
.
auditResult
.
returnModify
.
getCode
()))
{
state
=
CommonEnum
.
thesisState
.
returnModify
.
getCode
();
state
=
CommonEnum
.
thesisState
.
returnModify
.
getCode
();
}
else
{
}
else
{
...
@@ -307,7 +307,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
...
@@ -307,7 +307,7 @@ public class ComProjectConclusionServiceImpl extends BaseServiceImpl<ComProjectC
c
.
setThesisState
(
CommonEnum
.
thesisState
.
unFilled
.
getCode
());
c
.
setThesisState
(
CommonEnum
.
thesisState
.
unFilled
.
getCode
());
this
.
update
(
c
);
this
.
update
(
c
);
}
}
comProjectService
.
updateState
(
projId
,
CommonEnum
.
projState
.
conclusion
.
getCode
(),
null
);
comProjectService
.
updateState
OrNo
(
projId
,
CommonEnum
.
projState
.
conclusion
.
getCode
(),
null
);
comProjectAuditService
.
insertAudit
(
comProject
.
getReportYear
(),
4
,
id
,
CommonEnum
.
auditMethod
.
audit
.
getCode
(),
comProjectAuditService
.
insertAudit
(
comProject
.
getReportYear
(),
4
,
id
,
CommonEnum
.
auditMethod
.
audit
.
getCode
(),
auditUnitId
,
null
,
CommonEnum
.
auditResult
.
pass
.
getCode
(),
new
Date
(),
1
,
1
,
SecurityUserHolder
.
getPersonId
());
auditUnitId
,
null
,
CommonEnum
.
auditResult
.
pass
.
getCode
(),
new
Date
(),
1
,
1
,
SecurityUserHolder
.
getPersonId
());
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectServiceImpl.java
View file @
90574225
This diff is collapsed.
Click to expand it.
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