Skip to content
Snippets Groups Projects
Commit 48fb4cd8 authored by Uma's avatar Uma
Browse files

Merge branch 'Standard_EmailTemplate_ModuleNAme' into 'master'

Fixes #1181 Standard EmailTemplates with moduleName, Migration deleting email re…

…cords from vtiger_Activity table

See merge request !556
parents 60a5a715 24fb691d
No related branches found
No related tags found
No related merge requests found
......@@ -432,8 +432,6 @@ if(defined('VTIGER_UPGRADE')) {
if (!in_array('module', $columns)) {
$db->pquery('ALTER TABLE vtiger_emailtemplates ADD COLUMN module VARCHAR(100)', array());
}
$db->pquery('UPDATE vtiger_emailtemplates SET module=? WHERE templatename IN (?,?,?) AND module IS NULL', array('Events', 'ToDo Reminder', 'Activity Reminder', 'Invite Users'));
$db->pquery('UPDATE vtiger_emailtemplates SET module=? WHERE module IS NULL', array('Contacts'));
$moduleName = 'Calendar';
$reminderTemplateResult = $db->pquery('SELECT 1 FROM vtiger_emailtemplates WHERE subject=? AND systemtemplate=?', array('Reminder', '1'));
......@@ -2215,10 +2213,11 @@ if(defined('VTIGER_UPGRADE')) {
}
}
}
$deleteQueryParams = array($moduleName);
if($baseTableName == 'vtiger_activity'){
array_push($moduleName, "Emails");
array_push($deleteQueryParams, "Emails");
}
$db->pquery("DELETE FROM $baseTableName WHERE $baseTableIndex NOT IN (SELECT crmid FROM vtiger_crmentity WHERE setype in ". generateQuestionMarks($moduleName).")", array($moduleName));
$db->pquery("DELETE FROM $baseTableName WHERE $baseTableIndex NOT IN (SELECT crmid FROM vtiger_crmentity WHERE setype in (". generateQuestionMarks($deleteQueryParams)."))", $deleteQueryParams);
}
}
......
......@@ -82,4 +82,14 @@ if (defined('VTIGER_UPGRADE')) {
//#1248 => updated vtiger_systems.server_password to TEXT
$db->pquery('ALTER TABLE vtiger_systems MODIFY server_password text', array());
$defaultEventTemplates = array('ToDo Reminder', 'Activity Reminder', 'Invite Users');
$updateEventParams = array('Events', 'ToDo Reminder', 'Activity Reminder', 'Invite Users');
$db->pquery('UPDATE vtiger_emailtemplates SET module=? WHERE templatename IN ('. generateQuestionMarks($defaultEventTemplates).')', $updateEventParams);
$defaultContactTemplates = array('Support end notification before a month', 'Support end notification before a week', 'Send Portal login details to customer', 'Thanks Note', 'Customer Login Details', 'Target Crossed!', 'Follow Up', 'Address Change', 'Accept Order', 'Goods received acknowledgement', 'Acceptance Proposal', 'Pending Invoices', 'Announcement for Release');
$updateContactParams = array('Contacts','Support end notification before a month', 'Support end notification before a week', 'Send Portal login details to customer', 'Thanks Note', 'Customer Login Details', 'Target Crossed!', 'Follow Up', 'Address Change', 'Accept Order', 'Goods received acknowledgement', 'Acceptance Proposal', 'Pending Invoices', 'Announcement for Release');
$db->pquery('UPDATE vtiger_emailtemplates SET module=? WHERE templatename IN ('. generateQuestionMarks($defaultContactTemplates).')', $updateContactParams);
echo 'Email templates default moduleName updated';
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment