运行Magento 1.7.2。
在管理员的客户视图中,它显示客户购物车中的1个项目,但不显示详细信息。我附了一个屏幕截图。有谁知道这个问题是什么,或者你能证实它是否正常工作所以我知道这是我的安装吗?
感谢。
答案 0 :(得分:3)
[解决]
在app \ code \ core \ Mage \ Adminhtml \ controllers \ CustomerController.php
上1.7.0
public function viewCartAction()
{
$this->_initCustomer();
$layout = $this->loadLayout()
->getLayout()
->getBlock('admin.customer.view.cart')
->setWebsiteId();
$this->renderLayout();
}
更改为:
public function viewCartAction()
{
$this->_initCustomer();
$layout = $this->loadLayout()
->getLayout()
->getBlock('admin.customer.view.cart')
->setWebsiteId($this->getRequest()->getParam('website_id'))
->toHtml();
$this->renderLayout();
}
答案 1 :(得分:2)