Browse Source

fix(task): 更新共富合伙人分红金额和名称

- 将分红金额从 22.85 更新为 34.27
- 将合伙人级别从三星更新为钻石级别
- 更新分红标题和备注信息以匹配新的钻石合伙人级别
shichen 5 months ago
parent
commit
14b953bc67
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/controller/api/shareProsperity/Task.php

+ 3 - 3
app/controller/api/shareProsperity/Task.php

@@ -472,18 +472,18 @@ class Task
472
     {
472
     {
473
         $groupUser = Db::name('shared_prosperity_user')->where('partner_level',3)->select()->toArray();
473
         $groupUser = Db::name('shared_prosperity_user')->where('partner_level',3)->select()->toArray();
474
         $userData = array_column($groupUser,'user_id');
474
         $userData = array_column($groupUser,'user_id');
475
-        $money = 22.85;
475
+        $money = 34.27;
476
         foreach ($userData as $key => $uid) {
476
         foreach ($userData as $key => $uid) {
477
             $bill = [
477
             $bill = [
478
                 'uid' => $uid,
478
                 'uid' => $uid,
479
                 'link_id' => 0,
479
                 'link_id' => 0,
480
                 'pm' => 1,
480
                 'pm' => 1,
481
-                'title' => '共富三星合伙人分红',
481
+                'title' => '共富钻石合伙人分红',
482
                 'category' => 'now_money',
482
                 'category' => 'now_money',
483
                 'type' => 'commission',
483
                 'type' => 'commission',
484
                 'number' => $money,
484
                 'number' => $money,
485
                 'balance' => 0,
485
                 'balance' => 0,
486
-                'mark' => '共富三星合伙人分红',
486
+                'mark' => '共富钻石合伙人分红',
487
                 'create_time' => date('Y-m-d H:i:s'),
487
                 'create_time' => date('Y-m-d H:i:s'),
488
                 'status' => 1,
488
                 'status' => 1,
489
                 'commission_type' => CommonEnum::COMMISSION_TYPE['SHARED_PROSPERITY_PARTNER_COMMISSION']['code'],
489
                 'commission_type' => CommonEnum::COMMISSION_TYPE['SHARED_PROSPERITY_PARTNER_COMMISSION']['code'],