You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Orders aren't added to the sales_order table, because of the following error:
Return value of Magmodules\Channable\Service\Order\Shipping\CalculatePrice::execute() must be of the type float, string returned in /vendor/magmodules/magento2-channable/Service/Order/Shipping/CalculatePrice.php:67
Proposed solution:
Change line 67 from return $shippingPriceCal; to return (float) $shippingPriceCal;
The text was updated successfully, but these errors were encountered:
Thank you for opening this issue, we are happy to share that we've just released the new v1.6.2 version where we covered this issue. Thank you for the detailed issue report.
We are closing this issue now but please feel free to reopen the issue if this still occurs.
Orders aren't added to the
sales_order
table, because of the following error:Proposed solution:
Change line 67 from
return $shippingPriceCal;
toreturn (float) $shippingPriceCal;
The text was updated successfully, but these errors were encountered: