このスニペット
Mage::getModel('directory/region')->load(279);
いくつか、古い、バージョンで動作しません。 例えば、Magentoの1.5は、ファイル:、その後、
//$region = Mage::getModel('directory/region')->load(279); //does not work!!!!
//$tmp_region= $region->getCode() ;
と: アプリ/コード/コア/メイジ/ Adminhtml /ブロック/ウィジェット/ Grid.php、ライン1026年、あなたはこのコメントを見ることができます正しいコード(このバージョン用):
$sql="select * from directory_country_region where region_id=".(int)$myOrder->getShippingAddress()->getRegionid();
$tmp_region = $readConnection->fetchAll($sql);
$tmp_region=$tmp_region?$tmp_region[0]["default_name"]." (".$tmp_region[0]["code"] .")":"";
ありがとうございました!働いた.. –