如何在magento订单送货地址中获取自定义地址属性值


How to get a custom address attribute value in magento order shipping address?

我有一个自定义的地址属性。在后端,订单页面我需要获得该属性值。

试试这个

$orderId = '100000001';
$order = Mage::getModel('sales/order')->loadByIncrementId($orderId);
$customAttributeValue = $order->getShippingAddress()->getAttributeText('your_custom_attribute');