mirror of
https://github.com/v2board/v2board.git
synced 2025-01-11 00:29:09 +08:00
update
This commit is contained in:
parent
04c6b865b4
commit
e15d5961f0
@ -60,7 +60,7 @@ class OrderController extends Controller
|
|||||||
abort(500, '订单不存在');
|
abort(500, '订单不存在');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((int)$params['status'] === 2) {
|
if (isset($params['status']) && (int)$params['status'] === 2) {
|
||||||
$orderService = new OrderService($order);
|
$orderService = new OrderService($order);
|
||||||
if (!$orderService->cancel()) {
|
if (!$orderService->cancel()) {
|
||||||
abort(500, '更新失败');
|
abort(500, '更新失败');
|
||||||
|
Loading…
Reference in New Issue
Block a user