如何在客户帐户我的订单中获取所有订单

时间:2018-02-06 03:44:48

标签: php ajax magento magento2

我想在客户帐户“我的订单”部分添加订单搜索功能。好像客户有很多订单,所以他们不需要导航而不是他们可以通过这样的订单搜索 -

http://demo.dckap.com/m2/sales/order/history/

我试图在Magento_Sales/templates/order/history.phtml页面中获取客户会话,但它无效。

我们有什么方法可以将输入搜索框值传递给订单对象吗?

或加载客户订单集合?

2 个答案:

答案 0 :(得分:0)

你需要覆盖几个文件。你可以试试下面的代码,它应该工作。 对于视图访问权限,请覆盖canView()

中定义的Magento\Sales\Controller\AbstractController\OrderViewAuthorization.php函数
//overide getOrders() method in history.php block file as below
// to get customer id from customer session
if (!($customerId = $this->_customerSession->getCustomerId())) {
            return false;
        }

// to load orders for customer
 $this->orders = $this->_orderCollectionFactory->create()->addFieldToFilter('customer_id', array('eq' => $customerId));

//to add filter for search
if (!empty(<yoursearchterm>)) {
                $this->orders->addFieldToFilter(
                        'entity_id', ['like' => '%' . <yoursearchterm> . '%']
                );
            }

最后添加以下行

return $this->orders;

接下来,您需要覆盖history.phtml并在表单中添加搜索框。你可以设置如下的行动

 action="<?php echo $block->getUrl('sales/order/history'); ?>"

希望这会有所帮助!!

答案 1 :(得分:0)

这是我加载登录客户订单集合的解决方案 -

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$resource = $objectManager->get('Magento\Framework\App\ResourceConnection');
$connection = $resource->getConnection();
$customerSession = $objectManager->create('Magento\Customer\Model\Session');
if ($customerSession->isLoggedIn()) {
    $customer_id = $customerSession->getCustomer()->getId();
    $order_collection = $objectManager->create('Magento\Sales\Model\Order')->getCollection()->addAttributeToFilter('customer_id', $customer_id)->addAttributeToFilter('increment_id', array('eq' => $orderId));
}

然后我用订单集$order_collection替换订单集合,从文本框中获取所需的搜索订单值。