मैं 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 अज्ञात कॉलम 'DIF_AU' में 'क्लॉज' होना
इसके अतिरिक्त, यदि मैं होने वाले क्लॉज (जो मेरे परिणाम तोड़ता है) को हटा देता हूं, तो मैं ग्रिड में एक डेटा स्रोत के लिए DIF_AU कॉलम का उपयोग करने में सक्षम हूं।
sd_order_type
आ रहा है?