Commit 66e2dbeb by yao.xiao

agms修改可发放批次入参判断

parent e85b9d82
...@@ -145,10 +145,11 @@ public class AgmsFortuneServiceImpl implements AgmsFortuneService { ...@@ -145,10 +145,11 @@ public class AgmsFortuneServiceImpl implements AgmsFortuneService {
if (("2").equals(requestVO.getPaymentStatus())){ if (("2").equals(requestVO.getPaymentStatus())){
if (CommonUtil.isNullOrBlank(requestVO.getPayoutBatch())){ if (CommonUtil.isNullOrBlank(requestVO.getPayoutBatch())){
message = ZHBErrorConfig.getErrorInfo("830021"); message = ZHBErrorConfig.getErrorInfo("830021");
commonResult.setSuccess(false); success = false;
commonResult.setMessage(message);
return commonResult;
} }
commonResult.setSuccess(success);
commonResult.setMessage(message);
return commonResult;
} }
Long[] fortuneIds = requestVO.getFortuneIds(); Long[] fortuneIds = requestVO.getFortuneIds();
List<AclCustomerFortuneWithdraw> withdraws = customerFortuneWithdrawDalService.findByFortuneIds(fortuneIds); List<AclCustomerFortuneWithdraw> withdraws = customerFortuneWithdrawDalService.findByFortuneIds(fortuneIds);
......
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