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
45a18f0c
Commit
45a18f0c
authored
Jun 08, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
50fbc222
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CostApiServiceImpl.java
...lt/other/module/cost/service/impl/CostApiServiceImpl.java
+1
-1
Cost.xml
cost-service/src/main/resources/mapper/Cost.xml
+2
-2
No files found.
cost-service/src/main/java/com/blt/other/module/cost/service/impl/CostApiServiceImpl.java
View file @
45a18f0c
...
...
@@ -295,7 +295,7 @@ public class CostApiServiceImpl implements CostApiService {
manageCostDto
.
setReceiveCardUser
(
costDomain
.
getBankCardUser
());
manageCostDto
.
setReceiveUnit
(
costDomain
.
getBankCompany
());
manageCostDto
.
setPayTime
(
costDomain
.
get
Pay
Time
());
manageCostDto
.
setPayTime
(
costDomain
.
get
Actual
Time
());
manageCostDto
.
setFeeSuperType
(
costDomain
.
getTypeName
());
manageCostDto
.
setDepartmentName
(
costDomain
.
getPrimaryDepartmentName
());
...
...
cost-service/src/main/resources/mapper/Cost.xml
View file @
45a18f0c
...
...
@@ -303,8 +303,8 @@
<if
test=
" req.isLend!=null "
>
and t1.is_lend=#{req.isLend}
</if>
<if
test=
" req.beginTime != null"
>
and t1.create_time
<![CDATA[>=]]>
#{req.beginTime}
</if>
<if
test=
" req.endTime != null"
>
and t1.create_time
<![CDATA[<=]]>
#{req.endTime}
</if>
<if
test=
" req.beginPayTime != null"
>
and t1.
pay
_time
<![CDATA[>=]]>
#{req.beginPayTime}
</if>
<if
test=
" req.endPayTime != null"
>
and t1.
pay
_time
<![CDATA[<=]]>
#{req.endPayTime}
</if>
<if
test=
" req.beginPayTime != null"
>
and t1.
actual
_time
<![CDATA[>=]]>
#{req.beginPayTime}
</if>
<if
test=
" req.endPayTime != null"
>
and t1.
actual
_time
<![CDATA[<=]]>
#{req.endPayTime}
</if>
<if
test=
" req.linkCost!=null and req.linkCost != ''"
>
and (t1.sup_cost_no=#{req.linkCost} or t1.cost_no=#{req.linkCost})
</if>
<if
test=
" req.projectTypes!=null and req.projectTypes != ''"
>
and find_in_set(t1.project_type,#{req.projectTypes})
</if>
<if
test=
"req.bankCardUser !=null and req.bankCardUser !='' "
>
and t1.bank_card_user like concat('%',#{req.bankCardUser},'%')
</if>
...
...
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