通过Magento的邮政编码找到客户

时间:2014-11-26 14:26:41

标签: magento filter

如何查找具有特定邮政编码的客户列表?

我尝试使用Mage::getResourceModel('customer/address_collection'),但这只允许我过滤id。

1 个答案:

答案 0 :(得分:1)

我相信类似的东西应该有用 - 虽然没有测试它:

$collection = Mage::getResourceModel('customer/address_collection');
$collection->addAttributeToFilter('postcode','11-111');
$collection->joinTable(
    array( 'customer'=>'customer/entity' ),
    'entity_id = parent_id',
    array('*')
);