gpt4 book ai didi

Magento - 为客户选择邮政编码和地址

转载 作者:行者123 更新时间:2023-12-01 11:06:59 25 4
gpt4 key购买 nike

如何在前端模块中检索一个或多个客户的地址和邮政编码?

谢谢。

最佳答案

使用以下代码:- (由 @clockworkgeek 编辑了一些不错的代码)

<?php
$primaryAddress = Mage::getSingleton('customer/session')->getCustomer()
->getPrimaryShippingAddress();
  
   $arrCountryList = Mage::getModel('directory/country_api')->items();$countryName = '';foreach($arrCountryList as $_eachCountryList) {    if ($primaryAddress['country_id'] == $_eachCountryList['country_id']) {        $countryName = $_eachCountryList['name'];        break;    }}
  
$countryName = Mage::getModel('directory/country')
->loadByCode($primaryAddress->getCountryId())
->getName();

echo '<br/>Street Address: '.$primaryAddress->getStreet();
echo '<br/>City: '.$primaryAddress->getCity();
echo '<br/>State/Region: '.$primaryAddress->getRegion();
echo '<br/>Country Code: '.$primaryAddress->getCountryId();
echo '<br/>Country Name: '.$countryName;
echo '<br/>Zip Code: '.$primaryAddress->getPostcode();
?>

我不太确定区域/州值。但我想你可以从这里开始。

希望对您有所帮助。

关于Magento - 为客户选择邮政编码和地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4488543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com