]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/modules/Users/DetailView.js
Release 6.2.0
[Github/sugarcrm.git] / jssource / src_files / modules / Users / DetailView.js
1 /*********************************************************************************
2  * SugarCRM Community Edition is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  * 
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35
36
37
38
39 var appel;
40 function generatepwd(id)
41 {
42     callback = {
43         success: function(o)
44         {
45             checkok=o.responseText;
46             if (checkok.charAt(0) != '1')
47                 YAHOO.SUGAR.MessageBox.show({title: SUGAR.language.get("Users", "LBL_CANNOT_SEND_PASSWORD"), msg: checkok});
48             else
49                 YAHOO.SUGAR.MessageBox.show({title: SUGAR.language.get("Users", "LBL_PASSWORD_SENT"), msg: SUGAR.language.get("Users", "LBL_NEW_USER_PASSWORD_2")} );
50         },
51         failure: function(o)
52         {
53             YAHOO.SUGAR.MessageBox.show({title: SUGAR.language.get("Users", "LBL_CANNOT_SEND_PASSWORD"), msg: SUGAR.language.get("app_strings", "LBL_AJAX_FAILURE")});
54         }
55     }
56         PostData = '&to_pdf=1&module=Users&action=GeneratePassword&userId='+id;
57         YAHOO.util.Connect.asyncRequest('POST', 'index.php', callback, PostData);       
58 }
59
60 function set_return_user_and_save(popup_reply_data)
61 {
62         var form_name = popup_reply_data.form_name;
63         var name_to_value_array;
64         if(popup_reply_data.selection_list)
65         {
66                 name_to_value_array = popup_reply_data.selection_list;
67         }else if(popup_reply_data.teams){
68                 name_to_value_array = new Array();
69                 for (var the_key in popup_reply_data.teams){
70                         name_to_value_array.push(popup_reply_data.teams[the_key].team_id);
71                 }
72         }else
73         {
74                 name_to_value_array = popup_reply_data.name_to_value_array;
75         }
76         
77         var query_array =  new Array();
78         for (var the_key in name_to_value_array)
79         {
80                 if(the_key == 'toJSON')
81                 {
82                         /* just ignore */
83                 }
84                 else
85                 {
86                         query_array.push("record[]="+name_to_value_array[the_key]);
87                 }
88         }
89         query_array.push('user_id='+get_user_id(form_name));
90         query_array.push('action=AddUserToTeam');
91         query_array.push('module=Teams');
92         var query_string = query_array.join('&');
93         
94         var returnstuff = http_fetch_sync('index.php',query_string);
95         
96         document.location.reload(true);
97 }
98
99 function get_user_id(form_name)
100 {
101         return window.document.forms[form_name].elements['user_id'].value;
102 }
103
104 function user_status_display(field){
105         switch (field){
106         
107                 case 'RegularUser':
108                     document.getElementById("calendar_options").style.display="";
109                         document.getElementById("edit_tabs").style.display="";
110                     document.getElementById("locale").style.display="";
111                         document.getElementById("settings").style.display="";
112                         document.getElementById("information").style.display="";
113                         break;
114                         
115                 case 'GroupUser':
116                     document.getElementById("calendar_options").style.display="none";
117                         document.getElementById("edit_tabs").style.display="none";
118                     document.getElementById("locale").style.display="none";
119                         document.getElementById("settings").style.display="none";
120                         document.getElementById("information").style.display="none";
121             document.getElementById("email_options_link_type").style.display="none";
122             break;
123
124                 case 'PortalUser':
125                     document.getElementById("calendar_options").style.display="none";
126                         document.getElementById("edit_tabs").style.display="none";
127                     document.getElementById("locale").style.display="none";
128                         document.getElementById("settings").style.display="none";
129                         document.getElementById("information").style.display="none";
130             document.getElementById("email_options_link_type").style.display="none";
131             break;
132         }
133 }