tnw_salesforce_invoice_send_before
An event is triggered before sending data in Salesforce.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_invoice_send_before', array('data' => $_data));
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_invoice_send_before> <observers> <salesforce_invoice_send_before_observer> <class>tnw_salesforce/observer</class> <method>invoiceSendBefore</method> </salesforce_invoice_send_before_observer> </observers> </tnw_salesforce_invoice_send_before> </events> </global> </config>
Example Observer
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer { public function invoiceSendBefore(Varien_Event_Observer $observer) { /** * Array of Salesforce objects * @var stdClass[] $_data * * Example: * array (size=1) * 103000007 => // Magento order number * object(stdClass)[580] * public 'AcctSeed__Status__c' => string 'In Process' (length=10) * public 'tnw_aseed__Magento_Website__c' => string 'a002400000CSEGD' (length=15) * public 'tnw_aseed__Magento_ID__c' => string '103000007' (length=9) * public 'AcctSeedERP__Sales_Order__c' => string 'a1524000004B2jNAAS' (length=18) * public 'AcctSeed__Customer__c' => string '0012400000Q0YeMAAV' (length=18) * public 'AcctSeed__Billing_Contact__c' => string '0032400000M41eDAAR' (length=18) */ $_data = $observer->getData('data'); // Your custom code } }
Related articles
Filter by label
There are no items with the selected labels at this time.