[Vtigercrm-commits] [vtiger development] #7000: Calendar Mail notification does not have the information about Location field
vtiger development
vtiger-tickets at trac.vtiger.com
Tue Mar 22 03:57:26 PDT 2011
#7000: Calendar Mail notification does not have the information about Location
field
------------------------+---------------------------------------------------
Reporter: pratim | Owner: developer
Type: defect | Status: new
Priority: minor | Milestone: Unassigned
Component: vtigercrm | Version: 5.2.1
Resolution: | Keywords:
------------------------+---------------------------------------------------
Comment (by pratim):
Do the following changes to fix this
In the file module/Calendar/Activity.php you can find
function function save_module()[[BR]]
There after line
{{{
$mail_data['description'] = $this->column_fields['description'];
}}}
add the following
{{{
$relatedToInfo
=getEntityName(getSalesEntityType($this->column_fields['parent_id']),
$this->column_fields['parent_id']);
$mail_data['relatedto'] =
$relatedToInfo[$this->column_fields['parent_id']];
$mail_data['location'] = $this->column_fields['location'];
}}}
--
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/7000#comment:2>
vtiger development <http://trac.vtiger.com/>
vtigerCRM
More information about the vtigercrm-commits
mailing list