我使用贝宝作为网关,我想我会编辑 IPN 侦听器并根据贝宝结果从那里更新客户组。
是否有更“Magento”的方式来做到这一点,比如覆盖方法,如果有,我会在哪里做?
我使用贝宝作为网关,我想我会编辑 IPN 侦听器并根据贝宝结果从那里更新客户组。
是否有更“Magento”的方式来做到这一点,比如覆盖方法,如果有,我会在哪里做?
事件观察者在这里是有意义的。不确定paypal_payment_transaction_save_after
事件是否会在这里起作用;保存成功的 IPN 付款后检查订单将起作用。
对于其他寻找此功能的人,这就是我所做的:
要覆盖我复制的 Magento 1.7.0.2 贝宝例程
/app/code/core/Mage/Paypal/
至
/app/code/local/法师/Paypal/
然后我将以下方法添加到 /app/code/local/Mage/Paypal/Model/Ipn.php
protected function _changeUserGroup($group){
$invoice_id = $this->_request['invoice'];
// get the resource model
$resource = Mage::getSingleton('core/resource');
// retrieve the read connection
$read = $resource->getConnection('core_read');
// get the customer_id for the invoice from the database
$customer_id = (int) $read->fetchOne($read->select()->from('sales_flat_order','customer_id')->where("increment_id='$invoice_id'")->limit(1));
// retrieve the write connection
$write = $resource->getConnection('core_write');
// raw query
$query = "UPDATE customer_entity SET group_id = $group WHERE entity_id = $customer_id";
// execute the query
$write->query($query);
}
然后,您可以在 IPN 过程中的任何位置调用此方法以满足您的目的。我发现http://fishpig.co.uk/blog/direct-sql-queries-magento.html对于数据库调用很有用。