Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter checkout with productId() #76

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Tests/Feature/Checkout/IndexCheckoutTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ public static function checkoutFilterDataProvider(): array
'queryKey' => 'q',
'queryValue' => 'test',
],
[
'method' => 'productId',
'value' => 1,
'queryKey' => 'product_id',
'queryValue' => '1',
],
[
'method' => 'status',
'value' => CheckoutStatus::DELETED,
Expand Down
7 changes: 7 additions & 0 deletions src/Filters/CheckoutFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ public function query(string $value): self
return $this;
}

public function productId(int $value): self
{
$this->parameters['product_id'] = $value;

return $this;
}

public function status(CheckoutStatus $value): self
{
$this->parameters['status'] = $value->value;
Expand Down