mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
fix
This commit is contained in:
parent
3fe442313d
commit
3becb71a5a
@ -29,14 +29,12 @@ class PlanController extends Controller
|
||||
abort(500, '该订阅不存在');
|
||||
}
|
||||
DB::beginTransaction();
|
||||
if (isset($params->group_id) && ($params->group_id !== $plan->group_id)) {
|
||||
if (!User::where('plan_id', $plan->id)
|
||||
->get()
|
||||
->update(['group_id', $plan->group_id])
|
||||
) {
|
||||
DB::rollBack();
|
||||
abort(500, '保存失败');
|
||||
}
|
||||
if (!User::where('plan_id', $plan->id)
|
||||
->get()
|
||||
->update(['group_id', $plan->group_id])
|
||||
) {
|
||||
DB::rollBack();
|
||||
abort(500, '保存失败');
|
||||
}
|
||||
if (!$plan->update($params)) {
|
||||
DB::rollBack();
|
||||
|
Loading…
Reference in New Issue
Block a user