tnw_salesforce_sync_mapping_sales_order_after
An event is triggered after sync order.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_sync_mapping_sales_order_after', array('mapping' => $_mapping, 'entity' => $_entity, 'additionalObject' => $_additional_object));
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_sync_mapping_sales_order_after> <observers> <salesforce_sync_mapping_sales_order_after_observer> <class>tnw_salesforce/observer</class> <method>syncMappingSalesOrderAfter</method> </salesforce_sync_mapping_sales_order_after_observer> </observers> </tnw_salesforce_sync_mapping_sales_order_after> </events> </global> </config>
Example Observer
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer { public function syncMappingSalesOrderAfter(Varien_Event_Observer $observer) { /** * Mapping objects * @var TNW_Salesforce_Model_Sync_Mapping_Order_Order $_mapping * * Example: * object(TNW_Accountingseed_Model_Sync_Mapping_Order_Salesorder)[715] * protected '_type' => string 'Sales_Order' (length=11) // used $_mapping->getType() * protected '_allowedMappingTypes' => // used $_mapping->getAllowedMappingTypes() * array (size=8) * 0 => string 'Customer' (length=8) * 1 => string 'Billing' (length=7) * 2 => string 'Shipping' (length=8) * 3 => string 'Custom' (length=6) * 4 => string 'Order' (length=5) * 5 => string 'Customer Group' (length=14) * 6 => string 'Payment' (length=7) * 7 => string 'Aitoc' (length=5) * protected '_mappingCollection' => // used $_mapping->getMappingCollection() * object(TNW_Salesforce_Model_Mysql4_Mapping_Collection)[621] * protected '_items' => * array (size=13) * 34 => * object(TNW_Salesforce_Model_Mapping) * protected '_data' => * array (size=9) * 'mapping_id' => string '57' (length=2) * 'local_field' => string 'Billing : country_id' (length=20) * 'sf_field' => string 'AcctSeedERP__Billing_Country__c' (length=31) * 'attribute_id' => string '27' (length=2) * 'backend_type' => string 'varchar' (length=7) * 'sf_object' => string 'Sales_Order' (length=11) * 'default_value' => null * 'local_field_type' => string 'Billing' (length=7) * 'local_field_attribute_code' => string 'country_id' (length=10) * ... * ... * protected '_sync' => // used $_mapping->getSync() * object(TNW_Accountingseed_Helper_Salesforce_Salesorder) * ... */ $_mapping = $observer->getData('mapping'); /** * Entity objects * @var Mage_Sales_Model_Order $_entity */ $_entity = $observer->getData('entity'); /** * Additional entity objects * @var null $_additional_object */ $_additional_object = $observer->getData('additionalObject'); // Your custom code } }
Related articles
Filter by label
There are no items with the selected labels at this time.