feat(UserSignLogic): 修复首充逻辑判断条件

This commit is contained in:
mkm 2024-07-05 18:32:07 +08:00
parent 2ae218e0bd
commit b8aad3cdc2

View File

@ -43,7 +43,7 @@ class UserSignLogic extends BaseLogic
return false;
}
$count = UserRecharge::where('uid', $order->uid)->count();
if ($count >=1 && in_array($user_ship, [1, 2, 3, 5, 6, 7, 8])) {
if ($count ==1 && in_array($user_ship, [1, 2, 3, 5, 6, 7, 8])) {
//首充
$write = self::write($order, $total_vip, 0, 1, 9);
self::write_log($write, $total_vip, 0, 7);