Magento 2:出口产品包含目录价格规则

Magento 2: export products contains catalog price rules

有没有一种方法可以导出包含目录价格规则的产品列表?

默认导出时,csv 包含唯一的标准价格,而不是“市场营销”>“目录价格规则”中定义的规则的价格

提前致谢

如果它对其他人有用,我已经通过这个查询解决了:

SELECT 
      DISTINCT cp.product_id, cpev.value, cpip.price, cpip.min_price, cpe.sku
FROM `m2_catalogrule_product` as cp 
INNER JOIN m2_catalog_product_entity_varchar as cpev 
      ON cp.product_id = cpev.entity_id
INNER JOIN m2_catalog_product_index_price as cpip 
      ON cpip.entity_id = cp.product_id
INNER JOIN m2_catalog_product_entity as cpe 
      ON cpe.entity_id = cp.product_id
GROUP BY cp.product_id