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
2e88e6d9
Commit
2e88e6d9
authored
Sep 25, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
93c4b655
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
CostController.java
.../com/blt/other/module/cost/controller/CostController.java
+1
-1
AbstractCostService.java
...er/module/cost/service/impl/cost/AbstractCostService.java
+7
-5
No files found.
cost-service/src/main/java/com/blt/other/module/cost/controller/CostController.java
View file @
2e88e6d9
...
@@ -217,7 +217,7 @@ public class CostController {
...
@@ -217,7 +217,7 @@ public class CostController {
return
CostResult
.
success
(
page
);
return
CostResult
.
success
(
page
);
}
}
@ApiOperation
(
"
审核费用单
列表"
)
@ApiOperation
(
"
待我审核
列表"
)
@GetMapping
(
"/checkCostCount"
)
@GetMapping
(
"/checkCostCount"
)
public
CostResult
<
Long
>
checkCostCount
(
CheckCostListReq
req
)
{
public
CostResult
<
Long
>
checkCostCount
(
CheckCostListReq
req
)
{
costService
=
CostServiceFactory
.
getCostService
();
costService
=
CostServiceFactory
.
getCostService
();
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/cost/AbstractCostService.java
View file @
2e88e6d9
...
@@ -316,11 +316,13 @@ public abstract class AbstractCostService implements CostService {
...
@@ -316,11 +316,13 @@ public abstract class AbstractCostService implements CostService {
@Override
@Override
public
IPage
<
CostDto
>
checkCostAllList
(
AllCheckCostListReq
req
){
public
IPage
<
CostDto
>
checkCostAllList
(
AllCheckCostListReq
req
){
if
(
req
.
getCostForm
().
equals
(
3
)){
if
(
req
.
getCostForm
()
!=
null
)
{
req
.
setIsLend
(
1
);
if
(
req
.
getCostForm
().
equals
(
3
))
{
}
req
.
setIsLend
(
1
);
if
(
req
.
getCostForm
().
equals
(
4
)){
}
req
.
setIsLend
(
2
);
if
(
req
.
getCostForm
().
equals
(
4
))
{
req
.
setIsLend
(
2
);
}
}
}
if
(
req
.
getCostStatusList
()!=
null
&&
!
req
.
getCostStatusList
().
isEmpty
()){
if
(
req
.
getCostStatusList
()!=
null
&&
!
req
.
getCostStatusList
().
isEmpty
()){
req
.
setCostStatusStr
(
StringUtils
.
join
(
req
.
getCostStatusList
(),
','
));
req
.
setCostStatusStr
(
StringUtils
.
join
(
req
.
getCostStatusList
(),
','
));
...
...
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