getTotalPaid is always 9

Created on 1 July 2020, almost 5 years ago
Updated 4 September 2024, 7 months ago

When order is payed with commerce_mollie the $order->getTotalPaid() returns 0

🐛 Bug report
Status

Postponed: needs info

Version

1.0

Component

Code

Created by

🇧🇪Belgium michiellucas

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇧🇪Belgium weseze

    I have the same issue...
    Payments are marked as completed and paid, but the total amount remains open.
    The order log shows that the payment info was received correctly.

    Some quick debugging showed that the payment update from Mollie webhook is received in the "onNotify" function. The status is correct and this piece of code is executed:

        switch ($mollie_payment_remote_object->status) {
          case MolliePaymentStatus::STATUS_PAID:
            // Capture payment.
            $payment_transition = $payment->getState()->getWorkflow()->getTransition('authorize_capture');
            $payment->getState()->applyTransition($payment_transition);
            $payment->setRemoteState($mollie_payment_remote_object->status);
            $payment->save();
            break;
    

    This correctly registers the payment as paid, but does not register the amount paid.
    Looking through the commerce documentation: it states that it will only update the amount if the state changes to "completed", so this should work?

    Do you need more info, I'm a bit lost in debugging this...

Production build 0.71.5 2024