Magento 관리 모듈에서 그리드에 대한 사용자 지정 컬렉션을 작성하려고합니다. "addAttributeHaving"이라는 새로운 컬렉션 메소드를 만들었습니다.
public function addAttributeHaving($value)
{
$this->getSelect()->having($value);
return $this;
}
소장 코드 참조 :
$collection->addFieldToSelect(
array(
'entity_id',
'created_at',
'increment_id',
'customer_email',
'customer_firstname',
'customer_lastname',
'grand_total',
'status'
)
);
$collection->getSelect()->joinLeft(array('sfop' => 'sales_flat_order_payment'), 'main_table.entity_id = sfop.parent_id', 'sfop.amount_authorized');
$collection->getSelect()->columns('sum(sfop.amount_authorized) AS AUTHD');
$collection->getSelect()->columns('grand_total - sum(sfop.amount_authorized) AS DIF_AU');
$collection->addFieldToFilter('main_table.state', array('in' => array('new','payment_review')));
$collection->addFieldToFilter('main_table.sd_order_type', array('neq' => 7));
$collection->addFieldToFilter('sfop.method', array('neq' => 'giftcard'));
$collection->addFieldToFilter('main_table.created_at', array('gt' => $this->getFilterDate()));
$collection->getSelect()->group(array('main_table.entity_id'));
$collection->addAttributeHaving('DIF_AU <> 0');
$collection->load(true,true);
$this->setCollection($collection);
이렇게하면 완벽하게 잘 실행되는 다음 SQL이 생성되고 Magento 외부에서 실행될 때 예상되는 결과가 생성됩니다.
[METHOD=Varien_Data_Collection_Db->printLogQuery] SELECT `main_table`.`entity_id`, `main_table`.`entity_id`, `main_table`.`created_at`, `main_table`.`increment_id`, `main_table`.`customer_email`, `main_table`.`customer_firstname`, `main_table`.`customer_lastname`, `main_table`.`grand_total`, `main_table`.`status`, `sfop`.`amount_authorized`, sum(sfop.amount_authorized) AS `AUTHD`, grand_total - sum(sfop.amount_authorized) AS `DIF_AU` FROM `sales_flat_order` AS `main_table` LEFT JOIN `sales_flat_order_payment` AS `sfop` ON main_table.entity_id = sfop.parent_id WHERE (main_table.state in ('new', 'payment_review')) AND (main_table.sd_order_type != 7) AND (sfop.method != 'giftcard') AND (main_table.created_at > '2013-04-07') GROUP BY `main_table`.`entity_id` HAVING (DIF_AU <> 0)
그러나 Magento 내부에 그리드를로드하려고하면 다음 오류가 발생합니다.
SQLSTATE [42S22] : 열을 찾을 수 없습니다 : 1054 'having clause'의 알 수없는 열 'DIF_AU'
또한 having 절을 제거하면 (결과가 깨짐) Grid의 데이터 소스에 DIF_AU 열을 사용할 수 있습니다.
sd_order_type
어디에서 왔습니까?