Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
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
fangxinjiang
yifu-mvp
Commits
d8c50804
Commit
d8c50804
authored
Mar 16, 2026
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.21-非扣税查询接口返回值对应(线上)
parent
34ce1e3c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
22 deletions
+29
-22
IcbcTransactionFlowIssueServiceImpl.java
...ekp/service/impl/IcbcTransactionFlowIssueServiceImpl.java
+29
-22
No files found.
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/service/impl/IcbcTransactionFlowIssueServiceImpl.java
View file @
d8c50804
...
...
@@ -1399,9 +1399,14 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
oldDetailList
=
ekpBankGrantDetailService
.
getListByParentId
(
vo
.
getFdId
());
oldMap
=
new
HashMap
<>();
if
(
oldDetailList
!=
null
&&
!
oldDetailList
.
isEmpty
())
{
String
fdId
;
for
(
EkpBankGrantDetail
temp
:
oldDetailList
)
{
// oldMap.put temp.getFdSerialNumber(), temp)
oldMap
.
put
(
temp
.
getFdSerialNumber
(),
temp
);
fdId
=
temp
.
getFdId
();
if
(
Common
.
isNotNull
(
fdId
)
&&
fdId
.
length
()>
35
)
{
fdId
=
fdId
.
substring
(
0
,
35
);
}
oldMap
.
put
(
fdId
,
temp
);
}
}
moneyAll
=
BigDecimal
.
ZERO
;
...
...
@@ -1424,7 +1429,8 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
logDetail
=
new
EkpBankGrantLogDetail
();
setLogDetailBaseInfoNoTax
(
logs
,
money
,
logDetail
,
data
);
detailData
=
oldMap
.
get
(
data
.
getiSeqno
());
if
(
Common
.
isNotNull
(
data
.
getUniBusiId
()))
{
detailData
=
oldMap
.
get
(
data
.
getUniBusiId
());
if
(
detailData
!=
null
)
{
// 收款人名称
logDetail
.
setFdPayee
(
detailData
.
getFdPayeeName
());
...
...
@@ -1447,6 +1453,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
}
detailDataList
.
add
(
detailData
);
}
}
logDetailList
.
add
(
logDetail
);
}
ekpBankGrantLogDetailService
.
saveBatch
(
logDetailList
);
...
...
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