Skip to content

Commit 7554c9e

Browse files
authored
Merge pull request #12061 from notbakaneko/feature/xsolla-redirect-just-redirect
Show more accurate order state message after xsolla redirect
2 parents 1103470 + 092c52a commit 7554c9e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/Http/Controllers/Payments/XsollaController.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
use App\Exceptions\InvalidSignatureException;
99
use App\Exceptions\Store\OrderException;
10-
use App\Libraries\OrderCheckout;
1110
use App\Libraries\Payments\XsollaPaymentProcessor;
1211
use App\Libraries\Payments\XsollaSignature;
1312
use App\Libraries\Payments\XsollaUserNotFoundException;
@@ -106,9 +105,9 @@ public function callback(HttpRequest $request)
106105
public function completed()
107106
{
108107
$orderNumber = Request::input('foreignInvoice') ?? '';
109-
$order = OrderCheckout::for($orderNumber)->completeCheckout();
108+
$order = Order::whereOrderNumber($orderNumber)->firstOrFail();
110109

111-
return redirect(route('store.invoice.show', ['invoice' => $order->order_id, 'thanks' => 1]));
110+
return redirect(route('store.invoice.show', ['invoice' => $order->getKey(), 'thanks' => 1]));
112111
}
113112

114113
private function errorResponse(string $message, string $code, int $status)

0 commit comments

Comments
 (0)