Magento - получить название зарегистрированного клиента - PullRequest
0 голосов
/ 23 декабря 2010

Я использую этот код:

$customerCollection = Mage::getResourceModel('customer/customer_collection')
->addNameToSelect()
->addAttributeToSelect('email')
->joinAttribute('postcode', 'customer_address/company', 'default_billing', null, 'left')
->joinAttribute('postcode', 'customer_address/postcode', 'default_billing', null, 'left')          
->joinAttribute('billing_city', 'customer_address/city', 'default_billing', null, 'left')
->joinAttribute('billing_region', 'customer_address/region', 'default_billing', null, 'left')
->joinAttribute('billing_country_id', 'customer_address/country_id', 'default_billing', null, 'left');

Как мне также получить название компании зарегистрированного клиента ??

Спасибо.

1 Ответ

2 голосов
/ 23 декабря 2010

проверить, действительно ли имя атрибута "компания"

joinAttribute('company', 'customer_address/company', 'default_billing', null, 'left')
...