An event is triggered after sync opportunityquote.
Code Block |
---|
language | php |
---|
title | TNW_Salesforce_Block_Sales_Order_Status_New_Form |
---|
|
Mage::dispatchEvent('tnw_salesforce_sync_mapping_opportunityquote_after', array('mapping' => $_mapping, 'entity' => $_entity, 'additionalObject' => $_additional_object)); |
...
Code Block |
---|
language | php |
---|
title | Example Observer |
---|
|
<?php
/**
* Class TNW_Salesforce_Model_Observer
*/
class TNW_Salesforce_Model_Observer
{
public function syncMappingQuoteAfter(Varien_Event_Observer $observer) {
/**
* Mapping objects
* @var TNW_SalesforceQuote_Model_Sync_Mapping_OrderQuote_Opportunity $_mapping
*
* Example:
* object(TNW_SalesforceQuote_Model_Sync_Mapping_OrderQuote_Opportunity)[558716]
* protected '_type' => string 'OpportunityQuote' (length=11)5) // used $_mapping->getType()
* protected '_allowedMappingTypes' => // used $_mapping->getAllowedMappingTypes()
* array (size=86)
* 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 => 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 '33' (length=2)
* 'local_field' => string 'Order : cart_all' (length=16)
* 'sf_field' => string 'Description' (length=11)
* 'attribute_id' => null
* 'backend_type' => null
* 'sf_object' => string 'Opportunity' (length=11)
* 'default_value' => null
* 'local_field_type' => string 'Order' (length=5)
* 'local_field_attribute_code' => string 'cart_all' (length=8)
* ...
0)
* ...
* protected '_sync' => // used $_mapping->getSync()
* object(TNW_SalesforceQuote_Helper_Salesforce_OrderCart2quote)
* ...
*/
$_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
}
} |
...