Commit 1c518af0 authored by hongguangwu's avatar hongguangwu

1.7.20-非扣税银企

parent dfbad3eb
...@@ -1358,6 +1358,8 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -1358,6 +1358,8 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
boolean isShouQuanShiBai; boolean isShouQuanShiBai;
// 是否为终结态,是,才下一步 // 是否为终结态,是,才下一步
boolean isResultStatus = true; boolean isResultStatus = true;
// 是否经过了检查,经过检查后则不继续检查结果
boolean isShouQuanCheck = true;
for (EkpBankResultVo vo : mainList) { for (EkpBankResultVo vo : mainList) {
seqNo = seqNoPre + System.currentTimeMillis() + (i++); seqNo = seqNoPre + System.currentTimeMillis() + (i++);
responseV1 = icbcTransactionFlowQueryService.getResultNoTax(vo, tranDate, tranTime, seqNo, client); responseV1 = icbcTransactionFlowQueryService.getResultNoTax(vo, tranDate, tranTime, seqNo, client);
...@@ -1367,13 +1369,16 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -1367,13 +1369,16 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
dataList = responseV1.getRd(); dataList = responseV1.getRd();
isShouQuanShiBai = false; isShouQuanShiBai = false;
isResultStatus = true; isResultStatus = true;
isShouQuanCheck = true;
if (dataList != null && !dataList.isEmpty()) { if (dataList != null && !dataList.isEmpty()) {
for (MybankEnterprisePayQpayentResponseV1.MybankEnterprisePayQpayentResponseRdV1 data : dataList) { for (MybankEnterprisePayQpayentResponseV1.MybankEnterprisePayQpayentResponseRdV1 data : dataList) {
if (isShouQuanCheck) {
if (CommonConstants.EIGHT_STRING.equals(data.getResult())) { if (CommonConstants.EIGHT_STRING.equals(data.getResult())) {
isShouQuanShiBai = true; isShouQuanShiBai = true;
} else { } else {
isShouQuanShiBai = false; isShouQuanShiBai = false;
break; isShouQuanCheck = false;
}
} }
if (!(CommonConstants.SIX_STRING.equals(data.getResult()) if (!(CommonConstants.SIX_STRING.equals(data.getResult())
|| CommonConstants.SEVEN_STRING.equals(data.getResult()) || CommonConstants.SEVEN_STRING.equals(data.getResult())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment