我想从Magento的刚刚完成的订单中获取运费/帐单地址.
我已经尝试了以下代码,但它没有工作:
Mage::getModel(‘sales/order’)->load($array_data[“order_id”])->getShippingAddressId()
有人有什么想法吗?
以下可能有助于寻找类似解决方案的人:
@H_403_13@// Get the id of the last order for the current user(session)
$orderId = Mage::getSingleton('checkout/session')->getLastOrderId();
// If an order actually exists
if ($orderId) {
//Get the order details based on the order id ($orderId)
$order = Mage::getModel('sales/order')->load($orderId);
// Get the id of the orders shipping address
$shippingId = $order->getShippingAddress()->getId();
// Get shipping address data using the id
$address = Mage::getModel('sales/order_address')->load($shippingId);
// Display the shipping address data array on screen
var_dump($address);
}
祝你好运.