-- HikaShop version -- : 2.3.2
-- Joomla version -- : 2.5.24
I am attempting to convert an SAP OCI plugin that was developed for Virtuemart to work with Hikashop. It is a system plugin that is triggered by the onAfterDispatch event in the landing page after payment and sends the order details to the client SAP system.
function onAfterDispatch()
{
$this->khInitalize();
if(!$this->okToSend)
{
return;
}
$this->createForm();
return;
}
All payments are offline so basically this needs to be triggered by the finish button on the cart so probably should be a payment plugin in its own right. This is a new area for me so any suggestions would be welcome.