mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
update: fix
This commit is contained in:
parent
838fc7bdba
commit
346d0222f5
@ -43,9 +43,9 @@ class PlanController extends Controller
|
||||
->get();
|
||||
if (isset($counts)) {
|
||||
foreach ($plans as $k => $v) {
|
||||
if (isset($counts[$plans[$k]->id])) {
|
||||
$plans[$k]->capacity_limit = $plans[$k]->capacity_limit - $counts[$plans[$k]->id]->count;
|
||||
}
|
||||
if ($plans[$k]->capacity_limit === NULL) continue;
|
||||
if (!isset($counts[$plans[$k]->id])) continue;
|
||||
$plans[$k]->capacity_limit = $plans[$k]->capacity_limit - $counts[$plans[$k]->id]->count;
|
||||
}
|
||||
}
|
||||
return response([
|
||||
|
@ -16,7 +16,7 @@ class PlanService
|
||||
|
||||
public function haveCapacity(): bool
|
||||
{
|
||||
if ($this->plan->capacity_limit === 0) return true;
|
||||
if ($this->plan->capacity_limit === NULL) return true;
|
||||
$count = User::where('plan_id', $this->plan->plan_id)->count();
|
||||
return $this->plan->capacity_limit - $count;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user