songxingwei 2 år sedan
förälder
incheckning
0407bd3353

+ 1 - 7
application/common/library/Yeepay.php

@@ -69,7 +69,7 @@ class Yeepay extends Controller
     }
 
     //申请分账
-    public function subAccount($order_no,$uniqueOrderNo,$amount,$amount2,$ledgerNo){
+    public function subAccount($order_no,$uniqueOrderNo,$amount,$ledgerNo){
         require_once env('root_path').'application/common/library/lib/YopRequest.php';
         require_once env('root_path').'application/common/library/lib/YopClient3.php';
         require_once env('root_path').'application/common/library/lib/YopRsaClient.php';
@@ -84,12 +84,6 @@ class Yeepay extends Controller
         $divideDetail = [
             [
                 "amount"=> $amount,
-                "ledgerNo"=> $this->merchantNo,
-                "ledgerType"=> "MERCHANT2MERCHANT",
-                "divideDetailDesc"=> "供应商结算"
-            ],
-            [
-                "amount"=> $amount2,
                 "ledgerNo"=> $ledgerNo,
                 "ledgerNoFrom"=>$this->merchantNo,
                 "ledgerType"=> "MERCHANT2MEMBER"

+ 1 - 1
application/index/controller/Pay.php

@@ -55,7 +55,7 @@ class Pay extends Controller
                     [
                         'status'=>1,
                         'pay_at'=>date('Y-m-d H:i:s'),
-                        'pay_return'=>json_encode($result)
+                        'pay_return'=>json_encode($result,true)
                     ]
                 );
                 if ($re){

+ 22 - 2
application/store/controller/CollectionBonus.php

@@ -1,5 +1,6 @@
 <?php
 namespace app\store\controller;
+use app\common\library\Yeepay;
 use library\Controller;
 use think\Db;
 
@@ -73,10 +74,29 @@ class CollectionBonus extends Controller
         if (!$list){
             $this->error('没有数据可结算');
         }
+        $yeep = new Yeepay();
         foreach ($list as &$v){
-            echo $v['id']."<br />";
+            $res = false;
+            $fash = Db::name('store_fashionable')
+                ->where('status',1)
+                ->where('remaining_amount','egt',$v['price'])
+                ->find();
+            if (!$fash){
+                break;
+            }else{
+                $result = json_decode($fash['pay_return'],true);
+                $res = $yeep->subAccount($result['orderId'],$result['uniqueOrderNo'],$v['price'],$v['walletUserNo']);
+                $da = [
+                    'status'=>0,
+                    'subaccount_at'=>date('Y-m-d H:i:s'),
+                    'subaccount_return'=>json_encode($res,true)
+                ];
+                if ($res && $res['state']=='SUCCESS' && $res['result']['code']=='OPR00000'){
+                    $da['status'] = 1;
+                }
+            }
         }
-        die;
+        $this->success('请求成功,分账中..');
     }