- 15 May, 2020 4 commits
-
-
cyattilakiss authored
Release 6.1.0
-
attilak authored
Some PWA integrations can still use the session to retrieve the order but in the next major release only the orderId request parameter can be used to retrieve the order object
-
cyattilakiss authored
-
attilak authored
-
- 13 May, 2020 2 commits
-
-
Rik ter Beek authored
-
Rik ter Beek authored
-
- 12 May, 2020 1 commit
-
-
Ángel Campos authored
-
- 11 May, 2020 1 commit
-
-
Per authored
Pressing the enter key while inside a text field in one the Adyen forms caused the checkout page to reload instead of being submitted. Co-authored-by: Per <per@oddny.se>
-
- 08 May, 2020 2 commits
-
-
Ángel Campos authored
-
Ángel Campos authored
-
- 04 May, 2020 3 commits
-
-
Ángel Campos authored
-
acampos1916 authored
This reverts commit 32120f62
-
acampos1916 authored
-
- 21 Apr, 2020 1 commit
-
-
Alexander Christiaan Jacob Dekker authored
Some webshops work with only a billing address because products need to be picked up from a location. If this is the case, the billing address should be filled in, and valid before a payment method can be used. This is already the case with payment methods native to Magento 2, but not with this Adyen module. Because of this, orders could be placed using Adyen payment methods, without adding an address at all. This extra check fixes this. Refs #662. Co-authored-by: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com>
-
- 20 Apr, 2020 2 commits
-
-
Ángel Campos authored
-
Ángel Campos authored
* [PW-2199]: New can_cancel config value that avoids all order cancellations * [PW-2199]: Removed can_cancel check from files not related to notification processing * [PW-2199]: Renamed config value for clarity * [PW-2199]: Fixing adyenHelper object * [PW-2199]: Checking config value before changing order status to NEW * Newline at the end of Config.php * [PW-2199]: Removing dependency on AbstractHelper
-
- 10 Apr, 2020 1 commit
-
-
cyattilakiss authored
For PWA integrations session is not necessarily accessible OrderId is in the response from the payment-information endpoint, send it back for all threeDS2 api calls
-
- 09 Apr, 2020 1 commit
-
-
Alessio Zampatti authored
-
- 01 Apr, 2020 3 commits
-
-
cyattilakiss authored
-
Ángel Campos authored
* [PW-2174]: Removing sync order cancellation for 3DS failure response * [PW-2174]: Removing sync order cancellation for 3DS failure response * [PW-2174]: Removing sync order cancellation for 3DS2 failure response * [PW-2174]: Restoring 3DS2 cancellation because it isn't redirect * [PW-2174]: Adding comment to clarify non cancellation Co-authored-by: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com>
-
attilak authored
-
- 31 Mar, 2020 3 commits
-
-
cyattilakiss authored
Release 6.0.0
-
attilak authored
Log these errors in the validators
-
attilak authored
-
- 26 Mar, 2020 3 commits
-
-
cyattilakiss authored
Co-Authored-By: Alessio Zampatti <alessio.zampatti@adyen.com>
-
attilak authored
-
cyattilakiss authored
-
- 20 Mar, 2020 1 commit
-
-
cyattilakiss authored
-
- 16 Mar, 2020 1 commit
-
-
Ángel Campos authored
* This ensures that recurring-related fields get set for ApplePay
-
- 13 Mar, 2020 1 commit
-
-
Marcos Garcia authored
As requested by merchants, this commit adds support to combo cards (cards that act both as credit and debit, by choice of the shopper) to the checkout process. If shipping address is in Mexico and currency is set to Mexican Pesos, the drop down to choose between options should show up. I created the object to check this so extensibility is possible, but another solution should be used if this gets too long.
-
- 08 Mar, 2020 1 commit
-
-
attilak authored
-
- 06 Mar, 2020 1 commit
-
-
Alexandros Moraitis authored
* Fix klarna discount line and logo * add minus to int
-
- 05 Mar, 2020 2 commits
-
-
Ángel Campos authored
With this change we keep compatibility with Magento version 2.2.8
-
Ángel Campos authored
-
- 02 Mar, 2020 1 commit
-
-
Ángel Campos authored
* [PW-2033]: Adjusting Boleto and Multibanco response handling for PHP API Lib 6.0.0 * Update Block/Checkout/Success.php Co-Authored-By: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com> * Update Block/Checkout/Success.php Co-Authored-By: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com> * Update composer.json Co-Authored-By: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com> * [PW-2033]: Added !empty check on action and pspReference and assigned both variables * [PW-2033]: Adjusting Multibanco additional data Co-authored-by: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com>
-
- 28 Feb, 2020 3 commits
-
-
cyattilakiss authored
* Fix 3DS2 challenge popup styling * Add modal new config to one click as well
-
acampos1916 authored
-
cyattilakiss authored
* Remove PaymentInformationManagement plugins Delete GuestPaymentInformationManagement.php and PaymentInformationManagement.php Remove these from the interceptors list in di.xml * Add new API endpoint to retrieve order payment status * Only load 'return_path' config data if it's required. (#638) * Only load 'return_path' config data if it's required. It doesn't make sense to retrieve the configuration for failure on each request. It's enough to only do it on failure. * Update Controller/Process/Result.php Co-Authored-By: cyattilakiss <42297201+cyattilakiss@users.noreply.github.com> * Add AdyenOrderPaymentStatus class to retrieve order payment status Add getOrderPaymentStatus() to handle threeDS2 extra steps but nothing more Later this function can be used for more extensive PWA implementation * Add getOrderPaymentStatus() to consume the /payment-status API endpoint Use the new method in the placeOrder() function in the adyen-cc-method.js * Remove excess comma Co-Authored-By: Alessio Zampatti <alessio.zampatti@adyen.com> * [PW-2022] changes to get it working (#650) * Update return value to a more specific one * Remove unused variables * Improve code readability * Improve code readability * Improve code readability * Work in progress changes * removed throw exception as we are not doing anything on the front-end. Fix front-end to work with code changes as well include oneclick into the solution as this was now broken with all the changes. * remove let as this is not supported in older browsers * remove debugger statements Co-authored-by: Fabian Hurnaus <fahu@outlook.com> Co-authored-by: Rik ter Beek <rikterbeek@users.noreply.github.com> Co-authored-by: Marcos Garcia <marcos.asgarcia@gmail.com> Co-authored-by: Alessio Zampatti <gigendh@gmail.com>
-
- 27 Feb, 2020 1 commit
-
-
Alexandros Moraitis authored
* Pass the correct store id from order for the modification requests refund, capture and cancel * Pass the storeId from the transferObject using clientConfig * Remove unused logger * Format the code * Refactor, remove unused code for the related classes * Remove underscores
-
- 21 Feb, 2020 1 commit
-
-
Alexandros Moraitis authored
* Hide Apple Pay in unsupported browsers * Put the ko annotation isApplePayAllowed first
-