sebastian-mollie / SyliusMolliePlugin-DO-NOT-USE-

OLD Sylius Mollie payment gateway integration. Please use the newest version. I will be closing this repo by the end of the year.
https://github.com/mollie/Sylius/releases/tag/v5.0.0
MIT License
1 stars 4 forks source link

Orders before version 4 cannot be refunded #297

Open michaelKaefer opened 1 year ago

michaelKaefer commented 1 year ago

Another BC break in version 4 is:

src/Action/RefundAction.php

        if (!array_key_exists('refund', $details['metadata'])) {
            return;
        }

And the same in src/Action/RefundAction.php

        if (!array_key_exists('refund', $details['metadata'])) {
            return;
        }

This means that all orders before the update cannot be refunded. Or do I miss something?