magento订单列表查询
我想选择 Magento 中所有订单的列表。
这是我目前正在处理的另一个 PHP 应用程序中显示来自 magento 的所有订单列表所必需的。
也有人可以使用 Magento 约定为我编写代码,例如 Mage::
我使用 Magento 1.4.2 版本。
谢谢,
标记
I want to select the list of all orders in Magento.
This is required for me to show the list of all the orders from magento in another PHP application presently I'm working on.
Also can some one write me the code using the Magento conventions such as Mage::
Im using Magento 1.4.2 version.
Thanks,
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此代码使用“Magento 方式”并通过模型层访问数据,这使您免受表结构更改(例如,扁平与 EAV)的影响。在 Magento 安装的根目录中创建一个包含此框架代码的新 PHP 文件(如果在其他位置,请更新第一个
require
语句的路径)。这为您提供了一些有关如何向集合添加属性的示例,您应该能够按照这些示例添加更多属性(如果需要)。它向您展示了如何按属性过滤以及按属性排序。还可以显示您需要的字段的示例。
HTH,
京东
This code uses the "Magento way" and accesses the data through the Model layer which insulates you from changes in the table structure (e.g. flat vs EAV). Create a new PHP file containing this skeleton code in the root of your Magento install (if elsewhere update the path for the first
require
statement).This gives you some examples of how to add attributes to the collection, you should be able to follow the examples to add more if required. It shows you how to filter by attributes, and sort by attributes. Examples also for echo'ing out the fields that you need.
HTH,
JD
试试这个:
这是标题级信息。如果您需要行项目信息/更深入的信息,您可以使用类似以下连接的内容:
现在,这将复制(笛卡尔积)所有标题信息以及行项目信息。如果您需要进一步的信息,请告诉我,我是 Magento EAV SQL 的大师:)
Try this:
That's header-level information. If you require line-item information / deeper information, you might use something like the following join:
Now, this is going to duplicate (cartesian product) all of the header information along with the line-item information. If you require something further, let me know, I'm a master at Magento EAV SQL :)
有点晚了,但这可能有用(在 Magento CE 1.7.0.2 中测试)。该代码有大量注释以供指导。
希望对某人有帮助!
A bit late, but this might be useful (tested in Magento CE 1.7.0.2). The code is heavily commented for guidance.
Hope that helps someone!