不显示在顾客视图中的购物车项目

时间:2012-08-24 08:47:16

标签: php cart magento magento-1.7

运行Magento 1.7.2。

在管理员的客户视图中,它显示客户购物车中的1个项目,但不显示详细信息。我附了一个屏幕截图。有谁知道这个问题是什么,或者你能证实它是否正常工作所以我知道这是我的安装吗?

感谢。

View Screenshot Here

enter image description here

2 个答案:

答案 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)

相关问题