我正在为商店开发一种新的付款方式,但我被困在可以退款的方法中。在此功能中,我需要找到一种方法来获取发票的订单 ID 以进行退款。我应该如何进行?
class Company_Module_Model_Standard extends Mage_Payment_Model_Method_Abstract
{
(...)
public function canRefund() // we need a way to get the orderId
{
$client = $this->_getCLient();
$client->loadOrder($orderId); // <------ here I would need the order id or increment id
$ret = $client->canRefund();
return $ret;
}
(...)
}
我希望你能帮助我。