]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/quicksearch.js
Release 6.4.0
[Github/sugarcrm.git] / jssource / src_files / include / javascript / quicksearch.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 /**
40  * browse document for quickSearch fields
41  * Compatible ExtJS 1.1.1 and ExtJS 2.0
42  * parameter : noReload - if set to true, enableQS will enable only
43  *             the new sqsEnabled field on the page. If set to false
44  *             it will reload all the sqsEnabled fields.
45  */
46 function enableQS(noReload){
47         YAHOO.util.Event.onDOMReady(function(){
48         //Safety check.  If sqs_objects variable is null, we really can't do anything useful
49         if(typeof sqs_objects == 'undefined') {
50            return;
51         }
52         
53         var Dom = YAHOO.util.Dom;
54         
55         //Get all the fields where sqsEnabled is an attribue, these should be the input text fields for quicksearch
56         var qsFields = Dom.getElementsByClassName('sqsEnabled');
57         
58         //Now loop through all these fields and process them
59         for(var qsField in qsFields){
60                 
61                 //Safety checks to skip processing of invalid entries
62                 if(typeof qsFields[qsField] == 'function' || typeof qsFields[qsField].id == 'undefined') {
63                    continue;
64                 }
65                 
66                 //Create the index we are using to search for the sqs_objects Array
67                 var form_id = qsFields[qsField].form.getAttribute('id');
68                 
69                 //This is a special case where there is an element with id attribute value of "id"
70                 //In this case, we get the real_id attribute (occurs in modules/Import/tpls/step3.tpl only).
71                 if(typeof form_id == 'object' && qsFields[qsField].form.getAttribute('real_id')) {
72                         form_id = qsFields[qsField].form.getAttribute('real_id');
73                 }
74                 var qs_index_id = form_id + '_' + qsFields[qsField].name;
75
76                 //Another safety check, if the sqs_objects entry is not defined, we can't do anything useful
77                 if(typeof sqs_objects[qs_index_id] == 'undefined') {
78                         qs_index_id = qsFields[qsField].name;
79                         if(typeof sqs_objects[qs_index_id] == 'undefined') {
80                                 continue;
81                         }
82                 }
83                 //Track if this field has already been processed.  The way the enableQS function is called
84                 //is a bit problematic in that it lends itself to a lot of duplicate processing
85                 if(QSProcessedFieldsArray[qs_index_id]) {
86                 skipSTR = 'collection_0';
87                 //the 'collection_0' id is not loaded dynamically, so the first item in the collection will not have an incremental value added to the base id
88                 //only skip the additional fields so that cases where a form is closed and reopened without refreshing the screen will still work
89                 if (qs_index_id.lastIndexOf(skipSTR) != (qs_index_id.length - skipSTR.length)){
90                         continue;
91                 }
92                 }                       
93                 
94                 //Store sqs_objects entry as a reference for convenience
95                 var qs_obj = sqs_objects[qs_index_id];
96                 //The loaded variable will be used to check whether or not the quick search field should be created
97             var loaded = false;   
98
99             if (!document.forms[qs_obj.form]) {
100                         continue;
101                 }
102             //Skip quicksearch fields that are readOnly or that are disabled since you can't search on them anyway
103             if (!document.forms[qs_obj.form].elements[qsFields[qsField].id].readOnly && qs_obj['disable'] != true) {
104                 var combo_id = qs_obj.form + '_' + qsFields[qsField].id;
105                 if (Dom.get(combo_id + "_results")) {
106                         loaded = true
107                 }
108                 
109                 // if loaded == false, then we do the heavy lifting to re-create the quicksearch field
110                 if (!loaded) {
111                         QSProcessedFieldsArray[qs_index_id] = true;
112                         
113                         qsFields[qsField].form_id = form_id;
114                     
115                     var sqs = sqs_objects[qs_index_id];    
116                     
117                     //Initialize the result div
118                     var resultDiv = document.createElement('div');
119                     resultDiv.id = combo_id + "_results";
120                     Dom.insertAfter(resultDiv, qsFields[qsField]);
121                     
122                     //Add the module to the fields so we can read it from the response
123                     var fields = qs_obj.field_list.slice();
124                     fields[fields.length] = "module";
125                     
126                     //Create the DataSource for this QS
127                     var ds = new YAHOO.util.DataSource("index.php?", {
128                                         responseType: YAHOO.util.XHRDataSource.TYPE_JSON,
129                         responseSchema: {
130                                 resultsList: 'fields',
131                                     total: 'totalCount', 
132                                     fields: fields,
133                                     metaNode: "fields",
134                                     metaFields: {total: 'totalCount', fields:"fields"}
135                                         },
136                                         connMethodPost: true
137                             });
138                     
139                     // Don't force selection for search fields
140                     var forceSelect = !((qsFields[qsField].form && typeof(qsFields[qsField].form) == 'object' && qsFields[qsField].form.name == 'search_form')
141                                                         || qsFields[qsField].className.match('sqsNoAutofill') !=  null);
142                     
143                     //Finally Declare the Autocomplete
144                     var search = new YAHOO.widget.AutoComplete(qsFields[qsField], resultDiv, ds, {
145                         typeAhead: forceSelect,
146                                 forceSelection : forceSelect,
147                         fields: fields,
148                         sqs : sqs,
149                                                 animSpeed : 0.25,
150                         qs_obj: qs_obj,
151                         inputElement: qsFields[qsField],
152                         //YUI requires the data, even POST, to be URL encoded
153                         generateRequest : function(sQuery) {
154                                 var out = SUGAR.util.paramsToUrl({
155                                         to_pdf: 'true',
156                                     module: 'Home',
157                                     action: 'quicksearchQuery',
158                                     data: encodeURIComponent(YAHOO.lang.JSON.stringify(this.sqs)),
159                                     query: sQuery
160                                 });
161                                 return out;
162                             },
163                             //Method to fill in form fields with the returned results. 
164                             //Should be called on select, and must be called from the AC instance scope.
165                             setFields : function (data, filter) {
166                                 this.updateFields(data, filter);        
167                             },
168                             
169                             updateFields: function(data, filter) {
170                                 for(var i in this.fields) {             
171                                         for (var key in this.qs_obj.field_list) {
172                                            //Check that the field exists and matches the filter
173                                            if (this.fields[i] == this.qs_obj.field_list[key] && 
174                                                    document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]] &&
175                                                    this.qs_obj.populate_list[key].match(filter)) {
176                                                    //bug: 30823 - remove the apostrophe
177                                                    var displayValue = data[i].replace(/&amp;/gi,'&').replace(/&lt;/gi,'<').replace(/&gt;/gi,'>').replace(/&#039;/gi,'\'').replace(/&quot;/gi,'"');
178                                                    document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]].value = displayValue;
179                                        SUGAR.util.callOnChangeListers(document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]]);
180                                            }
181                                        }
182                                 }
183                             SUGAR.util.callOnChangeListers(this._elTextbox);
184                             },
185                             clearFields : function() {
186                                 for (var key in this.qs_obj.field_list) {
187                                     if (document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]]){
188                                             document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]].value = "";
189                                     SUGAR.util.callOnChangeListers(document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]]);
190                                     }
191                                 }
192                                                         this.oldValue = "";
193                             }
194                     });
195
196                     //C.L. Bug 36575: In event of account_name quicksearch, check to see if we need to warn user
197                     //that address fields may change.  This code has similarities to code block in set_return method
198                     //of sugar_3.js when building the alert message contents.
199                     if(/^(billing_|shipping_)?account_name$/.exec(qsFields[qsField].name))
200                     {
201                       
202                        //C.L. Bug 36106 only clear the name and id fields
203                        search.clearFields = function() {
204                            for(var i in {name:0, id:1}) {
205                                         for (var key in this.qs_obj.field_list) {
206                                     //Check that the field exists
207                                            if (i == this.qs_obj.field_list[key] &&
208                                                    document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]])
209                                    {
210                                        document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]].value = "";
211                                    }
212                                 }
213                            }
214                        };
215                         
216                        search.setFields = function(data, filter) 
217                        {
218                             var label_str = '';
219                                         var label_data_str = '';
220                                         var current_label_data_str = '';                        
221                                         var label_data_hash = new Array();
222                                 
223                                 for(var i in this.fields) {
224                                         for (var key in this.qs_obj.field_list) {
225                                            //Check that the field exists and matches the filter
226                                            if (this.fields[i] == this.qs_obj.field_list[key] && 
227                                                    document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]] &&
228                                                    document.getElementById(this.qs_obj.populate_list[key]+'_label') &&
229                                                    this.qs_obj.populate_list[key].match(filter)) {
230                                                    
231                                                     var displayValue = data[i].replace(/&amp;/gi,'&').replace(/&lt;/gi,'<').replace(/&gt;/gi,'>').replace(/&#039;/gi,'\'').replace(/&quot;/gi,'"');
232                                         var data_label =  document.getElementById(this.qs_obj.populate_list[key]+'_label').innerHTML.replace(/\n/gi,'').replace(/<\/?[^>]+(>|$)/g, "");
233                                                                         
234                                                                         label_and_data = data_label  + ' ' + displayValue;
235                                                                         
236                                                                         //Append to current_label_data_str only if the label and data are unique
237                                                                         if(document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]] && !label_data_hash[data_label])
238                                                                         {
239                                                                                 label_str += data_label + ' \n';
240                                                                                 label_data_str += label_and_data + '\n';
241                                                                                 label_data_hash[data_label] = true;
242                                                                                 current_label_data_str += data_label + ' ' + document.forms[this.qs_obj.form].elements[this.qs_obj.populate_list[key]].value + '\n';
243                                                                         }                                                                       
244                                            }
245                                        }
246                                 }
247                                 
248                                             if(label_str != current_label_data_str && current_label_data_str != label_data_str) {       
249                                                 
250                                                 module_key = (typeof document.forms[form_id].elements['module'] != 'undefined') ? document.forms[form_id].elements['module'].value : 'app_strings';
251                                                 warning_label = SUGAR.language.translate(module_key, 'NTC_OVERWRITE_ADDRESS_PHONE_CONFIRM') + '\n\n' + label_data_str;                                  
252                                                                                                 
253                                                 if(!confirm(warning_label))
254                                                         {
255                                                         this.updateFields(data,/account_id/); 
256                                                         } else {
257                                                                 
258                                                                 if(Dom.get('shipping_checkbox')) 
259                                                                 {
260                                                                   if(this.inputElement.id == 'shipping_account_name')
261                                                                   {
262                                                                           //If the copy address checkbox is checked, update account and office_phone
263                                                                       filter = Dom.get('shipping_checkbox').checked ? /(account_id|office_phone)/ : filter;
264                                                                   } else if(this.inputElement.id == 'billing_account_name') {
265                                                                           //If the copy address is checked, update account, office phone and billing addresses
266                                                                           filter = Dom.get('shipping_checkbox').checked ? filter : /(account_id|office_phone|billing)/;
267                                                                   }
268                                                                 } else if(Dom.get('alt_checkbox')) {
269                                                                   filter = Dom.get('alt_checkbox').checked ? filter : /^(?!alt)/;
270                                                                 }
271                                                         
272                                                                 this.updateFields(data,filter);
273                                                         }
274                                             } else {
275                                         this.updateFields(data,filter);                                                 
276                                             }
277                        };
278                     }
279                     
280                     
281                     if ( typeof(SUGAR.config.quicksearch_querydelay) != 'undefined' ) {
282                         search.queryDelay = SUGAR.config.quicksearch_querydelay;
283                     }
284                     
285                     //fill in the data fields on selection
286                     search.itemSelectEvent.subscribe(function(e, args){
287                         var data = args[2];
288                         var fields = this.fields;
289                         this.setFields(data, /\S/);
290                         
291                         //Handle special case where post_onblur_function is set    
292                         if (typeof(this.qs_obj['post_onblur_function']) != 'undefined') {
293                             collection_extended = new Array();
294                             for (var i in fields) {
295                                 for (var key in this.qs_obj.field_list) {
296                                     if (fields[i] == this.qs_obj.field_list[key]) {
297                                         collection_extended[this.qs_obj.field_list[key]] = data[i];
298                                     }
299                                 }
300                             }
301                             eval(this.qs_obj['post_onblur_function'] + '(collection_extended, this.qs_obj.id)');
302                         }
303                     });
304                                         
305                                         // We will get the old value firstly when the field lose focus.
306                     search.textboxFocusEvent.subscribe(function(){
307                         this.oldValue = this.getInputEl().value;
308                     });
309                     
310                     //If there is no change for this qucik search field , the value of it will not be cleared.
311                     search.selectionEnforceEvent.subscribe(function(e, args){
312                             if (this.oldValue != args[1]) {
313                                         this.clearFields();
314                             } else {
315                                 this.getInputEl().value = this.oldValue;
316                             }
317                     });
318                                         
319                                         search.dataReturnEvent.subscribe(function(e, args){
320                         //Selected the first returned value if a tab was done before results were returned
321                                                 if (this.getInputEl().value.length == 0 && args[2].length > 0) {
322                                                         var data = [];
323                                                         for(var key in this.qs_obj.field_list) {
324                                                                 data[data.length] = args[2][0][this.qs_obj.field_list[key]];
325                                                         }
326                                                         this.getInputEl().value = data[this.key];
327                                                         this.itemSelectEvent.fire(this, "", data);
328                                                 }
329                     });
330
331                                         search.typeAheadEvent.subscribe(function (e, args) {
332                                                 this.getInputEl().value = this.getInputEl().value.replace(/&amp;/gi,'&').replace(/&lt;/gi,'<').replace(/&gt;/gi,'>').replace(/&#039;/gi,'\'').replace(/&quot;/gi,'"');                  
333                                         });                                     
334                                         
335                     
336                     if (typeof QSFieldsArray[combo_id] == 'undefined' && qsFields[qsField].id) {
337                         QSFieldsArray[combo_id] = search;
338                     }
339                 }
340             }
341         }
342         });        
343 }
344
345 function registerSingleSmartInputListener(input) {
346     if ((c = input.className) && (c.indexOf("sqsEnabled") != -1)) {
347         enableQS(true);
348     }
349 }
350
351 if(typeof QSFieldsArray == 'undefined') {
352    QSFieldsArray = new Array();
353    QSProcessedFieldsArray = new Array();
354 }