|
@@ -10,6 +10,7 @@ import com.alipay.api.AlipayResponse;
|
|
|
import com.alipay.api.domain.AlipayFundTransUniTransferModel;
|
|
import com.alipay.api.domain.AlipayFundTransUniTransferModel;
|
|
|
import com.alipay.api.domain.Participant;
|
|
import com.alipay.api.domain.Participant;
|
|
|
import com.alipay.api.request.AlipayFundTransUniTransferRequest;
|
|
import com.alipay.api.request.AlipayFundTransUniTransferRequest;
|
|
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Assert;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.cyksj.common.EnvCommonService;
|
|
import com.cyksj.common.EnvCommonService;
|
|
|
import com.cyksj.common.constant.Constant;
|
|
import com.cyksj.common.constant.Constant;
|
|
@@ -75,112 +76,8 @@ public class TransferFuncServiceImpl implements TransferFuncService {
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
public Result distributeApply(ApplyMoneyReq applyMoneyReq) throws Exception {
|
|
public Result distributeApply(ApplyMoneyReq applyMoneyReq) throws Exception {
|
|
|
- Long userId = applyMoneyReq.getUserId();
|
|
|
|
|
- User user = userMapper.selectById(userId);
|
|
|
|
|
- if (user == null) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("请先授权登录");
|
|
|
|
|
- }
|
|
|
|
|
- if (user.getIsBlack()) throw BusinessRuntimeException.getInstance("系统检测操作异常,请稍后再试");
|
|
|
|
|
- Boolean isTakeAll = applyMoneyReq.getIsTakeAll();
|
|
|
|
|
- DistributeMoneyApply.Type type = applyMoneyReq.getType();
|
|
|
|
|
- if (type == null) type = DistributeMoneyApply.Type.zfb;
|
|
|
|
|
- if (type == DistributeMoneyApply.Type.zfb) {
|
|
|
|
|
- if (ObjectUtil.hasEmpty(applyMoneyReq.getAccount(), applyMoneyReq.getRealName())) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("必填项不能为空");
|
|
|
|
|
- }
|
|
|
|
|
- if (applyMoneyReq.getAccount().length() > 255 || applyMoneyReq.getRealName().length() > 32) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("请输入正确的账户信息");
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- if (type == DistributeMoneyApply.Type.usdt) {
|
|
|
|
|
- if (StrUtil.isEmpty(applyMoneyReq.getWalletAddr())) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("USDT提现钱包地址不能为空");
|
|
|
|
|
- }
|
|
|
|
|
- if (applyMoneyReq.getWalletAddr().length() > 1000) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("请输入正确的钱包地址");
|
|
|
|
|
- }
|
|
|
|
|
- if (StrUtil.isNotBlank(applyMoneyReq.getRemark()) && applyMoneyReq.getRemark().length() > 512) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("备注过多");
|
|
|
|
|
- }
|
|
|
|
|
- isTakeAll = true;
|
|
|
|
|
-
|
|
|
|
|
- }
|
|
|
|
|
- DistributeMoneyApply distributeMoneyApply = null;
|
|
|
|
|
- if (type == DistributeMoneyApply.Type.pwdRed) {
|
|
|
|
|
- distributeMoneyApply = userDistributeMapper.selectRelationBusiness(userId);
|
|
|
|
|
- isTakeAll = true;
|
|
|
|
|
- }
|
|
|
|
|
- BigDecimal userPoints = user.getPoints();
|
|
|
|
|
- DistributePointsExchangeMoney distributePointsExchangeMoney = distributePointsExchangeMoneyMapper.selectOne(Wrappers.lambdaQuery(DistributePointsExchangeMoney.class).orderByDesc(DistributePointsExchangeMoney::getPoints).last("limit 1"));
|
|
|
|
|
- BigDecimal minPoints = BigDecimal.valueOf(distributePointsExchangeMoney.getMinPoints());
|
|
|
|
|
- BigDecimal ratePoints = BigDecimal.valueOf(distributePointsExchangeMoney.getPoints());
|
|
|
|
|
- BigDecimal minMoney = distributePointsExchangeMoney.getMoney();
|
|
|
|
|
- if (userPoints.compareTo(minPoints) < 0) {
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("您当前积分未达到积分门槛,无法提现");
|
|
|
|
|
- }
|
|
|
|
|
-// //今日是否已提现
|
|
|
|
|
-// DistributeMoneyApply apply = distributeMoneyApplyMapper.selectOne(Wrappers.lambdaQuery(DistributeMoneyApply.class).eq(DistributeMoneyApply::getUserId, userId).between(DistributeMoneyApply::getCreatedTime, DateUtil.beginOfDay(DateTime.now()), DateUtil.endOfDay(DateTime.now())).last("limit 1"));
|
|
|
|
|
-// if (apply != null) {
|
|
|
|
|
-// throw BusinessRuntimeException.getInstance("今日已提现,请明日再进行操作");
|
|
|
|
|
-// }
|
|
|
|
|
- BigDecimal num = userPoints.divide(ratePoints, 0, RoundingMode.DOWN);
|
|
|
|
|
- BigDecimal needApplyMoney = num.multiply(minMoney);
|
|
|
|
|
- BigDecimal needSubPoints = num.multiply(ratePoints);
|
|
|
|
|
- BigDecimal fourHundred = BigDecimal.valueOf(4 * 100 * 100);
|
|
|
|
|
- if (isTakeAll == null || !isTakeAll) {
|
|
|
|
|
- if (needApplyMoney.compareTo(fourHundred) > 0) {
|
|
|
|
|
- needApplyMoney = fourHundred;
|
|
|
|
|
- needSubPoints = fourHundred.divide(minMoney).multiply(ratePoints);
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- Integer update = userMapper.subPoints(user.getId(), needSubPoints);
|
|
|
|
|
- if (update == 1) {
|
|
|
|
|
- distributeMoneyApply = Optional.ofNullable(distributeMoneyApply).orElse(new DistributeMoneyApply());
|
|
|
|
|
- distributeMoneyApply.setUserId(userId);
|
|
|
|
|
- distributeMoneyApply.setPoints(needSubPoints);
|
|
|
|
|
- distributeMoneyApply.setMoney(needApplyMoney);
|
|
|
|
|
- distributeMoneyApply.setAccount(applyMoneyReq.getAccount());
|
|
|
|
|
- distributeMoneyApply.setRealName(applyMoneyReq.getRealName());
|
|
|
|
|
- distributeMoneyApply.setWalletAddr(applyMoneyReq.getWalletAddr());
|
|
|
|
|
- distributeMoneyApply.setRemark(applyMoneyReq.getRemark());
|
|
|
|
|
- distributeMoneyApply.setType(applyMoneyReq.getType());
|
|
|
|
|
- if (isTakeAll != null && isTakeAll) {
|
|
|
|
|
- distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.verifying);
|
|
|
|
|
- } else {
|
|
|
|
|
- TransferAccountsReq req = new TransferAccountsReq();
|
|
|
|
|
- req.setMoney(needApplyMoney);
|
|
|
|
|
- req.setAccount(applyMoneyReq.getAccount());
|
|
|
|
|
- req.setName(applyMoneyReq.getRealName());
|
|
|
|
|
- req.setPoints(needSubPoints);
|
|
|
|
|
- req.setUserId(userId);
|
|
|
|
|
- req.setChannelType(1);
|
|
|
|
|
- req.setRemark("分销提现");
|
|
|
|
|
- AlipayResponse alipayResponse = transferAccounts(req);
|
|
|
|
|
- if (alipayResponse.isSuccess()) {
|
|
|
|
|
- distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.success);
|
|
|
|
|
- } else {
|
|
|
|
|
- distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.fail);
|
|
|
|
|
- distributeMoneyApply.setReason(alipayResponse.getSubMsg());
|
|
|
|
|
- userBenefitsService.addDistributePoints(userId, distributeMoneyApply.getPoints());
|
|
|
|
|
- if (StrUtil.equals(alipayResponse.getSubCode(), "SECURITY_CHECK_FAILED")) {
|
|
|
|
|
- return GatewayResponse.FAIL.newBuilder().setMsg("当前支付宝提现人数较多,请稍后再试").toResult();
|
|
|
|
|
- }
|
|
|
|
|
- return GatewayResponse.FAIL.newBuilder().setMsg(alipayResponse.getSubMsg()).toResult();
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- try {
|
|
|
|
|
- distributeMoneyApplyMapper.insert(distributeMoneyApply);
|
|
|
|
|
- //大额提现 超过400
|
|
|
|
|
- if (envCommonService.isPrdEnv() && distributeMoneyApply.getVerifyStatus() == DistributeMoneyApply.Status.verifying && distributeMoneyApply.getMoney().compareTo(fourHundred) > 0) {
|
|
|
|
|
- SmsUtil.sendLuoKey2Msg(Constant.ZK_MOBILE, "推广有大额提现申请【银河录像局】");
|
|
|
|
|
- }
|
|
|
|
|
- } catch (Exception e) {
|
|
|
|
|
- userBenefitsService.addDistributePoints(userId, distributeMoneyApply.getPoints());
|
|
|
|
|
- return GatewayResponse.FAIL.newBuilder().setMsg("网络错误,请重试").toResult();
|
|
|
|
|
- }
|
|
|
|
|
- return GatewayResponse.SUCCESS.newBuilder().toResult(distributeMoneyApply);
|
|
|
|
|
- }
|
|
|
|
|
- throw BusinessRuntimeException.getInstance("系统异常,请重新提交提现申请");
|
|
|
|
|
|
|
+ applyMoneyReq.setMType(DistributeMoneyApply.MType.ds);
|
|
|
|
|
+ return commonApplyMoney(applyMoneyReq);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
@@ -309,7 +206,13 @@ public class TransferFuncServiceImpl implements TransferFuncService {
|
|
|
return response;
|
|
return response;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- private AlipayRequest aliPayTransferAccountsRequest(String donNo, String account, String name, BigDecimal money,String remark) {
|
|
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public Result<String> subApplyMoney(ApplyMoneyReq applyMoneyReq) throws Exception {
|
|
|
|
|
+ applyMoneyReq.setMType(DistributeMoneyApply.MType.sub);
|
|
|
|
|
+ return commonApplyMoney(applyMoneyReq);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ private AlipayRequest aliPayTransferAccountsRequest(String donNo, String account, String name, BigDecimal money, String remark) {
|
|
|
//支付宝转账
|
|
//支付宝转账
|
|
|
AlipayFundTransUniTransferRequest transUniTransferRequest = new AlipayFundTransUniTransferRequest();
|
|
AlipayFundTransUniTransferRequest transUniTransferRequest = new AlipayFundTransUniTransferRequest();
|
|
|
//转账参数
|
|
//转账参数
|
|
@@ -357,4 +260,142 @@ public class TransferFuncServiceImpl implements TransferFuncService {
|
|
|
Optional.ofNullable(transDate).ifPresent(transferTime -> record.setTransferTime(DateTime.of(transferTime, "yyyy-MM-dd HH:mm:ss")));
|
|
Optional.ofNullable(transDate).ifPresent(transferTime -> record.setTransferTime(DateTime.of(transferTime, "yyyy-MM-dd HH:mm:ss")));
|
|
|
transferAccountsRecordMapper.insert(record);
|
|
transferAccountsRecordMapper.insert(record);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public Result commonApplyMoney(ApplyMoneyReq applyMoneyReq) throws Exception {
|
|
|
|
|
+ Long userId = applyMoneyReq.getUserId();
|
|
|
|
|
+ User user = userMapper.selectById(userId);
|
|
|
|
|
+ if (user == null) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("请先授权登录");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (user.getIsBlack()) throw BusinessRuntimeException.getInstance("系统检测操作异常,请稍后再试");
|
|
|
|
|
+ Boolean isTakeAll = applyMoneyReq.getIsTakeAll();
|
|
|
|
|
+ DistributeMoneyApply.Type type = applyMoneyReq.getType();
|
|
|
|
|
+ if (type == null) type = DistributeMoneyApply.Type.zfb;
|
|
|
|
|
+ if (type == DistributeMoneyApply.Type.zfb) {
|
|
|
|
|
+ if (ObjectUtil.hasEmpty(applyMoneyReq.getAccount(), applyMoneyReq.getRealName())) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("必填项不能为空");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (applyMoneyReq.getAccount().length() > 255 || applyMoneyReq.getRealName().length() > 32) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("请输入正确的账户信息");
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ if (type == DistributeMoneyApply.Type.usdt) {
|
|
|
|
|
+ if (StrUtil.isEmpty(applyMoneyReq.getWalletAddr())) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("USDT提现钱包地址不能为空");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (applyMoneyReq.getWalletAddr().length() > 1000) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("请输入正确的钱包地址");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (StrUtil.isNotBlank(applyMoneyReq.getRemark()) && applyMoneyReq.getRemark().length() > 512) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("备注过多");
|
|
|
|
|
+ }
|
|
|
|
|
+ isTakeAll = true;
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+ DistributeMoneyApply.MType mType = applyMoneyReq.getMType();
|
|
|
|
|
+ Assert.notNull(mType, "系统异常..");
|
|
|
|
|
+ DistributeMoneyApply distributeMoneyApply = null;
|
|
|
|
|
+ if (type == DistributeMoneyApply.Type.pwdRed) {
|
|
|
|
|
+ distributeMoneyApply = userDistributeMapper.selectRelationBusiness(userId);
|
|
|
|
|
+ isTakeAll = true;
|
|
|
|
|
+ }
|
|
|
|
|
+// //今日是否已提现
|
|
|
|
|
+// DistributeMoneyApply apply = distributeMoneyApplyMapper.selectOne(Wrappers.lambdaQuery(DistributeMoneyApply.class).eq(DistributeMoneyApply::getUserId, userId).between(DistributeMoneyApply::getCreatedTime, DateUtil.beginOfDay(DateTime.now()), DateUtil.endOfDay(DateTime.now())).last("limit 1"));
|
|
|
|
|
+// if (apply != null) {
|
|
|
|
|
+// throw BusinessRuntimeException.getInstance("今日已提现,请明日再进行操作");
|
|
|
|
|
+// }
|
|
|
|
|
+ BigDecimal userPoints = null;
|
|
|
|
|
+ BigDecimal needSubPoints = null;
|
|
|
|
|
+ BigDecimal needApplyMoney = null;
|
|
|
|
|
+ BigDecimal fourHundred = null;
|
|
|
|
|
+ if (mType == DistributeMoneyApply.MType.ds) {
|
|
|
|
|
+ userPoints = user.getPoints();
|
|
|
|
|
+ DistributePointsExchangeMoney distributePointsExchangeMoney = distributePointsExchangeMoneyMapper.selectOne(Wrappers.lambdaQuery(DistributePointsExchangeMoney.class).orderByDesc(DistributePointsExchangeMoney::getPoints).last("limit 1"));
|
|
|
|
|
+ BigDecimal minPoints = BigDecimal.valueOf(distributePointsExchangeMoney.getMinPoints());
|
|
|
|
|
+ BigDecimal ratePoints = BigDecimal.valueOf(distributePointsExchangeMoney.getPoints());
|
|
|
|
|
+ BigDecimal minMoney = distributePointsExchangeMoney.getMoney();
|
|
|
|
|
+ if (userPoints.compareTo(minPoints) < 0) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("您当前积分未达到积分门槛,无法提现");
|
|
|
|
|
+ }
|
|
|
|
|
+ BigDecimal num = userPoints.divide(ratePoints, 0, RoundingMode.DOWN);
|
|
|
|
|
+ needApplyMoney = num.multiply(minMoney);
|
|
|
|
|
+ needSubPoints = num.multiply(ratePoints);
|
|
|
|
|
+ fourHundred = BigDecimal.valueOf(4 * 100 * 100);
|
|
|
|
|
+ if (isTakeAll == null || !isTakeAll) {
|
|
|
|
|
+ if (needApplyMoney.compareTo(fourHundred) > 0) {
|
|
|
|
|
+ needApplyMoney = fourHundred;
|
|
|
|
|
+ needSubPoints = fourHundred.divide(minMoney).multiply(ratePoints);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ if (mType == DistributeMoneyApply.MType.sub) {
|
|
|
|
|
+ needApplyMoney = user.getSubApplyMoney();
|
|
|
|
|
+ if (needApplyMoney.compareTo(BigDecimal.ZERO) <= 0) {
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("您暂无可提现金额..");
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ Integer update = 0;
|
|
|
|
|
+ String zfbRemark = StrUtil.EMPTY;
|
|
|
|
|
+ if (mType == DistributeMoneyApply.MType.ds) {
|
|
|
|
|
+ update = userMapper.subPoints(user.getId(), needSubPoints);
|
|
|
|
|
+ zfbRemark = Constant.APPLY_MONEY_DS;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (mType == DistributeMoneyApply.MType.sub) {
|
|
|
|
|
+ update = userMapper.suUserSubApplyMoney(user.getId(), needApplyMoney);
|
|
|
|
|
+ zfbRemark = Constant.APPLY_MONEY_SUB;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (update == 1) {
|
|
|
|
|
+ distributeMoneyApply = Optional.ofNullable(distributeMoneyApply).orElse(new DistributeMoneyApply());
|
|
|
|
|
+ distributeMoneyApply.setUserId(userId);
|
|
|
|
|
+ distributeMoneyApply.setPoints(needSubPoints);
|
|
|
|
|
+ distributeMoneyApply.setMoney(needApplyMoney);
|
|
|
|
|
+ distributeMoneyApply.setAccount(applyMoneyReq.getAccount());
|
|
|
|
|
+ distributeMoneyApply.setRealName(applyMoneyReq.getRealName());
|
|
|
|
|
+ distributeMoneyApply.setWalletAddr(applyMoneyReq.getWalletAddr());
|
|
|
|
|
+ distributeMoneyApply.setRemark(applyMoneyReq.getRemark());
|
|
|
|
|
+ distributeMoneyApply.setType(applyMoneyReq.getType());
|
|
|
|
|
+ distributeMoneyApply.setMType(applyMoneyReq.getMType());
|
|
|
|
|
+ if (isTakeAll != null && isTakeAll) {
|
|
|
|
|
+ distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.verifying);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ TransferAccountsReq req = new TransferAccountsReq();
|
|
|
|
|
+ req.setMoney(needApplyMoney);
|
|
|
|
|
+ req.setAccount(applyMoneyReq.getAccount());
|
|
|
|
|
+ req.setName(applyMoneyReq.getRealName());
|
|
|
|
|
+ req.setPoints(needSubPoints);
|
|
|
|
|
+ req.setUserId(userId);
|
|
|
|
|
+ req.setChannelType(1);
|
|
|
|
|
+ req.setRemark(zfbRemark);
|
|
|
|
|
+ AlipayResponse alipayResponse = transferAccounts(req);
|
|
|
|
|
+ if (alipayResponse.isSuccess()) {
|
|
|
|
|
+ distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.success);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ distributeMoneyApply.setVerifyStatus(DistributeMoneyApply.Status.fail);
|
|
|
|
|
+ distributeMoneyApply.setReason(alipayResponse.getSubMsg());
|
|
|
|
|
+ if (mType == DistributeMoneyApply.MType.ds){
|
|
|
|
|
+ userBenefitsService.addDistributePoints(userId, distributeMoneyApply.getPoints());
|
|
|
|
|
+ }
|
|
|
|
|
+ if (mType == DistributeMoneyApply.MType.sub) {
|
|
|
|
|
+ userBenefitsService.addDistributeSubMoney(userId, needApplyMoney);
|
|
|
|
|
+ }
|
|
|
|
|
+ if (StrUtil.equals(alipayResponse.getSubCode(), "SECURITY_CHECK_FAILED")) {
|
|
|
|
|
+ return GatewayResponse.FAIL.newBuilder().setMsg("当前支付宝提现人数较多,请稍后再试").toResult();
|
|
|
|
|
+ }
|
|
|
|
|
+ return GatewayResponse.FAIL.newBuilder().setMsg(alipayResponse.getSubMsg()).toResult();
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ try {
|
|
|
|
|
+ distributeMoneyApplyMapper.insert(distributeMoneyApply);
|
|
|
|
|
+ //大额提现 超过400
|
|
|
|
|
+ if (envCommonService.isPrdEnv() && distributeMoneyApply.getVerifyStatus() == DistributeMoneyApply.Status.verifying && distributeMoneyApply.getMoney().compareTo(fourHundred) > 0) {
|
|
|
|
|
+ SmsUtil.sendLuoKey2Msg(Constant.ZK_MOBILE, "推广有大额提现申请【银河录像局】");
|
|
|
|
|
+ }
|
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
|
+ userBenefitsService.addDistributePoints(userId, distributeMoneyApply.getPoints());
|
|
|
|
|
+ return GatewayResponse.FAIL.newBuilder().setMsg("网络错误,请重试").toResult();
|
|
|
|
|
+ }
|
|
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(distributeMoneyApply);
|
|
|
|
|
+ }
|
|
|
|
|
+ throw BusinessRuntimeException.getInstance("系统异常,请重新提交提现申请");
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|