我正在考虑自定义 Magento 报告。我了解默认产品订单报告从汇总数据表中获取产品销售数据。但是,这些仅包含捆绑中简单产品类型的信息,而不是捆绑产品 ID 本身。
如何为捆绑产品销售生成一份报告?
非常感谢。
看看http://magentocoder.jigneshpatel.co.in/create-custom-reports-in-magento-admin/
你应该可以通过改变这行代码来完成你想要的
$compositeTypeIds = Array (
'0' => 'grouped',
'1' => 'simple',
'2' => 'bundle'
);
$productTypes = $this->getConnection()->quoteInto(' AND (e.type_id NOT IN (?))', $compositeTypeIds);
到
$compositeTypeIds = Array (
'2' => 'bundle'
);
$productTypes = $this->getConnection()->quoteInto(' AND (e.type_id IN (?))', $compositeTypeIds);