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
20afed2e
Commit
20afed2e
authored
Jul 06, 2023
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
啫啫煲的收款单设置鹏哥节点自动通过
parent
d46cd2cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
DepartmentCheckState.java
...ule/cost/service/impl/costcheck/DepartmentCheckState.java
+1
-1
GeneralManagerCheckState.java
...cost/service/impl/costcheck/GeneralManagerCheckState.java
+1
-1
No files found.
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/DepartmentCheckState.java
View file @
20afed2e
...
...
@@ -89,7 +89,7 @@ public class DepartmentCheckState extends CostState {
boolean
shouldAutoCheck
=
false
;
List
<
CostCurrentReviewer
>
costCurrentReviewerList
=
costCurrentReviewerMapper
.
selectByCostNo
(
costDomain
.
getCostNo
());
CostCurrentReviewer
costCurrentReviewer
=
null
;
if
(
"啫啫煲"
.
equals
(
costDomain
.
getCompanyName
()))
{
if
(
"啫啫煲"
.
equals
(
costDomain
.
getCompanyName
())
&&
costDomain
.
getCostForm
()
!=
2
)
{
if
(
costCurrentReviewerList
!=
null
&&
costCurrentReviewerList
.
size
()
>
0
)
{
Optional
<
CostCurrentReviewer
>
optionalCostCurrentReviewer
=
costCurrentReviewerList
.
stream
().
filter
(
l
->
l
.
getOaUserId
()
==
720
).
findFirst
();
if
(
optionalCostCurrentReviewer
.
isPresent
())
{
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/GeneralManagerCheckState.java
View file @
20afed2e
...
...
@@ -168,7 +168,7 @@ public class GeneralManagerCheckState extends CostState {
return
true
;
}
//付款主体是"啫啫煲"且小于1k不需要总经办审批
if
(
"啫啫煲"
.
equals
(
costDomain
.
getCompanyName
()))
{
if
(
"啫啫煲"
.
equals
(
costDomain
.
getCompanyName
())
&&
costDomain
.
getCostForm
()
!=
2
)
{
if
(
costDomain
.
getAmountRmb
().
compareTo
(
new
BigDecimal
(
"1000"
))
<
0
)
{
costLogService
.
saveByManage
(
costDomain
.
getCostNo
(),
"人民币金额【"
+
costDomain
.
getAmountRmb
()
+
"】少于设定【1000】审核条件"
,
null
);
return
true
;
...
...
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