Commit d5e0d633 authored by hongguangwu's avatar hongguangwu

MVP1.7.9-20

parent bd401948
......@@ -882,7 +882,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
logDetail.setFdPayee(detailData.getFdPayeeName());
// 收款银行
logDetail.setFdRecipientBank(detailData.getFdRecipientBank());
if ("02".equals(data.getResult())) {
if ("02".equals(data.getResult()) || "5".equals(data.getResult())) {
moneySuccess = BigDecimalUtils.safeAdd(moneySuccess, money);
numSuccess++;
detailData.setFdGrantStatus("发放成功");
......
......@@ -41,6 +41,7 @@ import lombok.AllArgsConstructor;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
......@@ -58,6 +59,7 @@ import java.util.concurrent.atomic.AtomicInteger;
@AllArgsConstructor
@Log4j2
@Service
@EnableAsync
public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMapper, TSocialInfo> implements TSocialFriendPushService {
private RestTemplate restTemplate;
......
......@@ -52,6 +52,7 @@ import java.util.concurrent.atomic.AtomicInteger;
@AllArgsConstructor
@Log4j2
@Service
@EnableAsync
public class TSocialFriendServiceImpl extends ServiceImpl<TSocialFriendMapper, TSocialInfo> implements TSocialFriendService {
private RestTemplate restTemplate = new RestTemplate();
......
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