X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/52ec6b73aae5937cd9c04e150e6b261b8be98b01..f058984ad70f86039f58f8c9a70617fb1c3522a0:/lib/SAMURAI/Sistema.php diff --git a/lib/SAMURAI/Sistema.php b/lib/SAMURAI/Sistema.php index 14f3d7b..1b0b90a 100644 --- a/lib/SAMURAI/Sistema.php +++ b/lib/SAMURAI/Sistema.php @@ -603,7 +603,7 @@ class SAMURAI_Sistema { 'responsable' => $this->getResponsable(), 'estado' => 1 ); - $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_INSERT); if (PEAR::isError($res)) { return $res; @@ -632,7 +632,7 @@ class SAMURAI_Sistema { $datos = array( 'responsable' => $responsable, 'estado' => 0 ); - $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); + $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); if (PEAR::isError($res)) { return $res; } @@ -668,7 +668,7 @@ class SAMURAI_Sistema { 'contacto' => $this->getContacto(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); + $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); if (PEAR::isError($res)) { return $res; } @@ -698,7 +698,7 @@ class SAMURAI_Sistema { function _grabarPermisosDb($idSistema) // ~X2C { $datos = array ('id_permiso','id_sistema','responsable'); - $re = $this->_db->autoPrepare('perm_sist', $datos, DB_AUTOQUERY_INSERT); + $re = $this->_db->autoPrepare('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT); if (isset($this->_permisos)) { foreach ($this->_permisos as $permiso) { $datos = array ($permiso, $idSistema, $this->getResponsable()); @@ -766,7 +766,7 @@ class SAMURAI_Sistema { 'observaciones' => $observacion, 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perm_sist', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT); //Recargo los datos del sistema $this->_obtenerDatosDb(); return null; @@ -882,7 +882,7 @@ class SAMURAI_Sistema { 'observaciones' => $observacion, 'responsable' => $this->getResponsable(), ); - $this->_db->autoExecute('perm_sist', + $this->_db->autoExecute('samurai.perm_sist', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$this->getId().' AND id_permiso = '.$idPermiso.' AND observaciones =\''.$obs_ant.'\''); @@ -993,4 +993,4 @@ class SAMURAI_Sistema { } // -X2C Class :SAMURAI_Sistema -?> \ No newline at end of file +?>