如何在magento中按名称加载客户组?我试过这个:
$targetGroup = Mage::getModel('customer/group')->load($groupName, 'name');
但它抛出了一个sql异常,即customer_group.name列不存在。
答案 0 :(得分:11)
$targetGroup = Mage::getModel('customer/group');
$targetGroup->load($groupName, 'customer_group_code');
参考。 customer_group
表。