]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Leads/tpls/ConvertLeadFooter.tpl
Release 6.4.0
[Github/sugarcrm.git] / modules / Leads / tpls / ConvertLeadFooter.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 *}
38 {sugar_getscript file="cache/include/javascript/sugar_grp_overlib.js"}
39 {literal}
40 <script type="text/javascript">
41     var accountText = document.getElementById('account_name');
42
43     // add focus() to the onclick event handler of the clear account name button
44     // because we need onblur to be triggered after account name is cleared
45     var clearButton = document.getElementById('btn_clr_account_name');
46     if (clearButton && accountText) {
47         clearButton.attributes['onclick'].value = "accountText.focus();" + clearButton.attributes['onclick'].value + "clearButton.focus();";
48     }
49
50     // add onblur event handler to the account name text to update the module dropdown
51     var account_name = document.getElementById('account_name');
52
53     function onBlurKeyUpHandler() {
54         var dropdown = document.getElementById('lead_conv_ac_op_sel');
55         if (!dropdown || !account_name) {
56             return;
57         }
58         var found = false;
59         var i;
60         var module = 'Accounts';
61         for (i=dropdown.options.length-1; i>=0; i--) {
62             if (dropdown.options[i].value == module) {
63                 found = true;
64                 if (account_name.value == '') {
65                     dropdown.remove(i);
66                 }
67                 break;
68             }
69         }
70         if (!found && account_name.value != '') {
71             var opt = document.createElement("option");
72             opt.text = SUGAR.language.get('app_list_strings', "moduleListSingular")[module];
73             opt.value = module;
74             opt.label = opt.text;
75             dropdown.options.add(opt);
76         }
77     }
78     if (account_name) {
79         account_name.onblur = onBlurKeyUpHandler;
80         account_name.onkeyup = onBlurKeyUpHandler;
81     }
82 </script>
83 {/literal}
84
85 {if $lead_conv_activity_opt == 'move'}
86 <table width="100%" border="0" cellspacing="1" cellpadding="0"  class="{$def.templateMeta.panelClass|default:'edit view'}" id ="lead_conv_ac_op">
87 <tr>
88     <td width="15%" class="rssItemDate">
89         {sugar_translate label='LBL_ACTIVITIES_MOVE' module='Leads'}:&nbsp;{sugar_help text=$MOD.LBL_ACTIVITIES_MOVE_HELP}
90     </td>
91     <td>
92         <select id="lead_conv_ac_op_sel" name="lead_conv_ac_op_sel">
93             {$convertModuleListOptions}
94         </select>
95     </td>
96 </tr>
97 </table>
98 {elseif $lead_conv_activity_opt == 'copy' || $lead_conv_activity_opt == ''}
99 <table width="100%" border="0" cellspacing="1" cellpadding="0"  class="{$def.templateMeta.panelClass|default:'edit view'}" id ="lead_conv_ac_op">
100 <tr>
101     <td width="15%" class="rssItemDate">
102         {sugar_translate label='LBL_ACTIVITIES_COPY' module='Leads'}:&nbsp;{sugar_help text=$MOD.LBL_ACTIVITIES_COPY_HELP}
103     </td>
104     <td>
105         <select id="lead_conv_ac_op_sel" name="lead_conv_ac_op_sel[]" size="5" multiple="">
106             {$convertModuleListOptions}
107         </select>
108     </td>
109 </tr>
110 </table>
111 {/if}
112
113 <table width="100%" cellpadding="0" cellspacing="0" border="0">
114 <tr>
115 <td class="buttons">
116 {if $bean->aclAccess("save")}
117     <input title='{sugar_translate label="LBL_SAVE_BUTTON_LABEL"}' accessKey="{sugar_translate label='LBL_SAVE_BUTTON_KEY}" class="button primary"
118         onclick="return check_form('{$form_name}');"
119         type="submit" name="button" value="{sugar_translate label='LBL_SAVE_BUTTON_LABEL'}">
120 {/if}
121
122 {if !empty($smarty.request.return_action) && ($smarty.request.return_action == "DetailView" && !empty($record_id))}
123     <input title="{sugar_translate label='LBL_CANCEL_BUTTON'}" accessKey="{sugar_translate label='LBL_CANCEL_BUTTON_KEY'}" class="button"
124         onclick="this.form.action.value='DetailView'; this.form.module.value='{$smarty.request.return_module}'; this.form.record.value='{$smarty.request.return_id}';"
125         type="submit" name="button" value="{sugar_translate label='LBL_CANCEL_BUTTON_LABEL'}">
126 {elseif !empty($smarty.request.return_action) && ($smarty.request.return_action == "DetailView" && !empty($smarty.request.return_id))}';
127     <input title="{sugar_translate label='LBL_CANCEL_BUTTON_TITLE'}" accessKey="{sugar_translate label='LBL_CANCEL_BUTTON_KEY'}" class="button"
128         onclick="this.form.action.value='DetailView'; this.form.module.value='{$smarty.request.return_module}'; this.form.record.value='{$smarty.request.return_id}';"
129         type="submit" name="button" value="{sugar_translate label='LBL_CANCEL_BUTTON_LABEL'}">
130 {else}
131     <input title="{sugar_translate label='LBL_CANCEL_BUTTON_TITLE'}" accessKey="{sugar_translate label='LBL_CANCEL_BUTTON_KEY'}" class="button"
132         onclick="this.form.action.value='DetailView'; this.form.module.value='Leads'; this.form.record.value='{$smarty.request.record}';"
133         type="submit" name="button" value="{sugar_translate label='LBL_CANCEL_BUTTON_LABEL'}">
134 {/if}
135 </td>
136 </tr>
137 </table>