Versions Compared

Key

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

An event is triggered before sync opportunityquote.

Code Block
languagephp
titleTNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_sync_mapping_quote_before', array('mapping' => $_mapping, 'entity' => $_entity, 'additionalObject' => $_additional_object));

...

Code Block
languagephp
titleExample Observer
<?php

/**
 * Class TNW_Salesforce_Model_Observer
 */
class TNW_Salesforce_Model_Observer
{
 
    public function syncMappingQuoteBefore(Varien_Event_Observer $observer) {
		
        /**
		
         * Mapping objects
		
         * @var TNW_SalesforceQuote_Model_Sync_Mapping_OrderQuote_Opportunity $_mapping 
     		    * 
     		    * Example:
		
         *     object(TNW_SalesforceQuote_Model_Sync_Mapping_OrderQuote_Opportunity)[558]
		716]
         *       protected '_type' => string 'OpportunityQuote' (length=115)         // used $_mapping->getType()
		
         *       protected '_allowedMappingTypes' =>                    // used $_mapping->getAllowedMappingTypes()
		
         *         array (size=8)
		6)
         *           0 => string 'Customer' (length=8)
		
         *           1 => string 'Billing' (length=7)
		
         *           2 => string 'Shipping' (length=8)
		
         *           3 => string 'Custom' (length=6)
		
         *           4 => string 'OrderQuote' (length=5)
		
         *           5 => string 'Customer Group' (length=14)
		   *      *     6 => stringprotected 'Payment_mappingCollection' (length=7)
		 *=> null               7 => string 'Aitoc' (length=5)
		// used $_mapping->getMappingCollection()
         *       protected '_mappingCollectionsync' =>	null			                 // used $_mapping->getMappingCollection() 		 *       protected '_sync' => 								    // used $_mapping->getSync()
		
         *         object(TNW_SalesforceQuote_Helper_Salesforce_Order)
		Cart2quote)
         *       ...
		
         */
        $_mapping = $observer->getData('mapping');
 
        /**
         * Entity objects
         * @var MageTNW_SalesQuote_Model_OrderQqadvcustomer $_entity 
         */
        $_entity = $observer->getData('entity');
 
        /**
         * Additional entity objects
         * @var null $_additional_object 
         */
        $_additional_object = $observer->getData('additionalObject');
 
		// Your custom code
    }
 
}

...