이에 대한 약간의 맥락. 더 많은 열을 갖도록 판매 주문 내보내기 기능을 그리드를 통해 확장하고 싶습니다. 내보낼 새 그리드를 추가하고 원본을 확장하는 새 컬렉션 모델을 추가하는 모듈을 만들었습니다. 이것은 _beforeLoad () 함수를 사용하므로 필요한 테이블을 조인 할 수 있습니다.
내가 겪고있는 문제는 그리드의 필터가 추가 될 때 (increte_id, order date 등)이 추가되는 where 절이 테이블을 접두사로 사용하지 않아서 모호한 열 이름에 문제가 발생한다는 것입니다. 예를 들어, increment_id에서 where 절에 문제가 있습니다.
SELECT `main_table`.*, `sales`.`total_qty_ordered`, `sales`.`entity_id` AS `order_id`, `sagepay`.`vendor_tx_code` FROM `sales_flat_order_grid` AS `main_table`
LEFT JOIN `sales_flat_order` AS `sales` ON main_table.increment_id = sales.increment_id
LEFT JOIN `sagepaysuite_transaction` AS `sagepay` ON order_id = sagepay.order_id WHERE (increment_id LIKE '%100000261%') GROUP BY `main_table`.`entity_id`
이 where 절은 _addColumnFilterToCollection () 함수의 다른 테이블에 조인하기 전에 추가됩니다.
protected function _addColumnFilterToCollection($column)
{
if ($this->getCollection()) {
$field = ( $column->getFilterIndex() ) ? $column->getFilterIndex() : $column->getIndex();
if ($column->getFilterConditionCallback()) {
call_user_func($column->getFilterConditionCallback(), $this->getCollection(), $column);
} else {
$cond = $column->getFilter()->getCondition();
if ($field && isset($cond)) {
// Filter added at this point
$this->getCollection()->addFieldToFilter($field , $cond);
}
}
}
return $this;
}
간단한 테스트로 줄을 다음과 같이 변경했습니다.
$this->getCollection()->addFieldToFilter('main_table.' . $field , $cond);
이것은 효과가 있었지만 그렇게하는 좋은 방법은 아닙니다.
_beforeLoad ()의 코드는
protected function _beforeLoad()
{
// Join the sales_flat_order table to get order_id and and total_qty_ordered
$this->getSelect()->joinLeft(array('sales' => $this->getTable('sales/order')),
'main_table.increment_id = sales.increment_id',
array('total_qty_ordered' => 'sales.total_qty_ordered',
'order_id' => 'sales.entity_id'));
// Join the SagePay transaction table to get vendor_tx_code
$this->getSelect()->joinLeft(array('sagepay' => $this->getTable('sagepaysuite2/sagepaysuite_transaction')),
'order_id = sagepay.order_id',
array('vendor_tx_code' => 'vendor_tx_code'));
$this->getSelect()->group('main_table.entity_id');
parent::_beforeLoad();
}
내가 볼 수있는 유일한 공통 ID이므로 increment_id를 사용하여 판매 주문 그리드 테이블과 SagePay 트랜잭션 테이블을 조인해야합니다.
기본적으로 나는 이것을 해결하는 가장 좋은 방법이 무엇인지 궁금합니다. 위에서 언급 한 변경 작업을 수행하지 않아도 될 수도 있지만 옳지 않습니다. 조인 선언문에서 변경할 수있는 것이 있습니까?
감사.