浏览文章

文章信息

Magento2 记一次购物车获取不到物流问题【其实问题很简单】estimate-shipping-methods return empty 13622

有时候小问题往往更难排查

1、原因

可配置产品的子产品居然是虚拟virtual产品,导致没法匹配物流。


2、解决

方式一:

后台一个一个为产品设置重量。

方式二:

# 获取重量属性的id
select * from eav_attribute where attribute_code='weight'; 
# 获取产品设置这个属性的值
select * from catalog_product_entity_decimal where attribute_id=82
# 根据条件设置产品的重量(注意:这个sql是全部设置同样的重量,需要特殊修改,自行添加条件)
update catalog_product_entity_decimal set value='0.1' where attribute_id=82


原创