Hi there! Would anyone be able to tell me how I can change the dropdown for the Quickcreate in email? May I add custom modules too? Any help is much appreciated.
Hi there! Would anyone be able to tell me how I can change the dropdown for the Quickcreate in email? May I add custom modules too? Any help is much appreciated.
Hi Monica
You need to create an extended language for the application:
custom/Extension/application/Ext/Language/<your_lang>.lang.ext.php
and add something like that
Then go to Admin -> Repair -> Rebuild ExtensionsPHP Code:$app_list_strings['parent_type_display']['FWK1_Departments'] = 'Departments';
$app_list_strings['record_type_display']['FWK1_Departments'] = 'Departments';
$app_list_strings['record_type_display_notes']['FWK1_Departments'] = 'Departments';
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
You are AWESOME Andre! Thank you.
How would I add Accounts to the quickcreate dropdown in Sugar email?
I made some progress on this issue. I went in and edited EmailUI.php to add the additional modules directly there. Lines 152 and 153. I replaced the existing Bugs, Cases, and Leads modules with Accounts, Meetings and Calls.
$QCAvailibleModules = array();
$QCModules = array('Accounts', 'Meetings', 'Tasks', 'Contacts', 'Calls');
The additional modules are now added to the dropdown but the labels are blank.
Any advice on how to get the labels for this particular dropdown?
**SOLUTION** - wanted to share in case anyone else faces this.
In addition to the above, I added to my custom/Extension/application/Ext/Language/<your_lang>.lang.ext.php file:
'LBL_EMAIL_QC_MEETINGS' => 'Meeting',
Thanks!
Last edited by monicaDC; 2009-04-12 at 08:13 PM. Reason: providing solution found
Hi Monica
I had file a bug proposing a fix for that: 29521
Using this patch you can add as modules as you want easily.
Make sure you create an extended application language (custom/Extension/application/Ext/Language) containing the entries for the modules you add:
$app_strings['LBL_EMAIL_QC_<MODULE>'] = '<Module Name>';
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
I'm trying to interpret all the code in EmailUI.php but I can't find any solution for this:
I want to hide the Quick Create button whenever the address e-mail from is already in the contacts list. The biggest problem is that I can't find which is the function which loads up every e-mail...
I've tried to modify in: displayEmailFrame() but it seems it is only called one time, the first time we open the emails module![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks