mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update
This commit is contained in:
parent
e8b6f1b481
commit
c271647ecc
@ -77,9 +77,10 @@ class OrderController extends Controller
|
||||
private function getSurplusValue(User $user)
|
||||
{
|
||||
$plan = Plan::find($user->plan_id);
|
||||
switch ($plan->type) {
|
||||
case 0: return $this->getSurplusValueByCycle($user, $plan);
|
||||
case 1: return $this->getSurplusValueByOneTime($user, $plan);
|
||||
if ($user->expired_at === NULL) {
|
||||
return $this->getSurplusValueByOneTime($user, $plan);
|
||||
} else {
|
||||
return $this->getSurplusValueByCycle($user, $plan);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user