tnw_salesforce_invoice_process

An event is triggered to synchronize invoice entities.

TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_invoice_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:

  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_process>
                <observers>
                    <salesforce_invoice_process_observer>
                        <class>tnw_salesforce/observer</class>
                        <method>invoiceProcess</method>
                    </salesforce_invoice_process_observer>
                </observers>
            </tnw_salesforce_invoice_process>
        </events>
    </global>
</config>
Example Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function invoiceProcess(Varien_Event_Observer $observer) {
        /** 
         * Array of order IDs
         * @var array $_order_ids 
         *
         * Example:
         *     array (size=1)
         *         0 => string '44' (length=2)
         */
		$_order_ids = $observer->getData('orderIds');
 
        /** 
         * Sting (success message to display)
         * @var string $_message
         *
         * Example:
         *     string 'SUCCESS: Upserting Invoice #103000003'
		 */
		$_message = $observer->getData('message');

        /** 
         * ENUM('salesforce','bulk')
         * @var string $_type 
         *  
         * Exmple:
         *     string 'salesforce'
         */
		$_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
    }
 
}

 

Filter by label

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