X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/52ec6b73aae5937cd9c04e150e6b261b8be98b01..bcca0c17730ae290fdbdfe15f506354c1acd6c07:/lib/SAMURAI/Perfil.php diff --git a/lib/SAMURAI/Perfil.php b/lib/SAMURAI/Perfil.php index 9d32a5c..1a0e202 100644 --- a/lib/SAMURAI/Perfil.php +++ b/lib/SAMURAI/Perfil.php @@ -29,6 +29,7 @@ // +X2C Class 208 :SAMURAI_Perfil /** * Clase para el manejo de los perfies. +@see \ref page_samurai_html_perfil * * @access public */ @@ -342,7 +343,7 @@ class SAMURAI_Perfil { 'desc_perfil' => $this->getDescripcion(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perfil', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.perfil', $datos, DB_AUTOQUERY_INSERT); if (PEAR::isError($res)) { return $res; } @@ -353,7 +354,7 @@ class SAMURAI_Perfil { 'tipo_perfil' => $this->getTipo(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perfil_sist', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.perfil_sist', $datos, DB_AUTOQUERY_INSERT); } // -X2C @@ -421,7 +422,7 @@ class SAMURAI_Perfil { 'tipo_perfil' => $this->getTipo(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perfil_sist', $datos, + $res = $this->_db->autoExecute('samurai.perfil_sist', $datos, DB_AUTOQUERY_UPDATE, 'id_perfil ='.$this->getId().' AND id_sistema='.$this->_idSistema); if (PEAR::isError($res)) { @@ -606,7 +607,7 @@ class SAMURAI_Perfil { //GRABO EN PERM_PERFIL_SIST $datos = array ('id_permiso', 'id_perfil', 'id_sistema', 'observaciones', 'responsable'); - $re = $this->_db->autoPrepare('perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT); + $re = $this->_db->autoPrepare('samurai.perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT); foreach ($this->getPermisos() as $permiso) { list($id, $obs) = split ('##',$permiso); $datos = array ($id, $this->getId(), $this->_idSistema, $obs, $this->getResponsable()); @@ -670,4 +671,4 @@ class SAMURAI_Perfil { } // -X2C Class :SAMURAI_Perfil -?> +?> \ No newline at end of file