tnw_salesforce_opportunity_send_after

An event is triggered after sending data in Salesforce.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_opportunity_send_after', array('data' => $_data, 'result' => $_result));

 

How to use this event:

Several steps are involved into utilizing this event:

  1. config.xml
    1. a listener should be added for this event
    2. a listener should point to a Magento Observer module and a method in that observer
  2. Magento Observer
    1. holds a method where you can add your custom logic
Example Config
<?xml version="1.0"?>
<config>
    <global>
        <events>
            <tnw_salesforce_opportunity_send_after>
                <observers>
                    <tnw_salesforce_opportunity_send_after>
                        <class>tnw_salesforce/observer</class>
                        <method>opportunitySendAfter</method>
                    </tnw_salesforce_opportunity_send_after>
                </observers>
            </tnw_salesforce_opportunity_send_after>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function opportunitySendAfter(Varien_Event_Observer $observer) {
		/**
		 * Array of Salesforce objects
		 * @var stdClass[] $_data
		 * 
		 * Example:
		 * array (size=1)
		 *   682 => 
		 *     object(stdClass)[550]
		 *       public 'StageName' => string 'Committed' (length=9)
		 *       public 'tnw_mage_basic__Magento_Website__c' => string 'a002400000CSEGD' (length=15)
		 *       public 'tnw_mage_basic__Magento_ID__c' => string 'ac_682' (length=6)
		 *       public 'Pricebook2Id' => string '01s24000004r4t6AAA' (length=18)
		 *       public 'CloseDate' => string '2015-12-08T07:13:27+00:00' (length=25)
		 *       public 'AccountId' => string '0012400000Q3GOcAAN' (length=18)
		 *       public 'Name' => string 'Abandoned Cart #682' (length=19)
		 *       public 'OwnerId' => string '00524000001veuuAAA' (length=18)
		 */
		$_data = $observer->getData('data');

		/**
		 * Array of Results
		 * @var stdClass[] $_result
		 * 
		 * Example:
		 * array (size=1)
		 *   0 => 
		 *     object(stdClass)[759]
		 *       public 'created' => boolean true
		 *       public 'id' => string '00624000007yHnoAAE' (length=18)
		 *       public 'success' => boolean true
		 */
		$_result = $observer->getData('result');

		// Your custom code
    }
 
}

 

Filter by label

There are no items with the selected labels at this time.