I am creating an Open Source extension for Magento. This is in the very early stages. I am struggling with the problem of canceling orders. I found some solution here.
Magento - How can I run the code when my order is canceled or returned .
But whenever I cancel an order, it does not call either a void (in the case of payment authorization only) or a refund (in the case of a payment using authorization).
When I use capture-return, he says that the order cannot be reversed.
When I use authorize-void, it says the order is canceled. But the Void () function was not called at all. I saved some functions of Mage :: Log () inside. Which do not appear in the log file.
I do not understand what is wrong.
Here is the code. This is a payment method model.
<?php
class Package_Cashondelivery_Model_Createorder extends Mage_Payment_Model_Method_Abstract
{
protected $_code = 'cashondelivery';
protected $_canCapture = true;
protected $_canUseCheckout = true;
protected $_canFetchTransactionInfo = true;
protected $_isGateway = true;
protected $_canUseInternal = true;
protected $_canVoid = true;
protected $_canRefund = true;
public function validate()
{
$paymentInfo = $this->getInfoInstance();
if ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {
$postCode = $paymentInfo->getOrder()->getBillingAddress()->getPostcode();
}
else {
$postCode = $paymentInfo->getQuote()->getBillingAddress()->getPostcode();
}
$res=Api->validatePostCode($postCode);
$r = $res=='false'? FALSE : TRUE;
if (!$r) {
Mage::throwException($this->_getHelper()->__('Sorry ! Service is not available in your area'));
}
return $this;
}
public function authorize(Varien_Object $payment, $amount)
{
-------------------------------
-------------------------------
-------------------------------
$transactionId = Api->someCall();
$payment->setTransactionId();
-------------------------------
-------------------------------
-------------------------------
-------------------------------
-------------------------------
-------------------------------
return $this;
}
public function void(Varien_Object $payment)
{
if (!$this->canVoid($payment)) {
Mage::throwException($this->_getHelper()->__('Void action is not available.'));
}
-------------------------------
-------------------------------
-------------------------------
-------------------------------
Mage::Log('Starting Void here....');
$transactionId = $Payment->getTransactionId();
Api->cancelOrder($transactionId);
return $this;
-------------------------------
-------------------------------
-------------------------------
}
}
?>
.
<?xml version="1.0"?>
<config>
<modules>
<Package_Cashondelivery>
<version>0.1.0</version>
</Package_Cashondelivery>
</modules>
<global>
<models>
<cashondelivery>
<class>Package_Cashondelivery_Model</class>
</cashondelivery>
</models>
<helpers>
<cashondelivery>
<class>Package_Cashondelivery_Helper</class>
</cashondelivery>
</helpers>
<resources>
<cashondelivery_setup>
<setup>
<module>Package_Cashondelivery</module>
</setup>
<connection>
<use>core_setup</use>
</connection>
</cashondelivery_setup>
<cashondelivery_write>
<connection>
<use>core_write</use>
</connection>
</cashondelivery_write>
<cashondelivery_read>
<connection>
<use>core_read</use>
</connection>
</cashondelivery_read>
</resources>
</global>
<default>
<payment>
<cashondelivery>
<active>1</active>
<model>cashondelivery/createorder</model>
<order_status>Processing</order_status>
<payment_action>authorize</payment_action>
<title>Cash On Delivery</title>
<example_uri>services.example.com</example_uri>
</cashondelivery>
</payment>
</default>
</config>
- , .