我在收集加入工作时遇到问题。我正在尝试将订单 ID 连接到客户电话号码,并保存在sales_flat_order_address
. sales/order
因此,使用包含我的电话号码的变量加入集合并进行过滤。我已经尝试了各种组合,但到目前为止我只收到错误,现在我已经删除了我的代码并将从头开始尝试。关于此的任何想法或教程链接?
问问题
1264 次
1 回答
0
下面的小代码片段
$customer = Mage::getModel('customer/customer')->getCollection()
->addAttributeToFilter('attribute_code', value)->load();
//Here your attribute code is phone
$orderCollection = Mage::getModel(’sales/order’)->getCollection();
$orderCollection->getSelect()->where(’e.customer_id =’.$customer->getId());
:)
于 2013-04-22T10:01:28.147 回答