6
0
Fork 0

调整批零订单打款

release
vine_liutk 2022-02-10 15:18:25 +08:00
parent 3f3898ea27
commit 4c9a0553e5
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class OrderController extends Controller
$input = $request->validate([
'pay_image' => ['bail', 'string'],
]);
$orderService->payOrder($order, $input['pay_image']);
$orderService->payOrder($order, $input['pay_image'] ?? null);
return response()->noContent();
}