사용자 주문 이력을 얻으려고 노력 중이며 다음 쿼리와 잘 작동했습니다. 그러나 테이블에서 모든 주문 관련 필드를 반환합니다.
$collection = Mage::getModel("sales/order")->getCollection()
->addAttributeToSelect('*')
->addFieldToFilter('customer_id', 400)
->setOrder('created_at', 'desc');
특정 필드 만 가져 오려고하므로 -> addAttributeToSelect ( '*')
used the following code
->addAttributeToSelect(array('created_at','customer_id','increment_id','updated_at','status','entity_id','state'))
그러나 "필드 이름을 결정할 수 없습니다"라는 오류가 발생 합니다.