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
ace19aad
Commit
ace19aad
authored
Apr 14, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1e2b1294
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
ComProjectAuditController.java
...om/yiboshi/science/rest/v1/ComProjectAuditController.java
+7
-7
No files found.
science-admin/src/main/java/com/yiboshi/science/rest/v1/ComProjectAuditController.java
View file @
ace19aad
...
...
@@ -152,19 +152,19 @@ public class ComProjectAuditController extends BaseController<ComProjectAuditSer
if
(
vo
.
getAuditMethod
().
equals
(
CommonEnum
.
auditMethod
.
last
.
getCode
()))
{
// e.setAssignList(comProjectAssignService.getAssignExpertList(e.getAuditObjectId()));
e
.
setAge
(
IDCardUtil
.
getAge
(
e
.
getCertId
()));
BigDecimal
total
=
new
BigDecimal
(
0
);
BigDecimal
gov
=
new
BigDecimal
(
0
);
BigDecimal
self
=
new
BigDecimal
(
0
);
BigDecimal
total
1
=
new
BigDecimal
(
0
);
BigDecimal
gov
2
=
new
BigDecimal
(
0
);
BigDecimal
self
3
=
new
BigDecimal
(
0
);
if
(
Objects
.
nonNull
(
e
.
getTotalFunding
()))
{
total
=
e
.
getTotalFunding
();
total
1
=
e
.
getTotalFunding
();
}
if
(
Objects
.
nonNull
(
e
.
getGovFunding
()))
{
gov
=
e
.
getGovFunding
();
gov
2
=
e
.
getGovFunding
();
}
self
=
total
.
subtract
(
gov
);
e
.
setSelfFunding
(
self
);
self
3
=
total1
.
subtract
(
gov2
);
e
.
setSelfFunding
(
self
3
);
}
if
(
null
!=
e
.
getCertId
())
e
.
setCertId
(
hideAllIdCardNum
(
e
.
getCertId
()));
...
...
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