if (isset($re['fecha_implementacion'])) {
$this->setFechaImplementacion($re['fecha_implementacion']);
}
if (isset($re['fecha_implementacion'])) {
$this->setFechaImplementacion($re['fecha_implementacion']);
}
'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
'contacto' => $this->getContacto(),
'responsable' => $this->getResponsable(),
'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
'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);
'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
'contacto' => $this->getContacto(),
'responsable' => $this->getResponsable(),
'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
'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);
function _grabarPermisosDb($idSistema) // ~X2C
{
$datos = array ('id_permiso','id_sistema','responsable');
function _grabarPermisosDb($idSistema) // ~X2C
{
$datos = array ('id_permiso','id_sistema','responsable');
if (isset($this->_permisos)) {
foreach ($this->_permisos as $permiso) {
$datos = array ($permiso, $idSistema, $this->getResponsable());
if (isset($this->_permisos)) {
foreach ($this->_permisos as $permiso) {
$datos = array ($permiso, $idSistema, $this->getResponsable());
'observaciones' => $observacion,
'responsable' => $this->getResponsable(),
);
'observaciones' => $observacion,
'responsable' => $this->getResponsable(),
);
'observaciones' => $observacion,
'responsable' => $this->getResponsable(),
);
'observaciones' => $observacion,
'responsable' => $this->getResponsable(),
);
* Devuleve un array con los identificadores de todos los sistemas.
*
* @param SAMURAI_DB &$db Base de Datos
* Devuleve un array con los identificadores de todos los sistemas.
*
* @param SAMURAI_DB &$db Base de Datos
{
//OBTENGO LOS ID DE LA BASE
$rta = array();
$sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
{
//OBTENGO LOS ID DE LA BASE
$rta = array();
$sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
- $dbh = $db->prepare($sql['obtener_datos_sistema'].$sql['obtener_datos_sistema3'].$sql['obtener_datos_sistema4']);
+ $consulta = $sql['obtener_datos_sistema'];
+ if (@$activos) {
+ $consulta.= $sql['obtener_datos_sistema3'];
+ }
+ $consulta.= $sql['obtener_datos_sistema4'];
+ $dbh = $db->prepare($consulta);
$res = $db->execute($dbh);
while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
array_push($rta,$re['id_sistema']);
$res = $db->execute($dbh);
while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
array_push($rta,$re['id_sistema']);
* Devuelve un array asociativo en donde la clave es el identificador y el valor es el nombre del sistema
*
* @param SAMURAI_DB &$db Base de Datos
* Devuelve un array asociativo en donde la clave es el identificador y el valor es el nombre del sistema
*
* @param SAMURAI_DB &$db Base de Datos