magento 中使用 sql 查询的订单详细信息?

发布于 2024-10-15 06:59:55 字数 140 浏览 1 评论 0原文

你好,我在 magento 中创建了一个自定义模块。现在我需要根据用户要求获取订单数据。例如,当用户输入开始日期和结束日期时,只会显示这些订单 ID。 所以我想在 magento 中运行一个查询,它给我唯一的订单 ID。任何人对此有任何想法吗?或者请为此提供一些建议

hi i have created a custom module in magento. now i need to fetch the order data with user requirement.such as when user enter the from and end date the only those order id will appear.
so i want to run a query in magento which gives me the only those order id. can any one have any idea about this. or please give some suggestion for this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在巴黎塔顶看东京樱花 2024-10-22 06:59:55

这很简单...

// 1. Create order collection object
$collection = Mage::getModel('sales/order')->getCollection();
// 2. Apply your date filter
$collection->addFieldToFilter(
     'created_at', 
     array('from' => '2010-01-01', 'to' => '2010-01-01')
);
// 3. Iterate it for displaying results
foreach ($collection as $order) {
    //...
}

It is very simple...

// 1. Create order collection object
$collection = Mage::getModel('sales/order')->getCollection();
// 2. Apply your date filter
$collection->addFieldToFilter(
     'created_at', 
     array('from' => '2010-01-01', 'to' => '2010-01-01')
);
// 3. Iterate it for displaying results
foreach ($collection as $order) {
    //...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文