Shashi Dhar Kumar

Shashi Dhar Kumar's Technical Blog - By Shashi Dhar Kumar

Let us help to connect you with new and innovative world of
online presence!

  • Rated2.2/ 5
  • Updated 3 Years Ago

Get last order of an customer magento - Shashi Dhar Kumar

Updated 8 Years Ago

Get Last Order Of An Customer Magento - Shashi Dhar Kumar
Here is the example code by which you can get last order details into mangento of using email id. $_customer = Mage::getModel('customer/customer'); $_customer->loadByEmail('demo@demo.com'); $orders = Mage::getResourceModel('sales/order_collection') ->addFieldToSelect('*') ->addFieldToFilter('customer_id', $_customer->getId()) ->addAttributeToSort('created_at', 'DESC') ->setPageSize(1); ID echo $orders->getFirstItem()->getId(); Shashi Dhar KumarShashi Dhar Kumar...
Read More