Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

An event is triggered to allow PowerSync product to customize 'Sales Order Status' form in Magentoafter sending order notes in service Salesforce.

Code Block
languagephp
titleTNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_order_notes_send_after', array('data' => $_data, 'result' => $_result));

...

Code Block
languagexml
titleExample Config
<?xml version="1.0"?>
<config>
    <global>
        <events>
            <tnw_salesforce_order_notes_send_after>
                <observers>
                    <tnw<salesforce_salesforce_order_notes_send_after_after>observer>
                        <class>tnw_salesforce/observer</class>
                        <method>orderNotesSendAfter</method>
                    </tnw_salesforce_order_notes_send_after_after>observer>
                </observers>
            </tnw_salesforce_order_notes_send_after>
        </events>
    </global>
</config>
Code Block
languagephp
titleExample Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function orderNotesSendAfter(Varien_Event_Observer $observer) {
		/**
		 * Array of Salesforce objects
		 * @var arraystdClass[] $_data 
		 * 
		 * Example:
		 * array (size=1)
		 *   310 => // 310 - Magento order status history ID
		 *     object(stdClass)[529]
		 *       public 'ParentId' => string '80124000001479HAAQ' (length=18)
		 *       public 'IsPrivate' => int 0
		 *       public 'Body' => string 'Test comment' (length=12)
		 *       public 'Title' => string 'Test comment' (length=12)
		 */
		$_data = $observer->getData('data');

		/**
		 * Array of Results
		 * @var arraystdClass[] $_result
		 * 
		 * Example:
		 * array (size=1)
		 *   310 => // 310 - Magento order status history ID
		 *     object(stdClass)[922]
		 *       public 'created' => boolean true
		 *       public 'id' => string '00224000002qDZSAA2' (length=18)
		 *       public 'success' => boolean true
		 */
		$_result = $observer->getData('result');

		// Your custom code
    }
 
}

...