]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/MassUpdate.php
Release 6.4.0
[Github/sugarcrm.git] / include / MassUpdate.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 require_once('include/EditView/EditView2.php');
40
41 /**
42  * MassUpdate class for updating multiple records at once
43  * @api
44  */
45 class MassUpdate
46 {
47         /*
48          * internal sugarbean reference
49          */
50         var $sugarbean = null;
51
52         /**
53          * where clauses used to filter rows that have to be updated
54          */
55         var $where_clauses = '';
56
57         /**
58           * set the sugar bean to its internal member
59           * @param sugar bean reference
60           */
61         function setSugarBean($sugar)
62         {
63                 $this->sugarbean = $sugar;
64         }
65
66         /**
67          * get the massupdate form
68          * @param bool boolean need to execute the massupdate form or not
69          * @param multi_select_popup booleanif it is a multi-select value
70          */
71         function getDisplayMassUpdateForm($bool, $multi_select_popup = false)
72         {
73
74                 require_once('include/formbase.php');
75
76                 if(!$multi_select_popup)
77                 $form = '<form action="index.php" method="post" name="displayMassUpdate" id="displayMassUpdate">' . "\n";
78                 else
79                 $form = '<form action="index.php" method="post" name="MassUpdate" id="MassUpdate">' . "\n";
80
81                 if($bool)
82                 {
83                         $form .= '<input type="hidden" name="mu" value="false" />' . "\n";
84                 }
85                 else
86                 {
87                         $form .= '<input type="hidden" name="mu" value="true" />' . "\n";
88                 }
89
90                 $form .= getAnyToForm('mu', true);
91                 if(!$multi_select_popup) $form .= "</form>\n";
92
93                 return $form;
94         }
95         /**
96          * returns the mass update's html form header
97          * @param multi_select_popup boolean if it is a mult-select or not
98          */
99         function getMassUpdateFormHeader($multi_select_popup = false)
100         {
101                 global $sugar_version;
102                 global $sugar_config;
103                 global $current_user;
104
105                 unset($_REQUEST['current_query_by_page']);
106                 unset($_REQUEST[session_name()]);
107                 unset($_REQUEST['PHPSESSID']);
108                 $query = base64_encode(serialize($_REQUEST));
109
110         $bean = loadBean($_REQUEST['module']);
111        $order_by_name = $bean->module_dir.'2_'.strtoupper($bean->object_name).'_ORDER_BY' ;
112        $lvso = isset($_REQUEST['lvso'])?$_REQUEST['lvso']:"";
113        $request_order_by_name = isset($_REQUEST[$order_by_name])?$_REQUEST[$order_by_name]:"";
114        $action = isset($_REQUEST['action'])?$_REQUEST['action']:"";
115        $module = isset($_REQUEST['module'])?$_REQUEST['module']:"";
116                 if($multi_select_popup)
117                 $tempString = '';
118                 else
119                 $tempString = "<form action='index.php' method='post' name='MassUpdate'  id='MassUpdate' onsubmit=\"return check_form('MassUpdate');\">\n"
120                 . "<input type='hidden' name='return_action' value='{$action}' />\n"
121         . "<input type='hidden' name='return_module' value='{$module}' />\n"
122                 . "<input type='hidden' name='massupdate' value='true' />\n"
123                 . "<input type='hidden' name='delete' value='false' />\n"
124                 . "<input type='hidden' name='merge' value='false' />\n"
125         . "<input type='hidden' name='current_query_by_page' value='{$query}' />\n"
126         . "<input type='hidden' name='module' value='{$module}' />\n"
127         . "<input type='hidden' name='action' value='MassUpdate' />\n"
128         . "<input type='hidden' name='lvso' value='{$lvso}' />\n"
129         . "<input type='hidden' name='{$order_by_name}' value='{$request_order_by_name}' />\n";
130
131                 // cn: bug 9103 - MU navigation in emails is broken
132                 if($_REQUEST['module'] == 'Emails') {
133                         $type = "";
134                         // determine "type" - inbound, archive, etc.
135                         if (isset($_REQUEST['type'])) {
136                                 $type = $_REQUEST['type'];
137                         }
138                         // determine owner
139                         $tempString .=<<<eoq
140                                 <input type='hidden' name='type' value="{$type}" />
141                                 <input type='hidden' name='ie_assigned_user_id' value="{$current_user->id}" />
142 eoq;
143                 }
144
145                 return $tempString;
146         }
147
148         /**
149           * Executes the massupdate form
150           * @param displayname Name to display in the popup window
151       * @param varname name of the variable
152           */
153         function handleMassUpdate(){
154
155                 require_once('include/formbase.php');
156                 global $current_user, $db, $disable_date_format, $timedate;
157
158                 foreach($_POST as $post=>$value){
159                         if(is_array($value)){
160                                 if(empty($value)){
161                                         unset($_POST[$post]);
162                                 }
163                         }elseif(strlen($value) == 0){
164                                 if( isset($this->sugarbean->field_defs[$post]) && $this->sugarbean->field_defs[$post]['type'] == 'radioenum' && isset($_POST[$post]) ){
165                                   $_POST[$post] = '';
166                                 }else{
167                                   unset($_POST[$post]);
168                             }
169             }
170
171                         if(is_string($value) && isset($this->sugarbean->field_defs[$post])) {
172                         if(($this->sugarbean->field_defs[$post]['type'] == 'bool'
173                                         || (!empty($this->sugarbean->field_defs[$post]['custom_type']) && $this->sugarbean->field_defs[$post]['custom_type'] == 'bool'
174                                         ))){
175                                                 if(strcmp($value, '2') == 0)$_POST[$post] = 0;
176                                                 if(!empty($this->sugarbean->field_defs[$post]['dbType']) && strcmp($this->sugarbean->field_defs[$post]['dbType'], 'varchar') == 0 ){
177                                                         if(strcmp($value, '1') == 0 )$_POST[$post] = 'on';
178                                                         if(strcmp($value, '2') == 0)$_POST[$post] = 'off';
179                                                 }
180                         }
181
182                             if( ($this->sugarbean->field_defs[$post]['type'] == 'radioenum' && isset($_POST[$post]) && strlen($value) == 0)
183                             || ($this->sugarbean->field_defs[$post]['type'] == 'enum' && $value == '__SugarMassUpdateClearField__') // Set to '' if it's an explicit clear
184                             ){
185                                     $_POST[$post] = '';
186                             }
187                 if ($this->sugarbean->field_defs[$post]['type'] == 'bool') {
188                     $this->checkClearField($post, $value);
189                 }
190                             if($this->sugarbean->field_defs[$post]['type'] == 'date' && !empty($_POST[$post])){
191                                 $_POST[$post] = $timedate->to_db_date($_POST[$post], false);
192                             }
193                 if($this->sugarbean->field_defs[$post]['type'] == 'datetime' && !empty($_POST[$post])){
194                                 $_POST[$post] = $timedate->to_db($this->date_to_dateTime($post, $value));
195                             }
196                             if($this->sugarbean->field_defs[$post]['type'] == 'datetimecombo' && !empty($_POST[$post])){
197                                 $_POST[$post] = $timedate->to_db($_POST[$post]);
198                             }
199             }
200          }
201
202                 //We need to disable_date_format so that date values for the beans remain in database format
203                 //notice we make this call after the above section since the calls to TimeDate class there could wind up
204                 //making it's way to the UserPreferences objects in which case we want to enable the global date formatting
205                 //to correctly retrieve the user's date format preferences
206                 $old_value = $disable_date_format;
207                 $disable_date_format = true;
208
209                 if(!empty($_REQUEST['uid'])) $_POST['mass'] = explode(',', $_REQUEST['uid']); // coming from listview
210                 elseif(isset($_REQUEST['entire']) && empty($_POST['mass'])) {
211                         if(empty($order_by))$order_by = '';
212                         $ret_array = create_export_query_relate_link_patch($_REQUEST['module'], $this->searchFields, $this->where_clauses);
213                         if(!isset($ret_array['join'])) {
214                                 $ret_array['join'] = '';
215                         }
216                         $query = $this->sugarbean->create_export_query($order_by, $ret_array['where'], $ret_array['join']);
217                         $result = $db->query($query,true);
218                         $new_arr = array();
219                         while($val = $db->fetchByAssoc($result,false))
220                         {
221                                 array_push($new_arr, $val['id']);
222                         }
223                         $_POST['mass'] = $new_arr;
224                 }
225
226                 if(isset($_POST['mass']) && is_array($_POST['mass'])  && $_REQUEST['massupdate'] == 'true'){
227                         $count = 0;
228
229
230                         foreach($_POST['mass'] as $id){
231                 if(empty($id)) {
232                     continue;
233                 }
234                                 if(isset($_POST['Delete'])){
235                                         $this->sugarbean->retrieve($id);
236                                         if($this->sugarbean->ACLAccess('Delete')){
237                                         //Martin Hu Bug #20872
238                                                 if($this->sugarbean->object_name == 'EmailMan'){
239                                                         $query = "DELETE FROM emailman WHERE id = '" . $this->sugarbean->id . "'";
240                                                         $db->query($query);
241                                                 } else {
242
243                                                         $this->sugarbean->mark_deleted($id);
244                                                 }
245                                         }
246                                 }
247                                 else {
248                                         if($this->sugarbean->object_name == 'Contact' && isset($_POST['Sync'])){ // special for contacts module
249                                                 if($_POST['Sync'] == 'true') {
250                                                         $this->sugarbean->retrieve($id);
251                                                         if($this->sugarbean->ACLAccess('Save')){
252                                                                 if($this->sugarbean->object_name == 'Contact'){
253
254                                                                         $this->sugarbean->contacts_users_id = $current_user->id;
255                                                                         $this->sugarbean->save(false);
256                                                                 }
257                                                         }
258                                                 }
259                                                 elseif($_POST['Sync'] == 'false') {
260                                                         $this->sugarbean->retrieve($id);
261                                                         if($this->sugarbean->ACLAccess('Save')){
262                                                                 if($this->sugarbean->object_name == 'Contact'){
263                                                                         if (!isset($this->sugarbean->users))
264                                                                         {
265                                                                                 $this->sugarbean->load_relationship('user_sync');
266                                                                         }
267                                                                         $this->sugarbean->contacts_users_id = null;
268                                                                         $this->sugarbean->user_sync->delete($this->sugarbean->id, $current_user->id);
269                                                                 }
270                                                         }
271                                                 }
272                                         } //end if for special Contact handling
273
274                                         if($count++ != 0) {
275                                            //Create a new instance to clear values and handle additional updates to bean's 2,3,4...
276                        $className = get_class($this->sugarbean);
277                        $this->sugarbean = new $className();
278                                         }
279
280                                         $this->sugarbean->retrieve($id);
281
282
283                                         if($this->sugarbean->ACLAccess('Save')){
284                                                 $_POST['record'] = $id;
285                                                 $_GET['record'] = $id;
286                                                 $_REQUEST['record'] = $id;
287                                                 $newbean=$this->sugarbean;
288
289                                                 $old_reports_to_id = null;
290                                                 if(!empty($_POST['reports_to_id']) && $newbean->reports_to_id != $_POST['reports_to_id']) {
291                                                    $old_reports_to_id = empty($newbean->reports_to_id) ? 'null' : $newbean->reports_to_id;
292                                                 }
293
294                                                 $check_notify = FALSE;
295
296                                                 if (isset( $this->sugarbean->assigned_user_id)) {
297                                                         $old_assigned_user_id = $this->sugarbean->assigned_user_id;
298                                                         if (!empty($_POST['assigned_user_id'])
299                                                         && ($old_assigned_user_id != $_POST['assigned_user_id'])
300                                                         && ($_POST['assigned_user_id'] != $current_user->id)) {
301                                                                 $check_notify = TRUE;
302                                                         }
303                                                 }
304
305                                                 //Call include/formbase.php, but do not call retrieve again
306                                                 populateFromPost('', $newbean, true);
307                                                 $newbean->save_from_post = false;
308
309                                                 if (!isset($_POST['parent_id'])) {
310                                                         $newbean->parent_type = null;
311                                                 }
312
313                                                 $email_address_id = '';
314                             if (!empty($_POST['optout_primary'])) {
315                                 $optout_flag_value = 0;
316                                 if ($_POST['optout_primary'] == 'true') {
317                                         $optout_flag_value = 1;
318                                 } // if
319                                 if (isset($this->sugarbean->emailAddress)) {
320                                         if (!empty($this->sugarbean->emailAddress->addresses)) {
321                                                 foreach($this->sugarbean->emailAddress->addresses as $key =>$emailAddressRow) {
322                                                         if ($emailAddressRow['primary_address'] == '1') {
323                                                                 $email_address_id = $emailAddressRow['email_address_id'];
324                                                                 break;
325                                                                                 } // if
326                                                                         } // foreach
327                                                                 } // if
328
329                                                         } // if
330                             } // if
331
332
333                                                 $newbean->save($check_notify);
334                                                 if (!empty($email_address_id)) {
335                                                 $query = "UPDATE email_addresses SET opt_out = {$optout_flag_value} where id = '{$emailAddressRow['email_address_id']}'";
336                                                 $GLOBALS['db']->query($query);
337
338                                                 } // if
339
340                                                 if(!empty($old_reports_to_id) && method_exists($newbean, 'update_team_memberships')) {
341                                                    $old_id = $old_reports_to_id == 'null' ? '' : $old_reports_to_id;
342                                                 }
343                                         }
344                                 }
345                         }
346
347                 }
348                 $disable_date_format = $old_value;
349         }
350         /**
351           * Displays the massupdate form
352           */
353         function getMassUpdateForm(
354             $hideDeleteIfNoFieldsAvailable = false
355             )
356         {
357                 global $app_strings;
358                 global $current_user;
359
360                 if($this->sugarbean->bean_implements('ACL') && ( !ACLController::checkAccess($this->sugarbean->module_dir, 'edit', true) || !ACLController::checkAccess($this->sugarbean->module_dir, 'massupdate', true) ) ){
361                         return '';
362                 }
363
364                 $lang_delete = translate('LBL_DELETE');
365                 $lang_update = translate('LBL_UPDATE');
366                 $lang_confirm= translate('NTC_DELETE_CONFIRMATION_MULTIPLE');
367                 $lang_sync = translate('LBL_SYNC_CONTACT');
368                 $lang_oc_status = translate('LBL_OC_STATUS');
369                 $lang_unsync = translate('LBL_UNSYNC');
370                 $lang_archive = translate('LBL_ARCHIVE');
371                 $lang_optout_primaryemail = $app_strings['LBL_OPT_OUT_FLAG_PRIMARY'];
372
373                 $field_count = 0;
374
375                 $html = "<div id='massupdate_form' style='display:none;'><table width='100%' cellpadding='0' cellspacing='0' border='0' class='formHeader h3Row'><tr><td nowrap><h3><span>" . $app_strings['LBL_MASS_UPDATE']."</h3></td></tr></table>";
376                 $html .= "<div id='mass_update_div'><table cellpadding='0' cellspacing='1' border='0' width='100%' class='edit view' id='mass_update_table'>";
377
378                 $even = true;
379
380                 if($this->sugarbean->object_name == 'Contact')
381                 {
382                         $html .= "<tr><td width='15%' scope='row'>$lang_sync</td><td width='35%' class='dataField'><select name='Sync'><option value=''>{$GLOBALS['app_strings']['LBL_NONE']}</option><option value='false'>{$GLOBALS['app_list_strings']['checkbox_dom']['2']}</option><option value='true'>{$GLOBALS['app_list_strings']['checkbox_dom']['1']}</option></select></td>";
383                         $even = false;
384                 } else if($this->sugarbean->object_name == 'Employee') {
385                         $this->sugarbean->field_defs['employee_status']['type'] = 'enum';
386                         $this->sugarbean->field_defs['employee_status']['massupdate'] = true;
387                         $this->sugarbean->field_defs['employee_status']['options'] = 'employee_status_dom';
388                 } else if($this->sugarbean->object_name == 'InboundEmail'){
389                         $this->sugarbean->field_defs['status']['type'] = 'enum';
390                         $this->sugarbean->field_defs['status']['options'] = 'user_status_dom';
391                 }
392
393                 //These fields should never appear on mass update form
394                 static $banned = array('date_modified'=>1, 'date_entered'=>1, 'created_by'=>1, 'modified_user_id'=>1, 'deleted'=>1,'modified_by_name'=>1,);
395
396                 foreach($this->sugarbean->field_defs as $field)
397                 {
398                          if(!isset($banned[$field['name']]) && (!isset($field['massupdate']) || !empty($field['massupdate'])))
399                          {
400                                 $newhtml = '';
401
402                                 if($even)
403                                 {
404                                         $newhtml .= "<tr>";
405                                 }
406
407                                 if(isset($field['vname']))
408                                 {
409                                         $displayname = translate($field['vname']);
410                                 }else{
411                                         $displayname = '';
412                                 }
413
414                                 if(isset($field['type']) && $field['type'] == 'relate' && isset($field['id_name']) && $field['id_name'] == 'assigned_user_id')
415                                 {
416                                         $field['type'] = 'assigned_user_name';
417                                 }
418
419                                 if(isset($field['custom_type']))
420                                 {
421                                         $field['type'] = $field['custom_type'];
422                                 }
423
424                                 if(isset($field['type']))
425                                 {
426                                         switch($field["type"])
427                                         {
428                                                 case "relate":
429                                                     // bug 14691: avoid laying out an empty cell in the <table>
430                                                         $handleRelationship = $this->handleRelationship($displayname, $field);
431                                                         if ($handleRelationship != '')
432                                                         {
433                                                                 $even = !$even;
434                                                                 $newhtml .= $handleRelationship;
435                                                         }
436                                                         break;
437                                                 case "parent":$even = !$even; $newhtml .=$this->addParent($displayname, $field); break;
438                                                 case "int":
439                                                         if(!empty($field['massupdate']) && empty($field['auto_increment']))
440                                                         {
441                                                                 $even = !$even; $newhtml .=$this->addInputType($displayname, $field);
442                                                         }
443                                                          break;
444                                                 case "contact_id":$even = !$even; $newhtml .=$this->addContactID($displayname, $field["name"]); break;
445                                                 case "assigned_user_name":$even = !$even; $newhtml .= $this->addAssignedUserID($displayname,  $field["name"]); break;
446                                                 case "account_id":$even = !$even; $newhtml .= $this->addAccountID($displayname,  $field["name"]); break;
447                                                 case "account_name":$even = !$even; $newhtml .= $this->addAccountID($displayname,  $field["id_name"]); break;
448                                                 case "bool": $even = !$even; $newhtml .= $this->addBool($displayname,  $field["name"]); break;
449                                                 case "enum":
450                                                 case "multienum":
451                                                         if(!empty($field['isMultiSelect']))
452                                                         {
453                                                                 $even = !$even; $newhtml .= $this->addStatusMulti($displayname,  $field["name"], translate($field["options"])); break;
454                                                         }else if(!empty($field['options'])) {
455                                                                 $even = !$even; $newhtml .= $this->addStatus($displayname,  $field["name"], translate($field["options"])); break;
456                                                         }else if(!empty($field['function'])){
457                                                                 $functionValue = $this->getFunctionValue($this->sugarbean, $field);
458                                                                 $even = !$even; $newhtml .= $this->addStatus($displayname,  $field["name"], $functionValue); break;
459                                                         }
460                                                         break;
461                                                 case "radioenum":
462                                                 $even = !$even; $newhtml .= $this->addRadioenum($displayname,  $field["name"] , translate($field["options"])); break;
463                                                 case "datetimecombo":
464                                                 $even = !$even; $newhtml .= $this->addDatetime($displayname,  $field["name"]); break;
465                                                 case "datetime":
466                                                 case "date":$even = !$even; $newhtml .= $this->addDate($displayname,  $field["name"]); break;
467                                         }
468                                 }
469
470                                 if($even)
471                                 {
472                                         $newhtml .="</tr>";
473                                 }
474
475                                 $field_count++;
476
477                                 if(!in_array($newhtml, array('<tr>', '</tr>', '<tr></tr>', '<tr><td></td></tr>'))){
478                                         $html.=$newhtml;
479                                 }
480                         }
481                 }
482
483
484                 if ($this->sugarbean->object_name == 'Contact' ||
485                         $this->sugarbean->object_name == 'Account' ||
486                         $this->sugarbean->object_name == 'Lead' ||
487                         $this->sugarbean->object_name == 'Prospect') {
488
489                         $html .= "<tr><td width='15%'  scope='row' class='dataLabel'>$lang_optout_primaryemail</td><td width='35%' class='dataField'><select name='optout_primary'><option value=''>{$GLOBALS['app_strings']['LBL_NONE']}</option><option value='false'>{$GLOBALS['app_list_strings']['checkbox_dom']['2']}</option><option value='true'>{$GLOBALS['app_list_strings']['checkbox_dom']['1']}</option></select></td></tr>";
490
491                         }
492                 $html .="</table>";
493
494                  $html .= "<table cellpadding='0' cellspacing='0' border='0' width='100%'><tr><td class='buttons'><input onclick='return sListView.send_mass_update(\"selected\", \"{$app_strings['LBL_LISTVIEW_NO_SELECTED']}\")' type='submit' id='update_button' name='Update' value='{$lang_update}' class='button'>&nbsp;<input onclick='javascript:toggleMassUpdateForm();' type='button' id='cancel_button' name='Cancel' value='{$GLOBALS['app_strings']['LBL_CANCEL_BUTTON_LABEL']}' class='button'>";
495                 // TODO: allow ACL access for Delete to be set false always for users
496 //              if($this->sugarbean->ACLAccess('Delete', true) && $this->sugarbean->object_name != 'User') {
497 //                      global $app_list_strings;
498 //                      $html .=" <input id='delete_button' type='submit' name='Delete' value='{$lang_delete}' onclick='return confirm(\"{$lang_confirm}\") && sListView.send_mass_update(\"selected\", \"{$app_strings['LBL_LISTVIEW_NO_SELECTED']}\", 1)' class='button'>";
499 //              }
500
501                 // only for My Inbox views - to allow CSRs to have an "Archive" emails feature to get the email "out" of their inbox.
502                 if($this->sugarbean->object_name == 'Email'
503                 && (isset($_REQUEST['assigned_user_id']) && !empty($_REQUEST['assigned_user_id']))
504                 && (isset($_REQUEST['type']) && !empty($_REQUEST['type']) && $_REQUEST['type'] == 'inbound')) {
505                         $html .=<<<eoq
506                         <input type='button' name='archive' value="{$lang_archive}" class='button' onClick='setArchived();'>
507                         <input type='hidden' name='ie_assigned_user_id' value="{$current_user->id}">
508                         <input type='hidden' name='ie_type' value="inbound">
509 eoq;
510                 }
511
512                 $html .= "</td></tr></table></div></div>";
513
514                 $html .= <<<EOJS
515 <script>
516 function toggleMassUpdateForm(){
517     document.getElementById('massupdate_form').style.display = 'none';
518 }
519 </script>
520 EOJS;
521
522                 if($field_count > 0)
523                 {
524                         return $html;
525                 }else{
526                         //If no fields are found, render either a form that still permits Mass Update deletes or just display a message that no fields are available
527                         $html = "<div id='massupdate_form' style='display:none;'><table width='100%' cellpadding='0' cellspacing='0' border='0' class='formHeader h3Row'><tr><td nowrap><h3><span>" . $app_strings['LBL_MASS_UPDATE']."</h3></td></tr></table>";
528                         if($this->sugarbean->ACLAccess('Delete', true) && !$hideDeleteIfNoFieldsAvailable){
529                                 $html .= "<table cellpadding='0' cellspacing='0' border='0' width='100%'><tr><td><input type='submit' name='Delete' value='$lang_delete' onclick=\"return confirm('{$lang_confirm}')\" class='button'></td></tr></table></div>";
530                         }else{
531                                 $html .= $app_strings['LBL_NO_MASS_UPDATE_FIELDS_AVAILABLE'] . "</div>";
532                         }
533                         return $html;
534                 }
535         }
536
537         function getFunctionValue($focus, $vardef){
538                 $function = $vardef['function'];
539             if(is_array($function) && isset($function['name'])){
540                 $function = $vardef['function']['name'];
541             }else{
542                 $function = $vardef['function'];
543             }
544                 if(!empty($vardef['function']['returns']) && $vardef['function']['returns'] == 'html'){
545                         if(!empty($vardef['function']['include'])){
546                                 require_once($vardef['function']['include']);
547                         }
548                         return $function($focus, $vardef['name'], '', 'MassUpdate');
549                 }else{
550                         return $function($focus, $vardef['name'], '', 'MassUpdate');
551                 }
552         }
553
554         /**
555           * Returns end of the massupdate form
556           */
557         function endMassUpdateForm(){
558                 return '</form>';
559         }
560
561         /**
562           * Decides which popup HTML code is needed for mass updating
563           * @param displayname Name to display in the popup window
564           * @param field name of the field to update
565           */
566         function handleRelationship($displayname, $field)
567         {
568                 $ret_val = '';
569                 if(isset($field['module']))
570                 {
571                         if ($field['name'] == 'reports_to_name' && ($field['module'] == 'Users' || $field['module'] == 'Employee') )
572                             return $this->addUserName($displayname, $field['name'], $field['id_name'], $field['module']);
573
574                     switch($field['module'])
575                         {
576                                 case 'Accounts':
577                                         $ret_val = $this->addAccountID($displayname, $field['name'], $field['id_name']);
578                                         break;
579                                 case 'Contacts':
580                                         $ret_val = $this->addGenericModuleID($displayname, $field['name'], $field['id_name'], "Contacts");
581                                         break;
582                                 case 'Users':
583                                         $ret_val = $this->addGenericModuleID($displayname, $field['name'], $field['id_name'], "Users");
584                                         break;
585                                 case 'Employee':
586                                         $ret_val = $this->addGenericModuleID($displayname, $field['name'], $field['id_name'], "Employee");
587                                         break;
588                                 case 'Releases':
589                                         $ret_val = $this->addGenericModuleID($displayname, $field['name'], $field['id_name'], "Releases");
590                                         break;
591                                 default:
592                                         if(!empty($field['massupdate'])){
593                                                 $ret_val = $this->addGenericModuleID($displayname, $field['name'], $field['id_name'], $field['module']);
594                                         }
595                                         break;
596                         }
597                 }
598
599                 return $ret_val;
600         }
601         /**
602           * Add a parent selection popup window
603           * @param displayname Name to display in the popup window
604           * @param field_name name of the field
605           */
606         function addParent($displayname, $field){
607                 global $app_strings, $app_list_strings;
608
609                 ///////////////////////////////////////
610                 ///
611                 /// SETUP POPUP
612
613                 $popup_request_data = array(
614                 'call_back_function' => 'set_return',
615                 'form_name' => 'MassUpdate',
616                 'field_to_name_array' => array(
617                         'id' => "parent_id",
618                         'name' => "parent_name",
619                         ),
620                         );
621
622                         $json = getJSONobj();
623                         $encoded_popup_request_data = $json->encode($popup_request_data);
624
625             $qsName = array(
626                                     'form' => 'MassUpdate',
627                                                 'method' => 'query',
628                         'modules' => array("Accounts"),
629                         'group' => 'or',
630                                                 'field_list' => array('name', 'id'),
631                                                 'populate_list' => array("mass_parent_name", "mass_parent_id"),
632                                                 'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
633                                                 'limit' => '30','no_match_text' => $app_strings['ERR_SQS_NO_MATCH']);
634                 $qsName = $json->encode($qsName);
635
636                         //
637                         ///////////////////////////////////////
638
639                         $change_parent_button = "<span class='id-ff'><button title='".$app_strings['LBL_SELECT_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_SELECT_BUTTON_KEY']."'  type='button' class='button' value='".$app_strings['LBL_SELECT_BUTTON_LABEL']
640                         ."' name='button_parent_name' onclick='open_popup(document.MassUpdate.{$field['type_name']}.value, 600, 400, \"\", true, false, {$encoded_popup_request_data});'>
641                         ".SugarThemeRegistry::current()->getImage("id-ff-select", '', null, null, ".png", $app_strings['LBL_ID_FF_SELECT'])."
642                         </button></span>";
643                         $parent_type = $field['parent_type'];
644             $parent_types = $app_list_strings[$parent_type];
645             $disabled_parent_types = ACLController::disabledModuleList($parent_types,false, 'list');
646             foreach($disabled_parent_types as $disabled_parent_type) {
647                             unset($parent_types[$disabled_parent_type]);
648             }
649                         $types = get_select_options_with_id($parent_types, '');
650                         //BS Fix Bug 17110
651                         $pattern = "/\n<OPTION.*".$app_strings['LBL_NONE']."<\/OPTION>/";
652                         $types = preg_replace($pattern, "", $types);
653                         // End Fix
654
655             $json = getJSONobj();
656             $disabled_parent_types = $json->encode($disabled_parent_types);
657
658                         return <<<EOHTML
659 <td width="15%" scope="row">{$displayname} </td>
660 <td>
661     <table width='100%' border='0' cellspacing='0' cellpadding='0'>
662     <tr>
663         <td valign='top'>
664             <select name='{$field['type_name']}' id='mass_{$field['type_name']}'>
665                 $types
666             </select>
667         </td>
668         <td valign='top'>
669                         <input name='{$field['id_name']}' id='mass_{$field['id_name']}' type='hidden' value=''>
670                         <input name='parent_name' id='mass_parent_name' class='sqsEnabled' autocomplete='off'
671                 type='text' value=''>
672             $change_parent_button
673         </td>
674     </tr>
675     </table>
676 </td>
677 <script type="text/javascript">
678 <!--
679 var disabledModules='{$disabled_parent_types}';
680 if(typeof sqs_objects == 'undefined'){
681     var sqs_objects = new Array;
682 }
683 sqs_objects['MassUpdate_parent_name'] = $qsName;
684 registerSingleSmartInputListener(document.getElementById('mass_parent_name'));
685 addToValidateBinaryDependency('MassUpdate', 'parent_name', 'alpha', false, '{$app_strings['ERR_SQS_NO_MATCH_FIELD']} {$app_strings['LBL_ASSIGNED_TO']}','parent_id');
686
687 document.getElementById('mass_{$field['type_name']}').onchange = function()
688 {
689     document.MassUpdate.parent_name.value="";
690     document.MassUpdate.parent_id.value="";
691
692         new_module = document.forms["MassUpdate"].elements["parent_type"].value;
693
694         if(typeof(disabledModules[new_module]) != 'undefined') {
695                 sqs_objects["MassUpdate_parent_name"]["disable"] = true;
696                 document.forms["MassUpdate"].elements["parent_name"].readOnly = true;
697         } else {
698                 sqs_objects["MassUpdate_parent_name"]["disable"] = false;
699                 document.forms["MassUpdate"].elements["parent_name"].readOnly = false;
700         }
701         sqs_objects["MassUpdate_parent_name"]["modules"] = new Array(new_module);
702     enableQS(false);
703
704     checkParentType(document.MassUpdate.parent_type.value, document.MassUpdate.button_parent_name);
705 }
706 -->
707 </script>
708 EOHTML;
709         }
710
711         /**
712           * Add a generic input type='text' field
713           * @param displayname Name to display in the popup window
714           * @param field_name name of the field
715           */
716         function addInputType($displayname, $varname){
717                 $html = <<<EOQ
718         <td scope="row" width="20%">$displayname</td>
719         <td class='dataField' width="30%"><input type="text" name='$varname' size="12" id='{$varname}' maxlength='10' value=""></td>
720         <script> addToValidate('MassUpdate','$varname','int',false,'$displayname');</script>
721 EOQ;
722                 return $html;
723
724         }
725
726     /**
727           * Add a generic widget to lookup Users.
728           * @param displayname Name to display in the popup window
729           * @param varname name of the variable
730           * @param id_name name of the id in vardef
731           * @param mod_type name of the module, either "Contact" or "Releases" currently
732           */
733         function addUserName($displayname, $varname, $id_name='', $mod_type){
734                 global $app_strings;
735
736                 if(empty($id_name))
737                 $id_name = strtolower($mod_type)."_id";
738
739                 ///////////////////////////////////////
740                 ///
741                 /// SETUP POPUP
742         $reportsDisplayName = showFullName() ? 'name' : 'user_name';
743                 $popup_request_data = array(
744                         'call_back_function' => 'set_return',
745                         'form_name' => 'MassUpdate',
746                         'field_to_name_array' => array(
747                                 'id' => "{$id_name}",
748                                 "$reportsDisplayName" => "{$varname}",
749                                 ),
750                                 );
751
752                                 $json = getJSONobj();
753                                 $encoded_popup_request_data = $json->encode($popup_request_data);
754
755                 $qsName = array(
756                                     'form' => 'MassUpdate',
757                                                 'method' => 'get_user_array',
758                         'modules' => array("{$mod_type}"),
759                         'group' => 'or',
760                                                 'field_list' => array('user_name', 'id'),
761                                                 'populate_list' => array("mass_{$varname}", "mass_{$id_name}"),
762                                                 'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
763                                                 'limit' => '30','no_match_text' => $app_strings['ERR_SQS_NO_MATCH']);
764                 $qsName = $json->encode($qsName);
765                                 //
766                                 ///////////////////////////////////////
767
768             return <<<EOHTML
769 <td width='15%'  scope='row' class='dataLabel'>$displayname</td>
770 <td width='35%' class='dataField'>
771     <input name='{$varname}' id='mass_{$varname}' class='sqsEnabled' autocomplete='off' type='text' value=''>
772     <input name='{$id_name}' id='mass_{$id_name}' type='hidden' value=''>&nbsp;
773     <input title='{$app_strings['LBL_SELECT_BUTTON_TITLE']}'
774         accessKey='{$app_strings['LBL_SELECT_BUTTON_KEY']}'
775         type='button' class='button' value='{$app_strings['LBL_SELECT_BUTTON_LABEL']}' name='button'
776         onclick='open_popup("$mod_type", 600, 400, "", true, false, {$encoded_popup_request_data});'
777         />
778 </td>
779 <script type="text/javascript">
780 <!--
781 if(typeof sqs_objects == 'undefined'){
782     var sqs_objects = new Array;
783 }
784 sqs_objects['MassUpdate_{$varname}'] = $qsName;
785 registerSingleSmartInputListener(document.getElementById('mass_{$varname}'));
786 addToValidateBinaryDependency('MassUpdate', '{$varname}', 'alpha', false, '{$app_strings['ERR_SQS_NO_MATCH_FIELD']} {$app_strings['LBL_ASSIGNED_TO']}','{$id_name}');
787 -->
788 </script>
789 EOHTML;
790         }
791
792
793         /**
794           * Add a generic module popup selection popup window HTML code.
795           * Currently supports Contact and Releases
796           * @param displayname Name to display in the popup window
797           * @param varname name of the variable
798           * @param id_name name of the id in vardef
799           * @param mod_type name of the module, either "Contact" or "Releases" currently
800           */
801         function addGenericModuleID($displayname, $varname, $id_name='', $mod_type){
802                 global $app_strings;
803
804                 if(empty($id_name))
805                 $id_name = strtolower($mod_type)."_id";
806
807                 ///////////////////////////////////////
808                 ///
809                 /// SETUP POPUP
810
811                 $popup_request_data = array(
812                         'call_back_function' => 'set_return',
813                         'form_name' => 'MassUpdate',
814                         'field_to_name_array' => array(
815                                 'id' => "{$id_name}",
816                                 'name' => "{$varname}",
817                                 ),
818                                 );
819
820                                 $json = getJSONobj();
821                                 $encoded_popup_request_data = $json->encode($popup_request_data);
822
823                 $qsName = array(
824                                     'form' => 'MassUpdate',
825                                                 'method' => 'query',
826                         'modules' => array("{$mod_type}"),
827                         'group' => 'or',
828                                                 'field_list' => array('name', 'id'),
829                                                 'populate_list' => array("mass_{$varname}", "mass_{$id_name}"),
830                                                 'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
831                                                 'limit' => '30','no_match_text' => $app_strings['ERR_SQS_NO_MATCH']);
832                 $qsName = $json->encode($qsName);
833                                 $img = SugarThemeRegistry::current()->getImageURL("id-ff-select.png");
834                                 //
835                                 ///////////////////////////////////////
836
837             return <<<EOHTML
838 <td width='15%'  scope='row' class='dataLabel'>$displayname</td>
839 <td width='35%' class='dataField'>
840     <input name='{$varname}' id='mass_{$varname}' class='sqsEnabled' autocomplete='off' type='text' value=''>
841     <input name='{$id_name}' id='mass_{$id_name}' type='hidden' value=''>
842         <span class="id-ff multiple">
843     <button title='{$app_strings['LBL_SELECT_BUTTON_TITLE']}'
844         accessKey='{$app_strings['LBL_SELECT_BUTTON_KEY']}'
845         type='button' class='button' value='{$app_strings['LBL_SELECT_BUTTON_LABEL']}' name='button'
846         onclick='open_popup("$mod_type", 600, 400, "", true, false, {$encoded_popup_request_data});'
847         /><img alt="$img" src="$img"></button></span>
848 </td>
849 <script type="text/javascript">
850 <!--
851 if(typeof sqs_objects == 'undefined'){
852     var sqs_objects = new Array;
853 }
854 sqs_objects['MassUpdate_{$varname}'] = $qsName;
855 registerSingleSmartInputListener(document.getElementById('mass_{$varname}'));
856 addToValidateBinaryDependency('MassUpdate', '{$varname}', 'alpha', false, '{$app_strings['ERR_SQS_NO_MATCH_FIELD']} {$app_strings['LBL_ASSIGNED_TO']}','{$id_name}');
857 -->
858 </script>
859 EOHTML;
860         }
861         /**
862           * Add Account selection popup window HTML code
863           * @param displayname Name to display in the popup window
864           * @param varname name of the variable
865           * @param id_name name of the id in vardef
866           */
867         function addAccountID($displayname, $varname, $id_name=''){
868                 global $app_strings;
869
870                 $json = getJSONobj();
871
872                 if(empty($id_name))
873                 $id_name = "account_id";
874
875                 ///////////////////////////////////////
876                 ///
877                 /// SETUP POPUP
878
879                 $popup_request_data = array(
880                         'call_back_function' => 'set_return',
881                         'form_name' => 'MassUpdate',
882                         'field_to_name_array' => array(
883                                 'id' => "{$id_name}",
884                                 'name' => "{$varname}",
885                                 ),
886                                 );
887
888                                 $encoded_popup_request_data = $json->encode($popup_request_data);
889
890                                 //
891                                 ///////////////////////////////////////
892
893                                 $qsParent = array(
894                                                         'form' => 'MassUpdate',
895                                                         'method' => 'query',
896                                                         'modules' => array('Accounts'),
897                                                         'group' => 'or',
898                                                         'field_list' => array('name', 'id'),
899                                                         'populate_list' => array('parent_name', 'parent_id'),
900                                                         'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
901                                                         'order' => 'name',
902                                                         'limit' => '30',
903                                                         'no_match_text' => $app_strings['ERR_SQS_NO_MATCH']
904                                                         );
905                                                         $qsParent['populate_list'] = array('mass_'. $varname, 'mass_' . $id_name);
906                                                         $img = SugarThemeRegistry::current()->getImageURL("id-ff-select.png");
907                                                         $html = '<td scope="row">' . $displayname . " </td>\n"
908                                                         . '<td><input class="sqsEnabled" type="text" autocomplete="off" id="mass_' . $varname .'" name="' . $varname . '" value="" /><input id="mass_' . $id_name . '" type="hidden" name="'
909                                                         . $id_name . '" value="" />&nbsp;<span class="id-ff multiple"><button type="button" name="btn1" class="button" title="'
910                                                         . $app_strings['LBL_SELECT_BUTTON_LABEL'] . '" accesskey="'
911                                                         . $app_strings['LBL_SELECT_BUTTON_KEY'] . '" value="' . $app_strings['LBL_SELECT_BUTTON_LABEL'] . '" onclick='
912                                                         . "'open_popup(\"Accounts\",600,400,\"\",true,false,{$encoded_popup_request_data});' /><img alt=\"$img\" src=\"$img\"></button></span></td>\n";
913                                                         $html .= '<script type="text/javascript" language="javascript">if(typeof sqs_objects == \'undefined\'){var sqs_objects = new Array;}sqs_objects[\'MassUpdate_' . $varname . '\'] = ' .
914                                                         $json->encode($qsParent) . '; registerSingleSmartInputListener(document.getElementById(\'mass_' . $varname . '\'));
915                                         addToValidateBinaryDependency(\'MassUpdate\', \''.$varname.'\', \'alpha\', false, \'' . $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $app_strings['LBL_ACCOUNT'] . '\',\''.$id_name.'\');
916                                         </script>';
917
918                                                         return $html;
919         }
920
921         /**
922           * Add AssignedUser popup window HTML code
923           * @param displayname Name to display in the popup window
924           * @param varname name of the variable
925           */
926         function addAssignedUserID($displayname, $varname){
927                 global $app_strings;
928
929                 $json = getJSONobj();
930
931                 $popup_request_data = array(
932                 'call_back_function' => 'set_return',
933                 'form_name' => 'MassUpdate',
934                 'field_to_name_array' => array(
935                         'id' => 'assigned_user_id',
936                         'user_name' => 'assigned_user_name',
937                         ),
938                         );
939                         $encoded_popup_request_data = $json->encode($popup_request_data);
940                         $qsUser = array(
941                                     'form' => 'MassUpdate',
942                                                 'method' => 'get_user_array', // special method
943                                                 'field_list' => array('user_name', 'id'),
944                                                 'populate_list' => array('assigned_user_name', 'assigned_user_id'),
945                                                 'conditions' => array(array('name'=>'user_name','op'=>'like_custom','end'=>'%','value'=>'')),
946                                                 'limit' => '30','no_match_text' => $app_strings['ERR_SQS_NO_MATCH']);
947
948                                                 $qsUser['populate_list'] = array('mass_assigned_user_name', 'mass_assigned_user_id');
949                                                 $img = SugarThemeRegistry::current()->getImageURL("id-ff-select.png");
950                                                 $html = <<<EOQ
951                 <td width="15%" scope="row">$displayname</td>
952                 <td ><input class="sqsEnabled" autocomplete="off" id="mass_assigned_user_name" name='assigned_user_name' type="text" value=""><input id='mass_assigned_user_id' name='assigned_user_id' type="hidden" value="" />
953                 <span class="id-ff multiple"><button id="mass_assigned_user_name_btn" title="{$app_strings['LBL_SELECT_BUTTON_TITLE']}" accessKey="{$app_strings['LBL_SELECT_BUTTON_KEY']}" type="button" class="button" value='{$app_strings['LBL_SELECT_BUTTON_LABEL']}' name=btn1
954                                 onclick='open_popup("Users", 600, 400, "", true, false, $encoded_popup_request_data);' /><img src="$img"></button></span>
955                 </td>
956 EOQ;
957                                                 $html .= '<script type="text/javascript" language="javascript">if(typeof sqs_objects == \'undefined\'){var sqs_objects = new Array;}sqs_objects[\'MassUpdate_assigned_user_name\'] = ' .
958                                                 $json->encode($qsUser) . '; registerSingleSmartInputListener(document.getElementById(\'mass_assigned_user_name\'));
959                                 addToValidateBinaryDependency(\'MassUpdate\', \'assigned_user_name\', \'alpha\', false, \'' . $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $app_strings['LBL_ASSIGNED_TO'] . '\',\'assigned_user_id\');
960                                 </script>';
961
962                                                 return $html;
963         }
964         /**
965           * Add Status selection popup window HTML code
966           * @param displayname Name to display in the popup window
967           * @param varname name of the variable
968           * @param options array of options for status
969           */
970         function addStatus($displayname, $varname, $options){
971                 global $app_strings, $app_list_strings;
972
973                 // cn: added "mass_" to the id tag to diffentieate from the status id in StoreQuery
974                 $html = '<td scope="row" width="15%">'.$displayname.'</td><td>';
975                 if(is_array($options)){
976                         if(!isset($options['']) && !isset($options['0'])){
977                            $new_options = array();
978                            $new_options[''] = '';
979                            foreach($options as $key=>$value) {
980                                    $new_options[$key] = $value;
981                            }
982                            $options = $new_options;
983                         }
984                         $options = get_select_options_with_id_separate_key($options, $options, '', true);;
985                         $html .= '<select id="mass_'.$varname.'" name="'.$varname.'">'.$options.'</select>';
986                 }else{
987                         $html .= $options;
988                 }
989                 $html .= '</td>';
990                 return $html;
991         }
992
993 /**
994           * Add Status selection popup window HTML code
995           * @param displayname Name to display in the popup window
996           * @param varname name of the variable
997           * @param options array of options for status
998           */
999         function addBool($displayname, $varname){
1000                 global $app_strings, $app_list_strings;
1001                 return $this->addStatus($displayname, $varname, $app_list_strings['checkbox_dom']);
1002         }
1003         function addStatusMulti($displayname, $varname, $options){
1004                 global $app_strings, $app_list_strings;
1005
1006                 if(!isset($options['']) && !isset($options['0'])){
1007                    $new_options = array();
1008                    $new_options[''] = '';
1009                    foreach($options as $key=>$value) {
1010                            $new_options[$key] = $value;
1011                    }
1012                    $options = $new_options;
1013                 }
1014                 $options = get_select_options_with_id_separate_key($options, $options, '', true);;
1015
1016                 // cn: added "mass_" to the id tag to diffentieate from the status id in StoreQuery
1017                 $html = '<td scope="row" width="15%">'.$displayname.'</td>
1018                          <td><select id="mass_'.$varname.'" name="'.$varname.'[]" size="5" MULTIPLE>'.$options.'</select></td>';
1019                 return $html;
1020         }
1021         /**
1022           * Add Date selection popup window HTML code
1023           * @param displayname Name to display in the popup window
1024           * @param varname name of the variable
1025           */
1026         function addDate($displayname, $varname){
1027                 global $timedate;
1028                 $userformat = '('. $timedate->get_user_date_format().')';
1029                 $cal_dateformat = $timedate->get_cal_date_format();
1030                 global $app_strings, $app_list_strings, $theme;
1031
1032                 $javascriptend = <<<EOQ
1033                  <script type="text/javascript">
1034                 Calendar.setup ({
1035                         inputField : "${varname}jscal_field", daFormat : "$cal_dateformat", ifFormat : "$cal_dateformat", showsTime : false, button : "${varname}jscal_trigger", singleClick : true, step : 1, weekNumbers:false
1036                 });
1037                 </script>
1038 EOQ;
1039         $jscalendarImage = SugarThemeRegistry::current()->getImageURL('jscalendar.gif');
1040                 $html = <<<EOQ
1041         <td scope="row" width="20%">$displayname</td>
1042         <td class='dataField' width="30%"><input onblur="parseDate(this, '$cal_dateformat')" type="text" name='$varname' size="12" id='{$varname}jscal_field' maxlength='10' value="">
1043     <img src="$jscalendarImage" id="{$varname}jscal_trigger" align="absmiddle" title="{$app_strings['LBL_MASSUPDATE_DATE']}" alt='{$app_strings['LBL_MASSUPDATE_DATE']}'>&nbsp;<span class="dateFormat">$userformat</span>
1044         $javascriptend</td>
1045         <script> addToValidate('MassUpdate','$varname','date',false,'$displayname');</script>
1046 EOQ;
1047                 return $html;
1048
1049         }
1050
1051         function addRadioenumItem($name, $value, $output) {
1052                 $_output = '';
1053                 $_output .= '<label>';
1054                 $_output .= '<input type="radio" name="'
1055                 . $name . '" value="'
1056                 . $value. '"';
1057
1058             $_output .= ' />' . ($output == '' ? $GLOBALS['app_strings']['LBL_LINK_NONE'] : $output);
1059             $_output .= '</label><br />';
1060             return $_output;
1061         }
1062
1063         function addRadioenum($displayname, $varname, $options){
1064                  foreach ($options as $_key=>$_val){
1065             $_html_result[] = $this->addRadioenumItem($varname, $_key, $_val);
1066         }
1067
1068                 $html = '<td scope="row" width="15%">'.$displayname.'</td>
1069                          <td>'.implode("\n",$_html_result).'</td>';
1070                 return $html;
1071         }
1072         /**
1073           * Add Datetime selection popup window HTML code
1074           * @param displayname Name to display in the popup window
1075           * @param varname name of the variable
1076           */
1077         function addDatetime($displayname, $varname){
1078                 global $timedate;
1079                 $userformat = $timedate->get_user_time_format();
1080                 $cal_dateformat = $timedate->get_cal_date_format();
1081                 global $app_strings, $app_list_strings, $theme;
1082                 $jscalendarImage = SugarThemeRegistry::current()->getImageURL('jscalendar.gif');
1083
1084                 $javascriptend = <<<EOQ
1085                  <script type="text/javascript">
1086                 Calendar.setup ({
1087                         inputField : "{$varname}_date",
1088                         daFormat : "$cal_dateformat",
1089                         ifFormat : "$cal_dateformat",
1090                         showsTime : false,
1091                         button : "{$varname}_trigger",
1092                         singleClick : true,
1093                         step : 1,
1094                         weekNumbers:false
1095                 });
1096                 </script>
1097 EOQ;
1098         $dtscript = getVersionedScript('include/SugarFields/Fields/Datetimecombo/Datetimecombo.js');
1099                 $html = <<<EOQ
1100                 <td scope="row" width="20%">$displayname</td>
1101                 <td class='dataField' width="30%"><input onblur="parseDate(this, '$cal_dateformat')" type="text" name='$varname' size="12" id='{$varname}_date' maxlength='10' value="">
1102                 <img border="0" src="$jscalendarImage" alt='{$app_strings['LBL_MASSUPDATE_DATE']}' id="{$varname}_trigger" title="{$app_strings['LBL_MASSUPDATE_DATE']}"  align="absmiddle">&nbsp;$javascriptend
1103
1104                 <span id="{$varname}_time_section"></span>
1105                 </td>
1106                 <input type="hidden" id="{$varname}" name="{$varname}">
1107                 $dtscript
1108                 <script type="text/javascript">
1109                 var combo_{$varname} = new Datetimecombo(" ", "$varname", "$userformat", '','','',1);
1110                 //Render the remaining widget fields
1111                 text = combo_{$varname}.html('');
1112                 document.getElementById('{$varname}_time_section').innerHTML = text;
1113
1114                 //Call eval on the update function to handle updates to calendar picker object
1115                 eval(combo_{$varname}.jsscript(''));
1116
1117                 function update_{$varname}_available() {
1118                       YAHOO.util.Event.onAvailable("{$varname}_date", this.handleOnAvailable, this);
1119                 }
1120
1121                 update_{$varname}_available.prototype.handleOnAvailable = function(me) {
1122                         Calendar.setup ({
1123                         onClose : update_{$varname},
1124                         inputField : "{$varname}_date",
1125                         daFormat : "$cal_dateformat",
1126                         ifFormat : "$cal_dateformat",
1127                         button : "{$varname}_trigger",
1128                         singleClick : true,
1129                         step : 1,
1130                         weekNumbers:false
1131                         });
1132
1133                         //Call update for first time to round hours and minute values
1134                         combo_{$varname}.update(false);
1135                 }
1136
1137                 var obj_{$varname} = new update_{$varname}_available();
1138                 </script>
1139
1140                 <script> addToValidate('MassUpdate','{$varname}_date','date',false,'$displayname');
1141                 addToValidateBinaryDependency('MassUpdate', '{$varname}_hours', 'alpha', false, "{$app_strings['ERR_MISSING_REQUIRED_FIELDS']}", '{$varname}_date');
1142                 addToValidateBinaryDependency('MassUpdate', '{$varname}_minutes', 'alpha', false, "{$app_strings['ERR_MISSING_REQUIRED_FIELDS']}", '{$varname}_date');
1143                 addToValidateBinaryDependency('MassUpdate', '{$varname}_meridiem', 'alpha', false, "{$app_strings['ERR_MISSING_REQUIRED_FIELDS']}", '{$varname}_date');
1144                 </script>
1145
1146 EOQ;
1147                 return $html;
1148         }
1149
1150         function date_to_dateTime($field, $value) {
1151                 global $timedate;
1152             //Check if none was set
1153         if (isset($this->sugarbean->field_defs[$field]['group'])) {
1154             $group =  $this->sugarbean->field_defs[$field]['group'];
1155             if (isset($this->sugarbean->field_defs[$group."_flag"]) && isset($_POST[$group."_flag"])
1156                 && $_POST[$group."_flag"] == 1) {
1157                 return "";
1158             }
1159         }
1160
1161         $oldDateTime = $this->sugarbean->$field;
1162         $oldTime = explode(" ", $oldDateTime);
1163         if (isset($oldTime[1])) {
1164                 $oldTime = $oldTime[1];
1165         } else {
1166                 $oldTime = $timedate->now();
1167         }
1168         $oldTime = explode(" ", $oldTime);
1169         if (isset($oldTime[1])) {
1170                 $oldTime = $oldTime[1];
1171         } else {
1172                 $oldTime = $oldTime[0];
1173         }
1174         $value = explode(" ", $value);
1175         $value = $value[0];
1176             return $value." ".$oldTime;
1177         }
1178
1179         function checkClearField($field, $value) {
1180             if ($value == 1 && strpos($field, '_flag')) {
1181                 $fName = substr($field, -5);
1182             if (isset($this->sugarbean->field_defs[$field]['group'])) {
1183                 $group =  $this->sugarbean->field_defs[$field]['group'];
1184                 if (isset($this->sugarbean->field_defs[$group])) {
1185                     $_POST[$group] = "";
1186                 }
1187             }
1188             }
1189         }
1190
1191     function generateSearchWhere($module, $query) {//this function is similar with function prepareSearchForm() in view.list.php
1192         $seed = loadBean($module);
1193         $this->use_old_search = true;
1194         if(file_exists('modules/'.$module.'/SearchForm.html')){
1195             if(file_exists('modules/' . $module . '/metadata/SearchFields.php')) {
1196                 require_once('include/SearchForm/SearchForm.php');
1197                 $searchForm = new SearchForm($module, $seed);
1198             }
1199             elseif(!empty($_SESSION['export_where'])) { //bug 26026, sometimes some module doesn't have a metadata/SearchFields.php, the searchfrom is generated in the ListView.php.
1200             //So currently massupdate will not gernerate the where sql. It will use the sql stored in the SESSION. But this will cause bug 24722, and it cannot be avoided now.
1201                 $where = $_SESSION['export_where'];
1202                 $whereArr = explode (" ", trim($where));
1203                 if ($whereArr[0] == trim('where')) {
1204                     $whereClean = array_shift($whereArr);
1205                 }
1206                 $this->where_clauses = implode(" ", $whereArr);
1207                 return;
1208             }
1209             else {
1210                 $this->where_clauses = '';
1211                 return;
1212             }
1213         }
1214         else{
1215             $this->use_old_search = false;
1216             require_once('include/SearchForm/SearchForm2.php');
1217
1218             if(file_exists('custom/modules/'.$module.'/metadata/metafiles.php')){
1219                 require('custom/modules/'.$module.'/metadata/metafiles.php');
1220             }elseif(file_exists('modules/'.$module.'/metadata/metafiles.php')){
1221                 require('modules/'.$module.'/metadata/metafiles.php');
1222             }
1223             
1224             $searchFields = $this->getSearchFields($module);
1225             $searchdefs = $this->getSearchDefs($module);
1226
1227             if(empty($searchdefs) || empty($searchFields)) {
1228                $this->where_clauses = ''; //for some modules, such as iframe, it has massupdate, but it doesn't have search function, the where sql should be empty.
1229                return;
1230             }
1231
1232             $searchForm = new SearchForm($seed, $module);
1233             $searchForm->setup($searchdefs, $searchFields, 'include/SearchForm/tpls/SearchFormGeneric.tpl');
1234         }
1235         /* bug 31271: using false to not add all bean fields since some beans - like SavedReports
1236            can have fields named 'module' etc. which may break the query */
1237         $searchForm->populateFromArray(unserialize(base64_decode($query)), null, true); // see bug 31271
1238         $this->searchFields = $searchForm->searchFields;
1239         $where_clauses = $searchForm->generateSearchWhere(true, $module);
1240         if (count($where_clauses) > 0 ) {
1241             $this->where_clauses = '('. implode(' ) AND ( ', $where_clauses) . ')';
1242             $GLOBALS['log']->info("MassUpdate Where Clause: {$this->where_clauses}");
1243         } else {
1244             $this->where_clauses = '';
1245         }
1246     }
1247
1248     protected function getSearchDefs($module, $metafiles = array())
1249     {
1250         if (file_exists('custom/modules/'.$module.'/metadata/searchdefs.php'))
1251         {
1252             require_once('custom/modules/'.$module.'/metadata/searchdefs.php');
1253         }
1254         elseif (!empty($metafiles[$module]['searchdefs']))
1255         {
1256             require_once($metafiles[$module]['searchdefs']);
1257         }
1258         elseif (file_exists('modules/'.$module.'/metadata/searchdefs.php'))
1259         {
1260             require_once('modules/'.$module.'/metadata/searchdefs.php');
1261         }
1262
1263         return isset($searchdefs) ? $searchdefs : array();
1264     }
1265
1266     protected function getSearchFields($module, $metafiles = array())
1267     {
1268         if (file_exists('custom/modules/' . $module . '/metadata/SearchFields.php'))
1269         {
1270             require_once('custom/modules/' . $module . '/metadata/SearchFields.php');
1271         }
1272         elseif(!empty($metafiles[$module]['searchfields']))
1273         {
1274             require_once($metafiles[$module]['searchfields']);
1275         }
1276         elseif(file_exists('modules/'.$module.'/metadata/SearchFields.php'))
1277         {
1278             require_once('modules/'.$module.'/metadata/SearchFields.php');
1279         }
1280
1281         return isset($searchFields) ? $searchFields : array();
1282     }
1283     /**
1284      * This is kinda a hack how it is implimented, but will tell us whether or not a focus has
1285      * fields for Mass Update
1286      *
1287      * @return bool
1288      */
1289     public function doMassUpdateFieldsExistForFocus()
1290     {
1291         static $banned = array('date_modified'=>1, 'date_entered'=>1, 'created_by'=>1, 'modified_user_id'=>1, 'deleted'=>1,'modified_by_name'=>1,);
1292         foreach($this->sugarbean->field_defs as $field) {
1293             if(!isset($banned[$field['name']]) && (!isset($field['massupdate']) || !empty($field['massupdate']))){
1294                 if(isset($field['type']) && $field['type'] == 'relate' && isset($field['id_name']) && $field['id_name'] == 'assigned_user_id')
1295                     $field['type'] = 'assigned_user_name';
1296                 if(isset($field['custom_type']))$field['type'] = $field['custom_type'];
1297                 if(isset($field['type']))
1298                 {
1299                     switch($field["type"]){
1300                     case "relate":
1301                     case "parent":
1302                     case "int":
1303                     case "contact_id":
1304                     case "assigned_user_name":
1305                     case "account_id":
1306                     case "account_name":
1307                     case "bool":
1308                     case "enum":
1309                     case "multienum":
1310                     case "radioenum":
1311                     case "datetimecombo":
1312                     case "datetime":
1313                     case "date":
1314                         return true;
1315                         break;
1316                     }
1317                 }
1318             }
1319         }
1320
1321         return false;
1322     }
1323 }
1324
1325 ?>