quguofeng %!s(int64=2) %!d(string=hai) anos
pai
achega
282a24df89

+ 8 - 7
app/common/repositories/store/order/StoreOrderRepository.php

@@ -759,14 +759,15 @@ class StoreOrderRepository extends BaseRepository
         }
         $integral = $residue_percentage * $order->total_price / 100;
         if($integral){
-            app()->make(UserBillRepository::class)->incBill($user->uid, 'integral', 'rebate', [
-                'link_id' => $order->order_id,
-                'status' => 0,
-                'title' => '超出比例发放红包米',
+            //增加记录
+            $arr = [
+                'status' => 1,
+                'mark'   => '分销超出折扣比,返利'.$integral.'红包米',
                 'number' => $integral,
-                'mark' => '分销超出折扣比,返利'.$integral.'红包米',
-                'balance' => $user->integral + $integral
-            ]);
+                'balance'=> $user->integral + $integral,
+            ];
+            $user_make = app()->make(UserRepository::class);
+            $user_make->incIntegral($user->uid,$integral,'超出比例发放红包米','rebate',$arr);
         }
     }
     /**