Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
huluobin
bailuntec-cost
Commits
c9385372
Commit
c9385372
authored
Nov 04, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
总经办审核日志变更
parent
523d47c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
GeneralManagerCheckState.java
...cost/service/impl/costcheck/GeneralManagerCheckState.java
+2
-2
No files found.
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/GeneralManagerCheckState.java
View file @
c9385372
...
...
@@ -88,7 +88,7 @@ public class GeneralManagerCheckState extends CostState {
costDao
.
updateById
(
costDomain
);
List
<
CostCurrentReviewer
>
costCurrentReviewerList
=
costCurrentReviewerMapper
.
selectByCostNo
(
costDomain
.
getCostNo
());
costLogService
.
save
ByManage
(
costDomain
.
getCostNo
()
,
"总经办审核通过,当前审核人:"
+
costCurrentReviewerList
.
stream
().
map
(
CostCurrentReviewer:
:
getUsername
)
costLogService
.
save
(
costDomain
.
getCostNo
(),
currentUserId
,
"总经办审核通过,当前审核人:"
+
costCurrentReviewerList
.
stream
().
map
(
CostCurrentReviewer:
:
getUsername
)
.
collect
(
Collectors
.
joining
(
","
)),
CostLogDomain
.
MANAGER_MANUAL_PASS
);
//流转状态
nextState
(
financialCheckState
);
...
...
@@ -175,7 +175,7 @@ public class GeneralManagerCheckState extends CostState {
if
(
costDomain
.
getAmountRmb
().
compareTo
(
new
BigDecimal
(
"5000"
))
>=
0
)
{
Integer
times
=
APPROVE_TIMES
.
get
(
LocalDate
.
now
());
if
(
times
==
null
)
{
APPROVE_TIMES
=
new
ConcurrentHashMap
<
LocalDate
,
Integer
>()
{{
APPROVE_TIMES
=
new
ConcurrentHashMap
<
LocalDate
,
Integer
>()
{{
put
(
LocalDate
.
now
(),
1
);
}};
}
else
if
(
times
<
3
&&
LocalDateTime
.
now
().
getSecond
()
%
3
==
0
)
{
...
...
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