-
Notifications
You must be signed in to change notification settings - Fork 211
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
Fixed issue for order status pre-authorized state configuration #2529
Open
sarfarazbheda
wants to merge
9
commits into
Adyen:develop
Choose a base branch
from
sarfarazbheda:fixes/order-status-pre_authorized
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fixed issue for order status pre-authorized state configuration #2529
sarfarazbheda
wants to merge
9
commits into
Adyen:develop
from
sarfarazbheda:fixes/order-status-pre_authorized
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sarfarazbheda
had a problem deploying
to
external
February 28, 2024 08:36
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
February 28, 2024 08:36
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
February 28, 2024 08:36
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
February 28, 2024 08:36
— with
GitHub Actions
Failure
Please approve workflows |
sarfarazbheda
had a problem deploying
to
external
March 21, 2024 04:52
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 21, 2024 04:52
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 21, 2024 04:52
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 21, 2024 04:52
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 23, 2024 00:30
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 23, 2024 00:30
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 23, 2024 00:30
— with
GitHub Actions
Failure
sarfarazbheda
had a problem deploying
to
external
March 23, 2024 00:30
— with
GitHub Actions
Failure
@candemiralp please check this PR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
As per the Webhook Helper[adyen/module-payment/Helper/Webhook.php] file, we can assign states if order is in pre-authorized condition.
But when we create new order status "adyen_authorized" [ref. from adyen-magento2/Model/Config/Source/PreAuthorized.php], and assign this status in Adyen configuration, it's not working.
When the order is Authorized, Even if we have assigned new status in configuration, it will show order in "Pending" status only. The reason is, below function only grab the first item from the assigned Statuses. [file ref. vendor/adyen/module-payment/Helper/Order.php]
So As solution, I switched the sequence in Webhook Helper[adyen/module-payment/Helper/Webhook.php] file to pick "adyen_authorized" first and then check for "NEW" status. See updated file below:
Tested scenarios
Fixes
There is no such issue reported.