废弃购物车报告位于 Magento 的哪里?
我想看看废弃的购物车报告是如何生成的(它使用的模型)。
我希望添加分离客户名字和姓氏的功能,因为我们想用它来将信息从 Magento 导入到我们的电子邮件列表管理程序中。
有谁知道这个报告是从哪里生成的或者它使用什么对象?
I would like to see how the abandoned shopping cart report is being generated from (what models it is using).
I am hoping to add the ability to split out the customers first and last names since we want to use this to import the information from Magento into our email list management program.
Does anyone know where this report is generated from or what object it uses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现网格是在以下位置生成的:
/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php
从那里我能够找到用于废弃购物车的模型是:
我能够通过向 Grid.php 文件添加两列来完成我的最终目标。我通过执行以下操作来做到这一点:
I found the grid was being generated in the following location:
/app/code/core/Mage/Adminhtml/Block/Report/Shopcart/Abandoned/Grid.php
From there I was able to find the model being used for the abandoned shopping carts was:
I was able to get my end goal done by adding two column to the Grid.php file. I did that by doing the following: