-3
我想根據電話號碼和狀態編輯magento自定義表格 搜索,我不確定如何在magento模型體系結構中執行此操作。 請幫幫我。我發現一些帶有加載ID的更新查詢,但我想要 使用客戶電話號碼加載數據,然後進行數據更新。如何根據電話號碼獲取有關magento模型的數據?
$phone="12345678";
$collection = Mage::getModel('customer/customer')->getCollection()
->addFieldToFilter('phone', $phone);
//return $collection->getFirstItem();
$id = $collection->getFirstItem();
$u_id = $id["entity_id"];
請上傳您使用的是一些代碼。 – Muk
http://magento.stackexchange.com/questions/4683/magento-custom-non-eav-model-load-by-multiple-fields – Naveenbos