mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	update
This commit is contained in:
		| @@ -277,6 +277,9 @@ class OrderController extends Controller | |||||||
|         if (!$order) { |         if (!$order) { | ||||||
|             abort(500, '订单不存在'); |             abort(500, '订单不存在'); | ||||||
|         } |         } | ||||||
|  |         if ($order->status !== 1) { | ||||||
|  |             abort(500, '只可以取消待支付订单'); | ||||||
|  |         } | ||||||
|         $order->status = 2; |         $order->status = 2; | ||||||
|         if (!$order->save()) { |         if (!$order->save()) { | ||||||
|             abort(500, '取消失败'); |             abort(500, '取消失败'); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user