getObject(); if($object->GetDBField('AccountPassword') == '') { $sql = 'SELECT Properties FROM '.$object->TableName.' WHERE EngineId = '.$object->GetDBField('EngineId'); $properties = unserialize( $this->Conn->GetOne($sql) ); $object->SetDBField('AccountPassword', $properties['AccountPassword']); } $properties = Array( 'AccountLogin' => $object->GetDBField('AccountLogin'), 'AccountPassword' => $object->GetDBField('AccountPassword'), 'UPSEnabled' => $object->GetDBField('UPSEnabled'), 'UPSAccount' => $object->GetDBField('UPSAccount'), 'UPSInvoiced' => $object->GetDBField('UPSInvoiced'), 'FDXEnabled' => $object->GetDBField('FDXEnabled'), 'FDXAccount' => $object->GetDBField('FDXAccount'), 'DHLEnabled' => $object->GetDBField('DHLEnabled'), 'DHLAccount' => $object->GetDBField('DHLAccount'), 'DHLInvoiced' => $object->GetDBField('DHLInvoiced'), 'USPEnabled' => $object->GetDBField('USPEnabled'), 'USPAccount' => $object->GetDBField('USPAccount'), 'USPInvoiced' => $object->GetDBField('USPInvoiced'), 'ARBEnabled' => $object->GetDBField('ARBEnabled'), 'ARBAccount' => $object->GetDBField('ARBAccount'), 'ARBInvoiced' => $object->GetDBField('ARBInvoiced'), '1DYEnabled' => $object->GetDBField('1DYEnabled'), '2DYEnabled' => $object->GetDBField('2DYEnabled'), '3DYEnabled' => $object->GetDBField('3DYEnabled'), 'GNDEnabled' => $object->GetDBField('GNDEnabled'), 'ShipMethod' => $object->GetDBField('ShipMethod'), ); $properties = serialize($properties); $object->SetDBField('Properties', $properties); $from_country = $this->Application->ConfigValue('Comm_Shipping_Country'); if (strlen($from_country) == 3) { $cs_helper =& $this->Application->recallObject('CountryStatesHelper'); /* @var $cs_helper kCountryStatesHelper */ // get 2symbol ISO code from 3symbol ISO code $from_country = $cs_helper->getCountryIso($from_country); } if( !function_exists('curl_init') ) { $object->FieldErrors['Status']['pseudo'] = 'curl_not_present'; $object->ErrorMsgs['curl_not_present'] = $this->Application->Phrase('la_error_EnableCurlFirst'); } elseif( $object->GetDBField('Status') == 1 && (!$this->Application->ConfigValue('Comm_Shipping_City') || !$from_country || ( ($from_country == 'US' || $from_country == 'CA') && !$this->Application->ConfigValue('Comm_Shipping_State') ) || !$this->Application->ConfigValue('Comm_Shipping_ZIP') ) ) { $object->FieldErrors['Status']['pseudo'] = 'from_info_not_filled_in'; $object->ErrorMsgs['from_info_not_filled_in'] = $this->Application->Phrase('la_error_FillInShippingFromAddress'); } } /** * Enter description here... * * @param kEvent $event */ function iterateItems(&$event) { // $event->setEventParam('SkipProcessing', 1); parent::iterateItems($event); if($event->Name == 'OnMassApprove') { $event->status = erSUCCESS; $event->redirect = true; } } /** * Enter description here... * * @param kEvent $event */ function OnAfterItemLoad(&$event) { $object =& $event->getObject(); $properties = unserialize( $object->GetDBField('Properties') ); $object->SetDBFieldsFromHash($properties); } function OnAfterItemCreate(&$event) { $event->CallSubEvent('OnAnyChange'); } function OnAfterItemUpdate(&$event) { $event->CallSubEvent('OnAnyChange'); } function OnAfterItemDelete(&$event) { $event->CallSubEvent('OnAnyChange'); } function OnAnyChange(&$event) { $sql = 'DELETE FROM ' . TABLE_PREFIX . 'Cache WHERE VarName LIKE "ShippingQuotes%"'; $this->Conn->Query($sql); } }