|
|
@@ -112,10 +112,9 @@ class QianBaoWithdrawService
|
|
|
$text = "👤 {$firstName}({$chatId}) 钱宝提现记录\n\n";
|
|
|
foreach ($list as $item) {
|
|
|
$amount = floatval($item->amount);
|
|
|
- $amount = $amount < 0 ? ("➖ " . ($amount * -1)) : "➕ $amount";
|
|
|
- $text .= "-------------------------------------\n";
|
|
|
-
|
|
|
|
|
|
+ $amount = $item->type == 2 ? "➖ {$amount}" : "➕ $amount";
|
|
|
+ $text .= "-------------------------------------\n";
|
|
|
$text .= "{$amount} \n";
|
|
|
$text .= "订单号:{$item->order_no}\n";
|
|
|
|