Magento2 Product Price Tables

  1. Product Tables ● catalog_product_entity_decimal
产品价格表

catalog_product_entity_decimal 表字段说明如下:

  1. value_id:主键自增
  2. attribute_id: 产品属性表
  3. store_id: 店铺id
  4. entity_id: 产品id
  5. value: 价格

价格的字段属性值存在: eav_attribute 属性表

2. Product Tables ● catalogrule_product_price 表字段说明如下:

  1. rule_product_price_id:
  2. rule_date:
  3. customer_group_id:
  4. rule_price;
  5. website_id:
  6. lastest_start_date:
  7. earliest_end_date:

该表存放 Catalog Price Rule (目录价格规则)里面的产品打折后的价格。

总结:产品最后显示价格为:

  1. 只有一种原始价格,则显示原始价格
  2. 不仅存在原始价格,还存在特价,显示原价和特价,以特价为准
  3. 不仅存在原始价格,存在特价,还存在目录价格规则的价格,谁的价格低为准,显示原价和最低价。