mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-19 18:45:03 +08:00
update 开户信息
This commit is contained in:
@@ -38,6 +38,7 @@ import com.jsowell.pile.domain.ClearingWithdrawInfo;
|
|||||||
import com.jsowell.pile.domain.MemberBasicInfo;
|
import com.jsowell.pile.domain.MemberBasicInfo;
|
||||||
import com.jsowell.pile.dto.PayOrderDTO;
|
import com.jsowell.pile.dto.PayOrderDTO;
|
||||||
import com.jsowell.pile.service.*;
|
import com.jsowell.pile.service.*;
|
||||||
|
import com.jsowell.pile.vo.base.MerchantInfoVO;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.commons.collections4.CollectionUtils;
|
import org.apache.commons.collections4.CollectionUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@@ -267,7 +268,10 @@ public class AdapayService {
|
|||||||
// 审核失败
|
// 审核失败
|
||||||
if (Constants.TWO.equals(adapayMemberAccount.getStatus())) {
|
if (Constants.TWO.equals(adapayMemberAccount.getStatus())) {
|
||||||
AdapayCorpMemberVO adapayCorpMemberVO = new AdapayCorpMemberVO();
|
AdapayCorpMemberVO adapayCorpMemberVO = new AdapayCorpMemberVO();
|
||||||
adapayCorpMemberVO.setName("");
|
MerchantInfoVO merchantInfoVO = pileMerchantInfoService.getMerchantInfoVO(adapayMemberAccount.getMerchantId());
|
||||||
|
if (merchantInfoVO != null) {
|
||||||
|
adapayCorpMemberVO.setName(merchantInfoVO.getMerchantName());
|
||||||
|
}
|
||||||
adapayCorpMemberVO.setAuditState("B");
|
adapayCorpMemberVO.setAuditState("B");
|
||||||
adapayCorpMemberVO.setAuditDesc(adapayMemberAccount.getRemark());
|
adapayCorpMemberVO.setAuditDesc(adapayMemberAccount.getRemark());
|
||||||
map.put("adapayCorpMember", adapayCorpMemberVO);
|
map.put("adapayCorpMember", adapayCorpMemberVO);
|
||||||
|
|||||||
@@ -312,13 +312,6 @@ public class PileMerchantInfoServiceImpl implements PileMerchantInfoService {
|
|||||||
if (pileMerchantInfo == null) {
|
if (pileMerchantInfo == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
// MerchantInfoVO vo = MerchantInfoVO.builder()
|
|
||||||
// .merchantId(merchantId)
|
|
||||||
// .merchantName(pileMerchantInfo.getMerchantName())
|
|
||||||
// .merchantTel(pileMerchantInfo.getServicePhone())
|
|
||||||
// .organizationCode(pileMerchantInfo.getOrganizationCode())
|
|
||||||
// .deptId(pileMerchantInfo.getDeptId())
|
|
||||||
// .build();
|
|
||||||
return conversion2MerchantInfoVO(pileMerchantInfo);
|
return conversion2MerchantInfoVO(pileMerchantInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user