-
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
[PW-7147] Handle Capture Requests triggered from Customer Area #1714
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
RokPopov
requested review from
AlexandrosMor,
acampos1916,
rikterbeek,
peterojo,
Morerice,
michaelpaul and
candemiralp
as code owners
September 15, 2022 14:04
michaelpaul
requested changes
Sep 15, 2022
candemiralp
reviewed
Sep 20, 2022
candemiralp
reviewed
Sep 20, 2022
Co-authored-by: Can Demiralp <ecandemiralp@gmail.com>
Co-authored-by: Can Demiralp <ecandemiralp@gmail.com>
candemiralp
previously approved these changes
Sep 20, 2022
peterojo
previously approved these changes
Sep 20, 2022
Merged
michaelpaul
reviewed
Sep 21, 2022
Co-authored-by: Michael Paul <michael.paul@adyen.com>
peterojo
previously approved these changes
Sep 22, 2022
AlexandrosMor
previously approved these changes
Sep 22, 2022
michaelpaul
reviewed
Sep 22, 2022
RokPopov
dismissed stale reviews from AlexandrosMor and peterojo
via
September 22, 2022 14:40
344d868
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
michaelpaul
approved these changes
Sep 22, 2022
AlexandrosMor
approved these changes
Sep 22, 2022
peterojo
approved these changes
Sep 22, 2022
RokPopov
added a commit
that referenced
this pull request
Sep 22, 2022
* create adyen and magento invoice from webhook if captured manually in CA * remove code smells * throw exception if adyen_invoice null and canInvoice is false * throw exception in case of CA initiated partial manual capture * use AdyenWebhookException instead of a generic one * rename method Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> * use renamed method Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> * update $adyenInvoice Co-authored-by: Michael Paul <michael.paul@adyen.com> * resolve merge conflicts * get rid of code smells * remove final code smells * use $adyenInvoiceObject instead of $adyenInvoice * remove code smell Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> Co-authored-by: Michael Paul <michael.paul@adyen.com> Co-authored-by: Peter Ojo <peterojo@users.noreply.github.com>
RokPopov
added a commit
that referenced
this pull request
Sep 28, 2022
* add test for isFullAmountFinalized - immediate capture * [PW-7208] Update adyen method call for virtual products (#1716) * Update adyen method call for virtual products * Remove checking for shipping adress before doing the payment methods call Co-authored-by: Jeantwan Teuma <Morerice@users.noreply.github.com> Co-authored-by: Peter Ojo <peterojo@users.noreply.github.com> * Version bump 8.6.0 * [PW-7147] Handle Capture Requests triggered from Customer Area (#1714) * create adyen and magento invoice from webhook if captured manually in CA * remove code smells * throw exception if adyen_invoice null and canInvoice is false * throw exception in case of CA initiated partial manual capture * use AdyenWebhookException instead of a generic one * rename method Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> * use renamed method Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> * update $adyenInvoice Co-authored-by: Michael Paul <michael.paul@adyen.com> * resolve merge conflicts * get rid of code smells * remove final code smells * use $adyenInvoiceObject instead of $adyenInvoice * remove code smell Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> Co-authored-by: Michael Paul <michael.paul@adyen.com> Co-authored-by: Peter Ojo <peterojo@users.noreply.github.com> * refactor the way we are building mock AdyenOrderPaymentHelper, fix testCreateAdyenOrderPayment * setup testIsFullAmountAuthorized() * add testIsFullAmountNotFinalizedManualCapture() and testIsFullAmountAuthorized() * setup testRefundAdyenOrderPayment() * remove code smells * align params - code smell * fix testRefundAdyenOrderPayment Co-authored-by: Alexandros Moraitis <alexandros.moraitis@adyen.com> Co-authored-by: Jeantwan Teuma <Morerice@users.noreply.github.com> Co-authored-by: Peter Ojo <peterojo@users.noreply.github.com> Co-authored-by: peterojo <peter.ojo@adyen.com> Co-authored-by: Can Demiralp <ecandemiralp@gmail.com> Co-authored-by: Michael Paul <michael.paul@adyen.com>
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
Currently in our plugin, if a capture request is triggered from the CA, the plugin is not handling the corresponding webhook and the order is not updated on Magento.
This PR introduces a solution where Adyen and Magento invoice are created during the processing of the CAPTURE webhook. This process creates entries in both
sales_invoice
andadyen_invoice
tables.With this PR, only full capture flow is supported. In cases where partial capture is initiated from the Adyen Customer Area, the webhook gets processed but no invoice is created on Magento's end. The merchant has to create the offline invoice from the admin panel.
Tested scenarios
Fixes: #1682