我在 magento 商店根文件夹(1.4)之外工作,我想获得客户的订单总额和最后订单的日期。我从这个开始:
$customer = Mage::getModel('customer/customer')->load($entity_id);
$customerTotals =Mage::getResourceModel('sales/sale_collection')
->setCustomerFilter($customer)
->load()
->getTotals();
echo $customerTotals->getNumOrders();
echo money_format('$%i',$customerTotals->getLifetime());
这似乎给了我来自错误客户的总数......而且,不能完全弄清楚如何在最后一个订单日获得客户。
任何帮助,将不胜感激。