-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Incomplete shipping carrier creates exception in shipping tracking pop-up #39549
Comments
Hi @andirosu. Thank you for your report.
Join Magento Community Engineering Slack and ask your questions in #github channel. |
Hi @engcom-Bravo. Thank you for working on this issue.
|
Hi @andirosu, Thanks for your reporting and collaboration. SamedayCourier that doesn't come along with latest / default Magento installation. Code of this package is not part of https://github.com/magento/magento2 git repository. We are not able to provide fix for it in this repository. All questions, issue reports and fix for them should be addressed to the corresponding extension owners(support) or the Magento Market place page Thank you. |
Preconditions and environment
On Magento 2.4.7-p3, you can create a shipping carrier model that says it has tracking, but the getTrackingInfo() call is not enforced for implementation.
Steps to reproduce
Expected result
Pop-up opens with some tracking info.
Actual result
The pop-up opens with this message:
"An error has happened during application run. See exception log for details."
Additional information
In the exception log, the
Call to undefined method Magento\\Framework\\Phrase::getTracking()
message is added.In the [details.phtml]
file (
magento2/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml
Line 21 in 971142b
The template's block returns a Phrase object if the carrier doesn't have tracking info, causing the wrong call:
$trackingInfo = $carrierInstance->getTrackingInfo($this->getNumber()); if (!$trackingInfo) { return __('No detail for number "%1"', $this->getNumber()); }
This can be caused because the CarrierInterface doesn't force carriers to implement the
getTrackingInfo
method and therefore, carriers can be created withpublic function isTrackingAvailable() { return true; }
but no getTrackingInfo function defined.
Release note
No response
Triage and priority
The text was updated successfully, but these errors were encountered: