|
@@ -193,7 +193,7 @@ class UserWalletApply extends Model
|
|
|
}
|
|
|
if ($withDrawStatus) {
|
|
|
$apply->status = 2;
|
|
|
- $apply->actual_money = $apply->money;
|
|
|
+ $apply->actual_money = bcsub($apply->money ,$apply->charge_money,2);
|
|
|
$apply->save();
|
|
|
return self::handleLog($apply, '已打款');
|
|
|
}
|
|
@@ -208,7 +208,7 @@ class UserWalletApply extends Model
|
|
|
}
|
|
|
$apply->status = -1;
|
|
|
$apply->save();
|
|
|
- User::money($apply->money + $apply->charge_money, $apply->user_id, 'cash_error', $apply->id);
|
|
|
+ User::money($apply->money, $apply->user_id, 'cash_error', $apply->id);
|
|
|
return self::handleLog($apply, '拒绝:' . $rejectInfo);
|
|
|
}
|
|
|
|