]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Users/reassignUserRecords.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Users / reassignUserRecords.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-2012 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 global $mod_strings;
40 $mod_strings_users = $mod_strings;
41
42 global $current_user;
43 if(!$GLOBALS['current_user']->isAdminForModule('Users')
44   ){
45         sugar_die("You cannot access this page.");
46 }
47
48 global $locale;
49
50 $return_module = isset($_REQUEST['return_module']) ? $_REQUEST['return_module'] : '';
51 $return_action = isset($_REQUEST['return_action']) ? $_REQUEST['return_action'] : '';
52 $return_id = isset($_REQUEST['return_id']) ? $_REQUEST['return_id'] : '';
53 if(!empty($return_module))
54     $cancel_location = "index.php?module=".$return_module."&action=".$return_action."&record=".$return_id;
55 else
56     $cancel_location = "index.php?module=Users&action=index";
57
58 echo "<h2 class='moduleTitle' style=\"margin-bottom:0px;\">{$mod_strings_users['LBL_REASS_SCRIPT_TITLE']}</h2>";
59
60 // Include Metadata for processing
61 require_once("modules/Users/metadata/reassignScriptMetadata.php");
62 if(file_exists("custom/modules/Users/reassignScriptMetadata_override.php")){
63         include("custom/modules/Users/reassignScriptMetadata_override.php");
64 }
65
66 if(!empty($_GET['record'])){
67         unset($_SESSION['reassignRecords']);
68         $_SESSION['reassignRecords']['fromuser'] = $_GET['record'];
69 }
70
71 if(!isset($_POST['fromuser']) && !isset($_GET['execute'])){
72 ///////////////////// BEGIN STEP 1 - Select users/modules /////////////////////////
73         $exclude_modules = array(
74                 "ImportMap",
75                 "UsersLastImport",
76                 "Dashboard",
77                 "SavedSearch",
78                 "UserPreference",
79             "SugarFavorites",
80             'OAuthKey',
81             'OAuthToken',
82         );
83
84         if(isset($_GET['clear']) && $_GET['clear'] == 'true'){
85                 unset($_SESSION['reassignRecords']);
86         }
87 ?>
88 <form method=post action="index.php?module=Users&action=reassignUserRecords" name='EditView' id='EditView'>
89 <table cellspacing='1' cellpadding='1' border='0'>
90 <tr>
91     <td><?php echo $mod_strings_users['LBL_REASS_DESC_PART1']."<BR><br>"?></td>
92 </tr>
93 <tr>
94 <td>
95 <input type=submit class="button" value="<?php echo $mod_strings_users['LBL_REASS_BUTTON_CONTINUE']; ?>" name=steponesubmit>
96 &nbsp;<input type=button class="button" value="<?php echo $mod_strings_users['LBL_REASS_BUTTON_CLEAR']; ?>" onclick='clearCurrentRecords();'>
97 <input type=button class="button" value="<?php echo $app_strings['LBL_CANCEL_BUTTON_LABEL']; ?>" onclick='document.location="<?php echo $cancel_location ?>"'>
98 </td>
99 </tr>
100 </table>
101 <table border='0' cellspacing='0' cellpadding='0'  class='edit view'>
102 <tr>
103 <td>
104 <BR>
105 <?php echo $mod_strings_users['LBL_REASS_USER_FROM']; ?>
106 <BR>
107 <select name="fromuser" id='fromuser'>
108 <?php
109 $all_users = User::getAllUsers();
110 echo get_select_options_with_id($all_users, isset($_SESSION['reassignRecords']['fromuser']) ? $_SESSION['reassignRecords']['fromuser'] : '');
111 ?>
112 </select>
113 <BR>
114 <BR>
115 <?php echo $mod_strings_users['LBL_REASS_USER_TO']; ?>
116 <BR>
117 <select name="touser" id="touser">
118 <?php
119 if(isset($_SESSION['reassignRecords']['fromuser']) && isset($all_users[$_SESSION['reassignRecords']['fromuser']]))
120 {
121         unset($all_users[$_SESSION['reassignRecords']['fromuser']]);
122 }
123
124 echo get_select_options_with_id($all_users, isset($_SESSION['reassignRecords']['touser']) ? $_SESSION['reassignRecords']['touser'] : '');
125 ?>
126 </select>
127 <?php
128 ?>
129 <BR>
130 <?php echo $mod_strings_users['LBL_REASS_MOD_REASSIGN']; ?>
131 <BR>
132 <select size="6" name='modules[]' multiple="true" id='modulemultiselect' onchange="updateDivDisplay(this);">
133 <?php
134 if(!isset($_SESSION['reassignRecords']['assignedModuleListCache'])){
135         $beanListDup = $beanList;
136         foreach($beanListDup as $m => $p){
137                 if(empty($beanFiles[$p])){
138                         unset($beanListDup[$m]);
139                 }
140                 else{
141                         require_once($beanFiles[$p]);
142                         $obj = new $p();
143                         if( !isset($obj->field_defs['assigned_user_id']) ||
144                                 (
145                                         isset($obj->field_defs['assigned_user_id']) &&
146                                         isset($obj->field_defs['assigned_user_id']['source']) &&
147                                         $obj->field_defs['assigned_user_id']['source'] == "non-db"
148                                 )
149                           )
150                         {
151                                 unset($beanListDup[$m]);
152                         }
153                 }
154         }
155         $beanListDup = array_diff($beanListDup, $exclude_modules);
156
157         //Leon bug 20739
158         $beanListDupDisp=array() ;
159         foreach($beanListDup as $m => $p){
160                 $beanListDupDisp[$app_list_strings['moduleList'][$m]]=$p;
161         }
162         $_SESSION['reassignRecords']['assignedModuleListCache'] = $beanListDup;
163         $_SESSION['reassignRecords']['assignedModuleListCacheDisp'] = $beanListDupDisp;
164 }
165 $beanListDup = array_flip($_SESSION['reassignRecords']['assignedModuleListCache']);
166 $beanListFlip = array_flip($_SESSION['reassignRecords']['assignedModuleListCacheDisp']);
167 asort($beanListFlip);
168 $selected = array();
169 if(!empty($_SESSION['reassignRecords']['modules'])){
170         foreach($_SESSION['reassignRecords']['modules'] as $mod => $arr)
171                 $selected[] = $mod;
172 }
173 echo get_select_options_with_id($beanListFlip, $selected);
174 ?>
175 </select>
176 <BR>
177 </td>
178 </tr>
179 <tr>
180 <td>
181 <?php
182 foreach($moduleFilters as $modFilter => $fieldArray){
183         $display = (!empty($fieldArray['display_default']) && $fieldArray['display_default'] == true ? "block" : "none");
184         //Leon bug 20739
185         $t_mod_strings=return_module_language($GLOBALS['current_language'], $modFilter);
186         echo "<div id=\"reassign_{$GLOBALS['beanList'][$modFilter]}\" style=\"display:$display\">\n";
187         echo "<h5 style=\"padding-left:0px; margin-bottom:4px;\">{$app_list_strings['moduleList'][$modFilter]} ", " {$mod_strings_users['LBL_REASS_FILTERS']}</h5>\n";
188         foreach($fieldArray['fields'] as $meta){
189                 $multi = "";
190                 $name = (!empty($meta['name']) ? $meta['name'] : "");
191                 $size = (!empty($meta['size']) ? "size=\"{$meta['size']}\"" : "");
192                 //Leon bug 20739
193                 echo $t_mod_strings[$meta['vname']] ."\n<BR>\n";
194                 switch($meta['type']){
195                         case "text":
196                                 $tag = "input";
197                                 break;
198                         case "multiselect":
199                                 $multi = "multiple=\"true\"";
200                                 $name .= "[]";
201                                 // NO BREAK - Continue into select
202                         case "select":
203                                 $tag = "select";
204                                 $sel = '';
205                                 if(!empty($_SESSION['reassignRecords']['filters'][$meta['name']])){
206                                         $sel = $_SESSION['reassignRecords']['filters'][$meta['name']];
207                                 }
208                                 $extra = get_select_options_with_id($meta['dropdown'], $sel);
209                                 $extra .= "\n</select>";
210                                 break;
211                         default:
212                                 //echo "Skipping field {$meta['name']} since the type is not supported<BR>";
213                                 continue;
214                 }
215                 echo "<$tag $size name=\"$name\" $multi>\n$extra";
216                 echo "<BR>\n";
217         }
218         echo "</div>\n";
219 }
220 ?>
221 </td>
222 </tr>
223 </table>
224 <table cellspacing='1' cellpadding='1' border='0'>
225 <tr>
226 <td>
227 <input type=submit class="button" value="<?php echo $mod_strings_users['LBL_REASS_BUTTON_CONTINUE']; ?>" name=steponesubmit>
228 &nbsp;<input type=button class="button" value="<?php echo $mod_strings_users['LBL_REASS_BUTTON_CLEAR']; ?>" onclick='clearCurrentRecords();'>
229 <input type=button class="button" value="<?php echo $app_strings['LBL_CANCEL_BUTTON_LABEL']; ?>" onclick='document.location="<?php echo $cancel_location ?>"'>
230 </td>
231 </tr>
232 </table>
233 </form>
234
235 <?php
236 ///////////////////// END STEP 1 - Select users/modules /////////////////////////
237 }
238 else if(!isset($_GET['execute'])){
239 ///////////////////// BEGIN STEP 2 - Confirm Selections /////////////////////////
240         if(empty($_POST['modules'])){
241                 sugar_die($mod_strings_users['ERR_REASS_SELECT_MODULE']);
242         }
243         if($_POST['fromuser'] == $_POST['touser']){
244                 sugar_die($mod_strings_users['ERR_REASS_DIFF_USERS']);
245         }
246
247         global $current_user;
248         // Set the from and to user names so that we can display them in the results
249         $fromusername = $_POST['fromuser'];
250         $tousername = $_POST['touser'];
251
252         $query = "select user_name, id from users where id in ('{$_POST['fromuser']}', '{$_POST['touser']}')";
253         $res = $GLOBALS['db']->query($query);
254         while($row = $GLOBALS['db']->fetchByAssoc($res)){
255                 if($row['id'] == $_POST['fromuser'])
256                         $fromusername = $row['user_name'];
257                 if($row['id'] == $_POST['touser'])
258                         $tousername = $row['user_name'];
259         }
260         echo "{$mod_strings_users['LBL_REASS_DESC_PART2']}\n";
261         echo "<form action=\"index.php?module=Users&action=reassignUserRecords&execute=true\" method=post>\n";
262         echo "<BR>{$mod_strings_users['LBL_REASS_NOTES_TITLE']}\n";
263         echo "<ul>\n";
264         echo "<li>* {$mod_strings_users['LBL_REASS_NOTES_ONE']}\n";
265         echo "<li>* {$mod_strings_users['LBL_REASS_NOTES_TWO']}\n";
266         echo "<li>* {$mod_strings_users['LBL_REASS_NOTES_THREE']}\n";
267         echo "</ul>\n";
268         require_once('include/Smarty/plugins/function.sugar_help.php');
269         $sugar_smarty = new Sugar_Smarty();
270         $help_img = smarty_function_sugar_help(array("text"=>$mod_strings['LBL_REASS_VERBOSE_HELP']),$sugar_smarty);
271         echo "<BR><input type=checkbox name=verbose> {$mod_strings_users['LBL_REASS_VERBOSE_OUTPUT']}".$help_img."<BR>\n";
272         
273         unset($_SESSION['reassignRecords']['modules']);
274         $beanListFlip = array_flip($_SESSION['reassignRecords']['assignedModuleListCache']);
275         foreach($_POST['modules'] as $module){
276                 if(!array_key_exists($module, $beanListFlip)){
277                         //echo "$module not found as key in \$beanListFlip. Skipping $module.<BR>";
278                         continue;
279                 }
280                 $p_module = $beanListFlip[$module];
281
282                 require_once($beanFiles[$module]);
283                 $object = new $module();
284                 if(empty($object->table_name)){
285 //                      echo "<h5>Could not find the database table for $p_module.</h5>";
286                         continue;
287                 }
288
289                 echo "<h5>{$mod_strings_users['LBL_REASS_ASSESSING']} {$app_list_strings['moduleList'][$p_module]}</h5>";
290
291                 echo "<table border='0' cellspacing='0' cellpadding='0'  class='detail view'>\n";
292                 echo "<tr>\n";
293                 echo "<td>\n";
294
295                 $q_select = "select id";
296                 $q_update = "update ";
297                 $q_set = " set assigned_user_id = '{$_POST['touser']}', ".
298                               "date_modified = '".TimeDate::getInstance()->nowDb()."', ".
299                               "modified_user_id = '{$current_user->id}' ";
300                 $q_tables   = " {$object->table_name} ";
301                 $q_where  = "where {$object->table_name}.deleted=0 and {$object->table_name}.assigned_user_id = '{$_POST['fromuser']}' ";
302
303                 // Process conditions based on metadata
304                 if(isset($moduleFilters[$p_module]['fields']) && is_array($moduleFilters[$p_module]['fields'])){
305                         $custom_added = false;
306                         foreach($moduleFilters[$p_module]['fields'] as $meta){
307                                 if(!empty($_POST[$meta['name']]))
308                                         $_SESSION['reassignRecords']['filters'][$meta['name']] = $_POST[$meta['name']];
309                                 $is_custom = isset($meta['custom_table']) && $meta['custom_table'] == true;
310                                 if($is_custom && !$custom_added){
311                                         $q_tables .= "inner join {$object->table_name}_cstm on {$object->table_name}.id = {$object->table_name}_cstm.id_c ";
312                                         $custom_added = true;
313                                 }
314                                 $addcstm = ($is_custom ? "_cstm" : "");
315                                 switch($meta['type']){
316                                         case "text":
317                                         case "select":
318                                                 $q_where .= " and {$object->table_name}{$addcstm}.{$meta['dbname']} = '{$_POST[$meta['name']]}' ";
319                                                 break;
320                                         case "multiselect":
321                                                 if(empty($_POST[$meta['name']])){
322                                                         continue;
323                                                 }
324                                                 $in_string = "";
325                                                 $empty_check = "";
326                                                 foreach($_POST[$meta['name']] as $onevalue){
327                                                         if(empty($onevalue))
328                                                                 $empty_check .= " OR {$object->table_name}{$addcstm}.{$meta['dbname']} is null ";
329                                                         $in_string .= "'$onevalue', ";
330                                                 }
331                                                 $in_string = substr($in_string, 0, count($in_string) - 3);
332                                                 $q_where .= " and ({$object->table_name}{$addcstm}.{$meta['dbname']} in ($in_string) $empty_check)";
333                                                 break;
334                                         default:
335                                                 //echo "Skipping field {$meta['name']} since the type is not supported<BR>";
336                                                 continue;
337                                                 break;
338                                 }
339                         }
340                 }
341                 $query = "$q_select from $q_tables $q_where";
342                 $countquery = "select count(*) AS count from $q_tables $q_where";
343                 $updatequery = "$q_update $q_tables $q_set $q_where";
344
345                 $_SESSION['reassignRecords']['fromuser'] = $_POST['fromuser'];
346                 $_SESSION['reassignRecords']['touser'] = $_POST['touser'];
347                 $_SESSION['reassignRecords']['fromusername'] = $fromusername;
348                 $_SESSION['reassignRecords']['tousername'] = $tousername;
349                 $_SESSION['reassignRecords']['modules'][$module]['query'] = $query;
350                 $_SESSION['reassignRecords']['modules'][$module]['update'] = $updatequery;
351
352                 $res = $GLOBALS['db']->query($countquery);
353                 $row = $GLOBALS['db']->fetchByAssoc($res);
354
355                 echo "{$row['count']} {$mod_strings_users['LBL_REASS_RECORDS_FROM']} {$app_list_strings['moduleList'][$p_module]} {$mod_strings_users['LBL_REASS_WILL_BE_UPDATED']}\n<BR>\n";
356                 echo "<input type=checkbox name={$module}_workflow> {$mod_strings_users['LBL_REASS_WORK_NOTIF_AUDIT']}<BR>\n";
357                 echo "</td></tr></table>\n";
358         }
359
360         echo "<BR><input type=button class=\"button\" value=\"{$mod_strings_users['LBL_REASS_BUTTON_GO_BACK']}\" onclick='document.location=\"index.php?module=Users&action=reassignUserRecords\"'>\n";
361         echo "&nbsp;<input type=submit class=\"button\" value=\"{$mod_strings_users['LBL_REASS_BUTTON_CONTINUE']}\">\n";
362         echo "&nbsp;<input type=button class=\"button\" value=\"{$mod_strings_users['LBL_REASS_BUTTON_RESTART']}\" onclick='document.location=\"index.php?module=Users&action=reassignUserRecords&clear=true\"'>\n";
363
364         echo "</form>\n";
365
366         // debug
367         //print_r($_SESSION['reassignRecords']);
368 ///////////////////// END STEP 2 - Confirm Selections /////////////////////////
369 }
370 /////////////////// BEGIN STEP 3 - Execute reassignment ///////////////////////
371 else if(isset($_GET['execute']) && $_GET['execute'] == true){
372         $fromuser = $_SESSION['reassignRecords']['fromuser'];
373         $touser = $_SESSION['reassignRecords']['touser'];
374         $fromusername = $_SESSION['reassignRecords']['fromusername'];
375         $tousername = $_SESSION['reassignRecords']['tousername'];
376
377         $beanListFlip = array_flip($_SESSION['reassignRecords']['assignedModuleListCache']);
378
379         foreach($_SESSION['reassignRecords']['modules'] as $module => $queries){
380                 $p_module = $beanListFlip[$module];
381                 $workflow = false;
382                 if(isset($_POST[$module."_workflow"]) && $_POST[$module."_workflow"] = "on")
383                         $workflow = true;
384
385                 $query = $workflow ? $queries['query'] : $queries['update'];
386
387                 echo "<h5>{$mod_strings_users['LBL_PROCESSING']} {$app_list_strings['moduleList'][$p_module]}</h5>";
388
389                 $res = $GLOBALS['db']->query($query, true);
390
391                 //echo "<i>Workflow and Notifications <b>".($workflow ? "enabled" : "disabled")."</b> for this module record reassignment</i>\n<BR>\n";
392                 echo "<table border='0' cellspacing='0' cellpadding='0'  class='detail view'>\n";
393                 echo "<tr>\n";
394                 echo "<td>\n";
395                 if(! $workflow){
396                         $affected_rows = $GLOBALS['db']->getAffectedRowCount($res);
397                         echo "{$mod_strings_users['LBL_UPDATE_FINISH']}: $affected_rows {$mod_strings_users['LBL_AFFECTED']}<BR>\n";
398                 }
399                 else{
400                         $successarr = array();
401                         $failarr = array();
402
403                         require_once($beanFiles[$module]);
404                         while($row = $GLOBALS['db']->fetchByAssoc($res)){
405                                 $bean = new $module();
406                                 if(empty($row['id'])){
407                                         continue;
408                                 }
409                                 $bean->retrieve($row['id']);
410
411                                 // So that we don't create new blank records.
412                                 if(!isset($bean->id)){
413                                         continue;
414                                 }
415                                 $bean->assigned_user_id = $touser;
416
417                                 if($bean->save()){
418                                         $linkname = "record with id {$bean->id}";
419                                         if(!empty($bean->name)){
420                                                 $linkname = $bean->name;
421                                         }
422                                         else if(!empty($bean->last_name)){
423                                                 $linkname = $locale->getLocaleFormattedName($bean->first_name, $bean->last_name);
424                                         }
425                                         else if(!empty($bean->document_name)){
426                                                 $linkname = $bean->document_name;
427                                         }
428                                         $successstr = "{$mod_strings_users['LBL_REASS_SUCCESS_ASSIGN']} {$bean->object_name} \"<i><a href=\"index.php?module={$bean->module_dir}&action=DetailView&record={$bean->id}\">$linkname</a></i>\" {$mod_strings_users['LBL_REASS_FROM']} $fromusername {$mod_strings_users['LBL_REASS_TO']} $tousername";
429                                         $successarr[] = $successstr;
430                                 }
431                                 else{
432                                         $failarr[] = "{$mod_strings_users['LBL_REASS_FAILED_SAVE']} \"<i><a href=\"index.php?module={$bean->module_dir}&action=DetailView&record={$bean->id}\">$linkname</a></i>\".";
433                                 }
434                         }
435
436                         if(isset($_POST['verbose']) && $_POST['verbose'] == "on"){
437                                 echo "<h5>{$mod_strings_users['LBL_REASS_THE_FOLLOWING']} {$app_list_strings['moduleList'][$p_module]} {$mod_strings_users['LBL_REASS_HAVE_BEEN_UPDATED']}</h5>\n";
438                                 foreach($successarr as $ord){
439                                         echo "$ord\n<BR>\n";
440                                 }
441                                 if(empty($successarr))
442                                         echo "{$mod_strings_users['LBL_REASS_NONE']}\n<BR>\n";
443
444                                 echo "<h5>{$mod_strings_users['LBL_REASS_THE_FOLLOWING']} {$app_list_strings['moduleList'][$p_module]} {$mod_strings_users['LBL_REASS_CANNOT_PROCESS']}</h5>\n";
445                                 foreach($failarr as $failure){
446                                         echo $failure."\n<BR>\n";
447                                 }
448                                 if(empty($failarr))
449                                         echo "{$mod_strings_users['LBL_REASS_NONE']}\n<BR>\n";
450                         }
451                         else{
452                                 echo "{$mod_strings_users['LBL_REASS_UPDATE_COMPLETE']}\n<BR>\n";
453                                 echo "&nbsp;&nbsp;".count($successarr)." {$mod_strings_users['LBL_REASS_SUCCESSFUL']}\n<BR>\n";
454                                 echo "&nbsp;&nbsp;".count($failarr)." {$mod_strings_users['LBL_REASS_FAILED']}\n";
455                         }
456                         echo "<BR>\n";
457                 }
458                 echo "</td></tr></table>\n";
459         }
460
461         echo "<BR><input type=button class=\"button\" value=\"{$mod_strings_users['LBL_REASS_BUTTON_RETURN']}\" onclick='document.location=\"index.php?module=Users&action=reassignUserRecords\"'>\n";
462
463 /////////////////// END STEP 3 - Execute reassignment ///////////////////////
464 }
465 ?>
466 <script type="text/javascript">
467
468 function clearCurrentRecords()
469 {
470     var callback = {
471                 success: function(){
472                     document.getElementById('fromuser').selectedIndex = 0;
473                     document.getElementById('touser').selectedIndex = 0;
474                     document.getElementById('modulemultiselect').selectedIndex = -1;
475                     updateDivDisplay(document.getElementById('modulemultiselect'));
476                 }
477             };
478
479     YAHOO.util.Connect.asyncRequest('POST', 'index.php?module=Users&action=clearreassignrecords&to_pdf=1', callback, null);
480 }
481
482 var allselected = [];
483 function updateDivDisplay(multiSelectObj){
484     for(var i = 0; i < multiSelectObj.options.length; i++){
485         if(multiSelectObj.options[i].selected != allselected[i]){
486             allselected[i] = multiSelectObj.options[i].selected;
487
488             if(allselected[i]){
489                 theElement = document.getElementById('reassign_'+multiSelectObj.options[i].value);
490                 if(theElement != null){
491                     theElement.style.display = 'block';
492                 }
493             }
494             else{
495                 theElement = document.getElementById('reassign_'+multiSelectObj.options[i].value);
496                 if(theElement != null){
497                     theElement.style.display = 'none';
498                 }
499             }
500         }
501     }
502 }
503 <?php
504 if(!isset($_POST['fromuser']) && !isset($_GET['execute'])){
505 ?>
506 updateDivDisplay(document.getElementById('modulemultiselect'));
507 <?php
508 }
509 ?>
510 </script>