tnw_salesforce_invoice_set_object

This event allows you to define a class of synchronization invoice

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_invoice_set_object', array('sf_object' => $_object));

 

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_invoice_set_object>
                <observers>
                    <tnw_salesforce_invoice_set_object>
                        <class>tnw_salesforce/observer</class>
                        <method>invoiceSetObject</method>
                    </tnw_salesforce_invoice_set_object>
                </observers>
            </tnw_salesforce_invoice_set_object>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function invoiceSetObject(Varien_Event_Observer $observer) {
		/** 
		 * @var Varien_Object $_sf_object 
		 * 
		 * Example:
		 * object(Varien_Object)[2]
		 *   protected '_data' => 
		 *     array (size=1)
		 *       'object_type' => string 'invoice' (length=7)
		 *   ...
		 */
		$_sf_object = $observer->getData('sf_object');

        // Your custom code
    }
 
}

 

Filter by label

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