]> git.llucax.com Git - mecon/samurai.git/blobdiff - lib/SAMURAI/Usuario.php
Finalizada las consultas de los sistemas. Se puede ver la informacion y reactivar...
[mecon/samurai.git] / lib / SAMURAI / Usuario.php
index 86cc24a639f8bf17c3458851a2692a43948c2403..91ce6c50a102ffb6ca19f37fa093cda509bd1ee8 100644 (file)
 // $Rev$
 //
 
 // $Rev$
 //
 
-/** \page page_
-
-\section PRUEBA PRUEBA
-hola esto es una prueba
-
- */
-
-
 require_once 'PEAR.php';
 require_once 'Perfil.php';
 require_once 'MECON/Usuario.php';
 require_once 'PEAR.php';
 require_once 'Perfil.php';
 require_once 'MECON/Usuario.php';
@@ -40,6 +32,7 @@ require_once 'MECON/Usuario.php';
 // +X2C Class 207 :SAMURAI_Usuario
 /**
  * Clase para el manejo de los usuarios.
 // +X2C Class 207 :SAMURAI_Usuario
 /**
  * Clase para el manejo de los usuarios.
+@see \ref page_samurai_html_usuario
  *
  * @access public
  */
  *
  * @access public
  */
@@ -85,6 +78,8 @@ class SAMURAI_Usuario {
     var $_perfiles;
 
     /**
     var $_perfiles;
 
     /**
+     * Identificador del sistema en el cual se esta trabajando.
+     *
      * @var    int $idSistema
      * @access protected
      */
      * @var    int $idSistema
      * @access protected
      */
@@ -199,11 +194,11 @@ class SAMURAI_Usuario {
     {
         $this->_db = $db; 
         $this->setLogin($login);
     {
         $this->_db = $db; 
         $this->setLogin($login);
+        $this->_idSistema = $idSistema;
         if (!is_null($login)) {
             $tmp =& new MECON_Usuario(null, $login);
             $this->setNrodoc($tmp->getDni());
             $this->setNombre($tmp->getNombre());
         if (!is_null($login)) {
             $tmp =& new MECON_Usuario(null, $login);
             $this->setNrodoc($tmp->getDni());
             $this->setNombre($tmp->getNombre());
-            $this->_idSistema = $idSistema;
             $this->_obtenerDatosDb();
         }
     }
             $this->_obtenerDatosDb();
         }
     }
@@ -352,7 +347,7 @@ class SAMURAI_Usuario {
     function _grabarDb() // ~X2C
     {   
         $datos = array ('login', 'id_perfil', 'id_sistema', 'responsable');
     function _grabarDb() // ~X2C
     {   
         $datos = array ('login', 'id_perfil', 'id_sistema', 'responsable');
-        $re = $this->_db->autoPrepare('perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT);
+        $re = $this->_db->autoPrepare('samurai.perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT);
         foreach ($this->getPerfiles() as $perfil) {
             $datos = array ($this->getLogin(),
                             $perfil,
         foreach ($this->getPerfiles() as $perfil) {
             $datos = array ($this->getLogin(),
                             $perfil,
@@ -492,4 +487,4 @@ class SAMURAI_Usuario {
     // -X2C
 
 } // -X2C Class :SAMURAI_Usuario
     // -X2C
 
 } // -X2C Class :SAMURAI_Usuario
-?>
+?>
\ No newline at end of file