An event is triggered to allow PowerSync product to customize 'Sales Order Status' form in Magento.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_billing_process', array('orderIds' => $_order_ids, 'message' => $_message, 'type' => $_type, 'object_type' => $_object_type, 'isQueue' => $_is_queue, 'queueIds' => $_queue_ids));
How to use this event:
Several steps are involved into utilizing this event:
- config.xml
- a listener should be added for this event
- a listener should point to a Magento Observer module and a method in that observer
- Magento Observer
- holds a method where you can add your custom logic
Example Config
<?xml version="1.0"?> <config> <global> <events> <tnw_salesforce_billing_process> <observers> <tnw_salesforce_billing_process> <class>tnw_salesforce/observer</class> <method>billingProcess</method> </tnw_salesforce_billing_process> </observers> </tnw_salesforce_billing_process> </events> </global> </config>
Example Observer
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer { public function billingProcess(Varien_Event_Observer $observer) { /** * Array of order IDs * @var array $_order_ids */ $_order_ids = $observer->getData('orderIds'); /** * Sting (success message to display) * @var string $_message */ $_message = $observer->getData('message'); /** * ENUM('salesforce','bulk') * @var string $_message */ $_type = $observer->getData('type'); /** * The value is used only for abandoned card. It should contains following value: "abandoned". * @var string $_object_type */ $_object_type = $observer->getData('object_type'); /** * The value is used only for queue synchronization mode detection. * @var bool $_is_queue */ $_is_queue = $observer->getData('isQueue'); /** * The value contains Queue IDs if queue synchronization mode is used. * @var array $_queue_ids */ $_queue_ids = $observer->getData('queueIds'); // Your custom code } }
Related articles
Filter by label
There are no items with the selected labels at this time.