From faca9207f4912326e33cd26ec6ee504e982d021a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=9D=99?= Date: Wed, 5 Jan 2022 17:58:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=A5=96=E9=87=91=E5=A4=87?= =?UTF-8?q?=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/DistributionPreIncomeJobService.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Services/DistributionPreIncomeJobService.php b/app/Services/DistributionPreIncomeJobService.php index 38fc3cd2..827935e4 100644 --- a/app/Services/DistributionPreIncomeJobService.php +++ b/app/Services/DistributionPreIncomeJobService.php @@ -290,7 +290,7 @@ class DistributionPreIncomeJobService 'fee_rate' => bcmul($feeRate, '1', 2), 'bonus_rate' => bcmul($bonusRate, '1', 2), ], - 'remarks' => "推粉丝赚差价-订单号: {$order->sn}", + 'remarks' => "订单号: {$order->sn}", ]); $preIncomeLogs[] = [ @@ -299,7 +299,7 @@ class DistributionPreIncomeJobService 'change_amount' => bcdiv($order->total_amount, 100), 'change_sales_value' => $preIncome->total_sales_value, 'change_revenue' => $preIncome->total_revenue, - 'remarks' => "推粉丝赚差价-订单号: {$order->sn}", + 'remarks' => "订单号: {$order->sn}", 'created_at' => $preIncome->created_at, 'updated_at' => $preIncome->created_at, ]; @@ -350,7 +350,7 @@ class DistributionPreIncomeJobService // 实际奖励比例 'bonus_rate' => bcmul($bonusRate, '1', 2), ], - 'remarks' => "平级奖励-订单号: {$order->sn}", + 'remarks' => "订单号: {$order->sn}", ]); $preIncomeLogs[] = [ @@ -359,7 +359,7 @@ class DistributionPreIncomeJobService 'change_amount' => $preIncome->total_amount, 'change_sales_value' => $preIncome->total_sales_value, 'change_revenue' => $preIncome->total_revenue, - 'remarks' => "平级奖励-订单号: {$order->sn}", + 'remarks' => "订单号: {$order->sn}", 'created_at' => $preIncome->created_at, 'updated_at' => $preIncome->created_at, ]; @@ -405,7 +405,7 @@ class DistributionPreIncomeJobService // 级差奖励比例 'lvl_diff_bonus_rate' => bcmul($lvlDiffBonusRate, '1', 2), ], - 'remarks' => "级差奖励-订单号: {$order->sn}", + 'remarks' => "订单号: {$order->sn}", ]); $preIncomeLogs[] = [ @@ -414,7 +414,7 @@ class DistributionPreIncomeJobService 'change_amount' => $preIncome->total_amount, 'change_sales_value' => $preIncome->total_sales_value, 'change_revenue' => $preIncome->total_revenue, - 'remarks' => "级差奖励-订单号: {$order->sn}", + 'remarks' => "订单号: {$order->sn}", 'created_at' => $preIncome->created_at, 'updated_at' => $preIncome->created_at, ];