Files
crm.clientright.ru/modules/Contacts/models/Record.php

59 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************/
class Contacts_Record_Model extends Vtiger_Record_Model {
/**
* Function returns the url for create event
* @return <String>
*/
function getCreateEventUrl() {
$calendarModuleModel = Vtiger_Module_Model::getInstance('Calendar');
return $calendarModuleModel->getCreateEventRecordUrl().'&contact_id='.$this->getId();
}
/**
* Function returns the url for create todo
* @return <String>
*/
function getCreateTaskUrl() {
$calendarModuleModel = Vtiger_Module_Model::getInstance('Calendar');
return $calendarModuleModel->getCreateTaskRecordUrl().'&contact_id='.$this->getId();
}
/**
* Function to get List of Fields which are related from Contacts to Inventory Record
* @return <array>
*/
public function getInventoryMappingFields() {
return array(
array('parentField'=>'account_id', 'inventoryField'=>'account_id', 'defaultValue'=>''),
//Billing Address Fields
array('parentField'=>'mailingcity', 'inventoryField'=>'bill_city', 'defaultValue'=>''),
array('parentField'=>'mailingstreet', 'inventoryField'=>'bill_street', 'defaultValue'=>''),
array('parentField'=>'mailingstate', 'inventoryField'=>'bill_state', 'defaultValue'=>''),
array('parentField'=>'mailingzip', 'inventoryField'=>'bill_code', 'defaultValue'=>''),
array('parentField'=>'mailingcountry', 'inventoryField'=>'bill_country', 'defaultValue'=>''),
array('parentField'=>'mailingpobox', 'inventoryField'=>'bill_pobox', 'defaultValue'=>''),
//Shipping Address Fields
array('parentField'=>'otherstreet', 'inventoryField'=>'ship_street', 'defaultValue'=>''),
array('parentField'=>'othercity', 'inventoryField'=>'ship_city', 'defaultValue'=>''),
array('parentField'=>'otherstate', 'inventoryField'=>'ship_state', 'defaultValue'=>''),
array('parentField'=>'otherzip', 'inventoryField'=>'ship_code', 'defaultValue'=>''),
array('parentField'=>'othercountry', 'inventoryField'=>'ship_country', 'defaultValue'=>''),
array('parentField'=>'otherpobox', 'inventoryField'=>'ship_pobox', 'defaultValue'=>'')
);
}
}