Commit bb37f463 authored by hongguangwu's avatar hongguangwu

MVP1.7.2 经 项目经理王鹏 与 产品经理 孙兆松 沟通,将 “银企付款任务”列表的“发放状态”的值,由“拒绝授权”改为“处理失败”。

parent b207ea5d
...@@ -909,10 +909,11 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -909,10 +909,11 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
} else if ("05".equals(responseV1.getStatus())) { } else if ("05".equals(responseV1.getStatus())) {
main = new EkpBankPayTask(); main = new EkpBankPayTask();
main.setFdId(vo.getFdId()); main.setFdId(vo.getFdId());
main.setFdGrantStatus("拒绝授权"); // 2024-11-29 16:55:32 经 项目经理王鹏 与 产品经理 孙兆松 沟通,将 “银企付款任务”列表的“发放状态”的值,由“拒绝授权”改为“处理失败”。
main.setFdGrantStatus("处理失败");
main.setFdErrorMsg(responseV1.getErrordesc()); main.setFdErrorMsg(responseV1.getErrordesc());
ekpBankPayTaskService.updateById(main); ekpBankPayTaskService.updateById(main);
// 更新明细状态为 发放失败,原因为拒绝授权 // 更新明细状态为 发放失败,原因为处理失败
//ekpBankGrantDetailService.updateStatusByGrantFail(vo.getFdId()) //ekpBankGrantDetailService.updateStatusByGrantFail(vo.getFdId())
} }
} }
......
...@@ -112,9 +112,9 @@ ...@@ -112,9 +112,9 @@
update ekp_bank_grant_detail a set a.fd_create_time = NOW(),a.fd_grant_status='发放中' where a.fd_parent_id = #{fdParentId} update ekp_bank_grant_detail a set a.fd_create_time = NOW(),a.fd_grant_status='发放中' where a.fd_parent_id = #{fdParentId}
</update> </update>
<!-- 主表拒绝授权时,批量更新明细表为发放失败,原因为拒绝授权 --> <!-- 主表处理失败时,批量更新明细表为发放失败,原因为处理失败 -->
<update id="updateStatusByGrantFail"> <update id="updateStatusByGrantFail">
update ekp_bank_grant_detail a set a.fd_grant_status='发放失败',a.fd_failure_feedback = '拒绝授权' where a.fd_parent_id = #{fdParentId} update ekp_bank_grant_detail a set a.fd_grant_status='发放失败',a.fd_failure_feedback = '处理失败' where a.fd_parent_id = #{fdParentId}
</update> </update>
<select id="getListByParentId" resultMap="ekpBankGrantDetailMap"> <select id="getListByParentId" resultMap="ekpBankGrantDetailMap">
......
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