我正在使用AITOC Custom Checkout Extension用于Magento,我正在尝试在脚本中检索自定义属性。
到目前为止我的代码:
$orderItems = Mage::getResourceModel('sales/order_item_collection')
->addAttributeToFilter('created_at', array('from' => $from, 'to' => $to))
->addAttributeToSelect('*')
->load();
// Retrieve customer name
foreach ($orderItems as $order) {
$order_data = Mage::getModel('sales/order')->load($order['order_id']);
echo $order_data->getCustomerName();
}
这很好但我找不到检索自定义结帐属性的方法。
关于如何做到这一点的任何想法?
谢谢!
修改
以下图片来自AITOC文档,介绍如何使用Magento API检索信息。我想在不使用API的情况下做到这一点。