BUG 9626 Simple Reports Permissions SOLVED

- According to the specifications.
- Was add the list for add/remove permissions.
This commit is contained in:
Marco Antonio Nina
2012-09-07 16:15:56 -04:00
parent 820deb7d7a
commit 06b44cd6d5
2 changed files with 64 additions and 30 deletions

View File

@@ -169,10 +169,27 @@ class pmTables extends Controller
break;
}
}
return $repTabPluginPermissions;
}
/**
* reportPermissionForm pmtable
* @param string $httpData->ADD_TAB_UID
* @param string $httpData->ADD_TAB_NAME
*/
public function rptPermissionList($httpData)
{
$this->setJSVar('ADD_TAB_NAME', $httpData->ADD_TAB_NAME);
$this->setJSVar('ADD_TAB_UID', $httpData->ADD_TAB_UID);
$this->setJSVar('PRO_UID', $httpData->PRO_UID);
$this->includeExtJS('pmReports/rptPermissionList', false);
$this->includeExtJS('pmReports/reportPermissionForm', false);
$this->setView('pmReports/reportPermissionForm');
$this->setView('pmReports/rptPermissionList');
G::RenderPage('publish', 'extJs');
}
}