From 61bbd595ee2bc3c67b40878894dcc07174c6eea6 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期二, 24 九月 2024 10:15:30 +0800
Subject: [PATCH] 玩湃微信商户分账

---
 cloud-server-other/src/main/java/com/dsh/other/controller/GameController.java |   49 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 47 insertions(+), 2 deletions(-)

diff --git a/cloud-server-other/src/main/java/com/dsh/other/controller/GameController.java b/cloud-server-other/src/main/java/com/dsh/other/controller/GameController.java
index bda7919..bf1a715 100644
--- a/cloud-server-other/src/main/java/com/dsh/other/controller/GameController.java
+++ b/cloud-server-other/src/main/java/com/dsh/other/controller/GameController.java
@@ -177,7 +177,8 @@
 
 
 
-
+    @Autowired
+    private IOperatorUserService operatorUserService;
     @ResponseBody
     @PostMapping("/api/game/payGame")
     @ApiOperation(value = "支付游戏", tags = {"用户—游戏"})
@@ -195,6 +196,14 @@
             Integer uid = tokenUtil.getUserIdFormRedis();
             if (null == uid) {
                 return ResultUtil.tokenErr();
+            }
+            Site byId = siteService.getById(spaceId);
+            // 是否分账 0否1是
+            int isFenZhang= 1;
+            String merchantNumber = "";
+            if (byId.getOperatorId()==null || byId.getOperatorId()==0){
+                // 平台
+                isFenZhang = 0;
             }
             //判断当前用户是否是员工
             AppUser appUser1 = appUserClient.queryAppUser(uid);
@@ -218,7 +227,7 @@
                 tGameRecord.setMoney(config.getCash());
                 gameRecordService.updateById(tGameRecord);
                 String params = uid + "_" + gameId + "_" + spaceId + "_" + sutuId+"_"+code+"_"+configId + "_" + gameType;
-                ResultUtil weixinpay = payMoneyUtil.weixinpay("游戏支付", params, code, config.getCash().toString(),
+                ResultUtil weixinpay = payMoneyUtil.weixinpay("游戏支付-"+isFenZhang, params, code, config.getCash().toString(),
                         "/base/game/wechatPaymentGameCallback", "APP", "");
                 if (weixinpay.getCode() == 200) {
                     new Thread(new Runnable() {
@@ -262,7 +271,43 @@
                                             }
                                             gameRecordService.updateBatchById(list);
                                             Integer integer = startGame(uid, gameType, gameId, spaceId, sutuId);
+                                            if (byId.getOperatorId()!=null && byId.getOperatorId()!=0){
+                                                // 休眠两分钟后再调用分账接口 避免提示订单正在处理中
+                                                Thread.sleep(120000);
+                                                // 根据运营商id获取对应运营商分账比例 返回格式: 微信分账比例,支付宝分账比例
+                                                OperatorUser operatorId = operatorUserService.getOne(
+                                                        new QueryWrapper<OperatorUser>().eq("operatorId",byId.getOperatorId())
+                                                );
+                                                if (operatorId.getWechatProportion() == null){
+                                                    operatorId.setWechatProportion("0");
+                                                }
+                                                if (operatorId.getAlipayProportion() == null){
+                                                    operatorId.setAlipayProportion("0");
+                                                }
+                                                String proportion=  operatorId.getWechatProportion()+","+operatorId.getAlipayProportion();
+                                                String[] split = proportion.split(",");
+                                                String s1 = split[0];
+                                                if (!s1.equals("未设置")){
+                                                    BigDecimal bigDecimal = new BigDecimal(s1);
+                                                    // 分账比例
+                                                    BigDecimal bigDecimal1 = bigDecimal.divide(new BigDecimal(100)).setScale(2);
+                                                    // 微信商户号
+                                                    String s2 =siteService.getmerchantNumberByOperatorId(byId.getOperatorId());
+                                                    String nonce_str = UUIDUtil.getRandomCode(16);
+
+                                                    ResultUtil fenzhang = payMoneyUtil.fenzhang(transaction_id, config.getCash().multiply(bigDecimal1), s2,nonce_str);
+                                                    if (!fenzhang.getCode().equals(500)){
+                                                        System.err.println("分账失败 原因是:"+fenzhang.getMsg());
+                                                    }else{
+                                                            tGameRecord.setFenzhangNo(fenzhang.getMsg());
+                                                            tGameRecord.setFenzhangOrderNo(nonce_str);
+                                                            tGameRecord.setFenzhangAmount(config.getCash().multiply(bigDecimal1));
+                                                            gameRecordService.updateById(tGameRecord);
+                                                    }
+                                                }
+                                            }
                                             break;
+
                                         }
                                         if ("USERPAYING".equals(s) || "NOTPAY".equals(s)) {
                                             num++;

--
Gitblit v1.7.1