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
31402687
Commit
31402687
authored
May 22, 2026
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.23-其他银企
parent
1e138bff
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
19 deletions
+47
-19
IcbcTransactionFlowIssueServiceImpl.java
...ekp/service/impl/IcbcTransactionFlowIssueServiceImpl.java
+47
-19
No files found.
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/service/impl/IcbcTransactionFlowIssueServiceImpl.java
View file @
31402687
...
...
@@ -1012,6 +1012,21 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
tableName
=
"ekp_436a2f7398af04d6a875"
;
}
title
=
main
.
getFdAttaName
();
}
else
if
(
"其他"
.
equals
(
main
.
getFdPayType
()))
{
if
(
"退款申请单"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"TKSQ"
;
tableName
=
"ekp_d8530408dca4b94b9a8f"
;
}
else
if
(
"个人代扣代缴"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"GRDKZC"
;
tableName
=
"ekp_8a0c895704b114104898"
;
}
else
if
(
"单位代扣代缴"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"DWDKZC"
;
tableName
=
"ekp_9919bc82b334d38bfe43"
;
}
else
if
(
"特殊事件"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"TSSJZC"
;
tableName
=
"ekp_9cbf48fc1614c46835ef"
;
}
title
=
main
.
getFdAttaName
();
}
}
int
count
=
ekpBankGrantDetailService
.
getCountByIdAndMain
(
fdId
);
...
...
@@ -1127,6 +1142,17 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
wxNoPre
=
"YWZCF"
;
}
title
=
main
.
getFdAttaName
();
}
else
if
(
"其他"
.
equals
(
main
.
getFdPayType
()))
{
if
(
"退款申请单"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"TKSQ"
;
}
else
if
(
"个人代扣代缴"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"GRDKZC"
;
}
else
if
(
"单位代扣代缴"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"DWDKZC"
;
}
else
if
(
"特殊事件"
.
equals
(
main
.
getFdAttaName
()))
{
wxNoPre
=
"TSSJZC"
;
}
title
=
main
.
getFdAttaName
();
}
}
}
...
...
@@ -1486,6 +1512,8 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
String
failStatus
=
"41"
;
String
fdPayTypeFks
=
"非扣税"
;
String
fdPayTypeFksDefailt
=
"转账"
;
String
fdPayTypeOther
=
"其他"
;
String
fdPayTypeOtherDefailt
=
"其他支出"
;
int
i
=
0
;
if
(
mainList
!=
null
&&
!
mainList
.
isEmpty
())
{
EkpBankPayTask
main
;
...
...
@@ -1496,16 +1524,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
// 是否经过了检查,经过检查后则不继续检查结果
boolean
isShouQuanCheck
=
true
;
for
(
EkpBankResultVo
vo
:
mainList
)
{
if
(
Common
.
isNotNull
(
vo
.
getFdPayType
()))
{
if
(
fdPayTypeFks
.
equals
(
vo
.
getFdPayType
()))
{
title
=
fdPayTypeFksDefailt
;
}
else
{
title
=
vo
.
getFdPayType
();
}
}
else
{
title
=
fdPayTypeFksDefailt
;
}
title
=
getTitle
(
fdPayTypeFks
,
fdPayTypeFksDefailt
,
fdPayTypeOther
,
fdPayTypeOtherDefailt
,
vo
);
seqNo
=
seqNoPre
+
System
.
currentTimeMillis
()
+
(
i
++);
responseV1
=
icbcTransactionFlowQueryService
.
getResultNoTax
(
vo
,
tranDate
,
tranTime
,
seqNo
,
client
);
if
(
Common
.
isNotNull
(
responseV1
))
{
...
...
@@ -1652,15 +1671,8 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
// 初始化
i
=
0
;
for
(
EkpBankResultVo
vo
:
detailList
)
{
if
(
Common
.
isNotNull
(
vo
.
getFdPayType
()))
{
if
(
fdPayTypeFks
.
equals
(
vo
.
getFdPayType
()))
{
title
=
fdPayTypeFksDefailt
;
}
else
{
title
=
vo
.
getFdPayType
();
}
}
else
{
title
=
fdPayTypeFksDefailt
;
}
title
=
getTitle
(
fdPayTypeFks
,
fdPayTypeFksDefailt
,
fdPayTypeOther
,
fdPayTypeOtherDefailt
,
vo
);
seqNo
=
seqNoPre
+
System
.
currentTimeMillis
()
+
(
i
++);
responseV1
=
icbcTransactionFlowQueryService
.
getResultNoTax
(
vo
,
tranDate
,
tranTime
,
seqNo
,
client
);
...
...
@@ -1775,6 +1787,22 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
return
R
.
ok
();
}
private
String
getTitle
(
String
fdPayTypeFks
,
String
fdPayTypeFksDefailt
,
String
fdPayTypeOther
,
String
fdPayTypeOtherDefailt
,
EkpBankResultVo
vo
)
{
String
title
;
if
(
Common
.
isNotNull
(
vo
.
getFdPayType
()))
{
if
(
fdPayTypeFks
.
equals
(
vo
.
getFdPayType
()))
{
title
=
fdPayTypeFksDefailt
;
}
else
if
(
fdPayTypeOther
.
equals
(
vo
.
getFdPayType
()))
{
title
=
fdPayTypeOtherDefailt
;
}
else
{
title
=
vo
.
getFdPayType
();
}
}
else
{
title
=
fdPayTypeFksDefailt
;
}
return
title
;
}
/**
* 重写获取PDF文件的方法
* 该方法通过SFTP协议从工商银行的服务器下载PDF文件
...
...
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