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
a4b2e783
Commit
a4b2e783
authored
Mar 27, 2026
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.21-四大报销
parent
56941cc6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
IcbcTransactionFlowQueryServiceImpl.java
...ekp/service/impl/IcbcTransactionFlowQueryServiceImpl.java
+6
-4
No files found.
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/service/impl/IcbcTransactionFlowQueryServiceImpl.java
View file @
a4b2e783
...
@@ -890,9 +890,9 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
...
@@ -890,9 +890,9 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
for
(
EkpBankExcelNoTaxVo
detail
:
detailList
)
{
for
(
EkpBankExcelNoTaxVo
detail
:
detailList
)
{
// 0 对公
// 0 对公
if
(
CommonConstants
.
ZERO_INT
==
type
)
{
if
(
CommonConstants
.
ZERO_INT
==
type
)
{
rdDetail
=
buildPayRecordDuiGong
(
detail
);
rdDetail
=
buildPayRecordDuiGong
(
detail
,
wxNo
);
}
else
{
}
else
{
rdDetail
=
buildPayRecordDuiSi
(
detail
);
rdDetail
=
buildPayRecordDuiSi
(
detail
,
wxNo
);
}
}
rd
.
add
(
rdDetail
);
rd
.
add
(
rdDetail
);
}
}
...
@@ -1115,7 +1115,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
...
@@ -1115,7 +1115,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
}
}
// 对公
// 对公
private
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
buildPayRecordDuiGong
(
EkpBankExcelNoTaxVo
detail
)
{
private
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
buildPayRecordDuiGong
(
EkpBankExcelNoTaxVo
detail
,
String
wxNo
)
{
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
payRecord
=
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
payRecord
=
new
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
();
new
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
();
...
@@ -1125,6 +1125,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
...
@@ -1125,6 +1125,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
}
}
//业务唯一编号:相同指令不重复
//业务唯一编号:相同指令不重复
payRecord
.
setUniBusiId
(
fdId
);
payRecord
.
setUniBusiId
(
fdId
);
payRecord
.
setRefNo
(
wxNo
+
CommonConstants
.
DOWN_LINE_STRING
+
detail
.
getFdSerialNumber
());
//指令顺序号:每笔指令的序号,本包内不重复
//指令顺序号:每笔指令的序号,本包内不重复
payRecord
.
setiSeqNo
(
detail
.
getFdSerialNumber
());
payRecord
.
setiSeqNo
(
detail
.
getFdSerialNumber
());
//预约日期
//预约日期
...
@@ -1208,7 +1209,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
...
@@ -1208,7 +1209,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
return
payRecord
;
return
payRecord
;
}
}
private
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
buildPayRecordDuiSi
(
EkpBankExcelNoTaxVo
detail
)
{
private
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
buildPayRecordDuiSi
(
EkpBankExcelNoTaxVo
detail
,
String
wxNo
)
{
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
payRecord
=
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
payRecord
=
new
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
();
new
MybankEnterprisePayPayentRequestV2
.
MybankEnterprisePayPayentRequestRdV2
();
String
fdId
=
detail
.
getFdId
();
String
fdId
=
detail
.
getFdId
();
...
@@ -1217,6 +1218,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
...
@@ -1217,6 +1218,7 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
}
}
//业务唯一编号:相同指令不重复
//业务唯一编号:相同指令不重复
payRecord
.
setUniBusiId
(
fdId
);
payRecord
.
setUniBusiId
(
fdId
);
payRecord
.
setRefNo
(
wxNo
+
CommonConstants
.
DOWN_LINE_STRING
+
detail
.
getFdSerialNumber
());
//指令顺序号:每笔指令的序号,本包内不重复
//指令顺序号:每笔指令的序号,本包内不重复
payRecord
.
setiSeqNo
(
detail
.
getFdSerialNumber
());
payRecord
.
setiSeqNo
(
detail
.
getFdSerialNumber
());
//预约日期
//预约日期
...
...
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