|
@@ -232,10 +232,6 @@ public class SplitServiceImpl implements ISplitService {
|
|
|
return VaultsResponse.failed(e.getMessage());
|
|
return VaultsResponse.failed(e.getMessage());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- if(StringUtils.isEmpty(back.getWithdraw_seq())){
|
|
|
|
|
- return VaultsResponse.failed(back.getResult().getComment());
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
SplitWithdraw splitWithdraw = new SplitWithdraw();
|
|
SplitWithdraw splitWithdraw = new SplitWithdraw();
|
|
|
splitWithdraw.setOperatorId(TokenContext.cureOperatorId());
|
|
splitWithdraw.setOperatorId(TokenContext.cureOperatorId());
|
|
|
splitWithdraw.setWithdrawId(withdrawId);
|
|
splitWithdraw.setWithdrawId(withdrawId);
|
|
@@ -248,7 +244,7 @@ public class SplitServiceImpl implements ISplitService {
|
|
|
splitWithdraw.setErrorMsg(back.getError_msg());
|
|
splitWithdraw.setErrorMsg(back.getError_msg());
|
|
|
splitWithdrawService.save(splitWithdraw);
|
|
splitWithdrawService.save(splitWithdraw);
|
|
|
|
|
|
|
|
- if(YmUtil.SUCCESS.equals(back.getResult().getId())){
|
|
|
|
|
|
|
+ if(YmUtil.SUCCESS.equals(back.getResult().getId()) || "9998".equals(back.getResult().getId())){
|
|
|
return VaultsResponse.success(back);
|
|
return VaultsResponse.success(back);
|
|
|
}
|
|
}
|
|
|
|
|
|