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
In Magento 2.2.4, the Amazon module is now an integrated part of Magento. This causes a conflict with the Helper\CarrierGroup function 'getQuoteShippingAddressFromOrder' because it uses the field 'entity_id' as a filter.
However, the Amazon modules do automatic extension_attributes joins on this table which includes another entity_id column. This causes failures with the joins due to the SQL not specifying the table.
You should be able to avoid this by specifying 'main_table.entity_id' in your filter.
The text was updated successfully, but these errors were encountered:
In Magento 2.2.4, the Amazon module is now an integrated part of Magento. This causes a conflict with the Helper\CarrierGroup function 'getQuoteShippingAddressFromOrder' because it uses the field 'entity_id' as a filter.
However, the Amazon modules do automatic extension_attributes joins on this table which includes another entity_id column. This causes failures with the joins due to the SQL not specifying the table.
You should be able to avoid this by specifying 'main_table.entity_id' in your filter.
The text was updated successfully, but these errors were encountered: