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
We began experiencing an issue with order exports failing due to an implicit cast conversion deprecation being thrown. Upon investigation it was revealed that freight_class has an incorrect data type defined:
Uh oh!
There was an error while loading. Please reload this page.
We began experiencing an issue with order exports failing due to an implicit cast conversion deprecation being thrown. Upon investigation it was revealed that
freight_class
has an incorrect data type defined:module-shipper/src/Setup/Patch/Data/InstallFreightAttributes.php
Lines 77 to 78 in 321086b
It should be
decimal
notint
as there are numerous freight classes (e.g., 77.5) that cannot be treated as integers.Edit:
string
might be a better option if a numeric primitive is not really needed.We have patched our environments in the interim until this issue is fixed in upstream.
The text was updated successfully, but these errors were encountered: