我使用magento中的模块创建了自定义网格。
当我选择选择所有下的选项为是或否时,点击搜索(类似于产品网格)。我收到以下错误。
Column not found: 1054 Unknown column 'entity_id' in
'where clause'"; \lib\Varien\Db\Statement\Pdo\Mysql.php(110): Zend_Db_Statement_Pdo->_execute(Array)
我在附上截图时显示了这个?
Grid.php
protected function _prepareCollection()
{
$collection = Mage::getModel('mymodule/look')->getCollection();
$this->setCollection($collection);
return parent::_prepareCollection();
}
我应该在Grid.php中修复此问题?