Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
yohoufo-fore
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
chenjian
4 years ago
Commit
9509fce636523c0154afdebc8dac68dcf6643c66
1 parent
4ffd14b6
fix:没有支付宝绑定的判断
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
order/src/main/java/com/yohoufo/order/service/impl/StoredSellerDepositServiceImpl.java
order/src/main/java/com/yohoufo/order/service/impl/StoredSellerDepositServiceImpl.java
View file @
9509fce
...
...
@@ -39,6 +39,7 @@ import com.yohoufo.order.service.seller.setting.SellerEnterApplyService;
import
com.yohoufo.order.service.seller.setting.SellerService
;
import
com.yohoufo.order.service.seller.setting.SellerWrapper
;
import
com.yohoufo.order.service.support.codegenerator.OrderCodeGenerator
;
import
org.apache.commons.lang3.StringUtils
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
...
@@ -312,7 +313,7 @@ public class StoredSellerDepositServiceImpl implements IStoredSellerDepositServi
}
AuthorizeResultRespVO
aliPayAccount
=
getAlipayIDOrAccount
(
uid
);
if
(
aliPayAccount
==
null
){
if
(
aliPayAccount
==
null
||
(
StringUtils
.
isBlank
(
aliPayAccount
.
getAlipayAccount
())
&&
StringUtils
.
isBlank
(
aliPayAccount
.
getAlipayId
()))
){
logger
.
error
(
"quitStoredSeller not allowed cause of aliPayAccount is blank ,uid {}"
,
uid
);
throw
new
UfoServiceException
(
400
,
"支付宝账号未绑定,不允许退驻!"
);
}
...
...
Please
register
or
login
to post a comment