* @var int $id
* @access protected
*/
- var $_id;
+ var $_id = null;
/**
* Nombre del sistema.
* @var string $nombre
* @access protected
*/
- var $_nombre;
+ var $_nombre = null;
/**
* Descripcion del sistema.
* @var string $descripcion
* @access protected
*/
- var $_descripcion;
+ var $_descripcion = null;
/**
* Fecha en la cual se inicio el sistema.
* @var date $fecha_inicio
* @access protected
*/
- var $_fecha_inicio;
+ var $_fecha_inicio = null;
/**
* Fecha en la cual se dio por terminado el desarrollo del sistema.
* @var date $fecha_fin
* @access protected
*/
- var $_fecha_fin;
+ var $_fecha_fin = null;
/**
* Fecha de implementacion del sistema.
* @var date $fecha_implementacion
* @access protected
*/
- var $_fecha_implementacion;
+ var $_fecha_implementacion = null;
/**
* Texto con los datos del o de los contacto/s en el area usuario.
* @var string $contacto
* @access protected
*/
- var $_contacto;
+ var $_contacto = null;
/**
* Objeto Samurai_DB
* @var string $responsable
* @access protected
*/
- var $_responsable;
+ var $_responsable = null;
/**
* Array asociativo (id - descripcion) con los permisos asociados al sistema.
* @var array $permisos
* @access protected
*/
- var $_permisos;
+ var $_permisos = null;
/**
+ * Array con los permisos asociados al sistema
+ *
* @var array $asociaciones
* @access protected
*/
- var $_asociaciones;
+ var $_asociaciones = null;
+
+ /**
+ * indica si el sistema esta activo o no.
+ *
+ * @var int $estado
+ * @access protected
+ */
+ var $_estado = 1;
+
+ /**
+ * Gets Asociaciones.
+ *
+ * @return array
+ * @access public
+ */
+ function getAsociaciones()
+ {
+ return $this->_asociaciones;
+ }
+ /**
+ * Sets Asociaciones.
+ *
+ * @param array $asociaciones Asociaciones.
+ *
+ * @return void
+ * @access public
+ */
+ function setAsociaciones($asociaciones)
+ {
+ $this->_asociaciones = $asociaciones;
+ }
+
+ /**
+ * Gets Estado.
+ *
+ * @return int
+ * @access public
+ */
+ function getEstado()
+ {
+ return $this->_estado;
+ }
+ /**
+ * Sets Estado.
+ *
+ * @param int $estado Estado.
+ *
+ * @return void
+ * @access public
+ */
+ function setEstado($estado)
+ {
+ $this->_estado = $estado;
+ }
// ~X2C
if (!is_null($id)) {
$this->_obtenerDatosDb();
}
- else {
- $this->setNombre();
- $this->setDescripcion();
- $this->setFechaInicio();
- $this->setFechaFin();
- $this->setFechaImplementacion();
- $this->setContacto();
- $this->setResponsable();
- $this->setPermisos();
- }
}
// -X2C
if (isset($re['nombre_sistema'])) {
$this->setNombre($re['nombre_sistema']);
}
- else {
- $this->setNombre();
- }
if (isset($re['desc_sistema'])) {
$this->setDescripcion($re['desc_sistema']);
}
- else {
- $this->setDescripcion();
- }
if (isset($re['fecha_inicio'])) {
$this->setFechaInicio($re['fecha_inicio']);
}
- else {
- $this->setFechaInicio();
- }
if (isset($re['fecha_fin'])) {
$this->setFechaFin($re['fecha_fin']);
}
- else {
- $this->setFechaFin();
- }
if (isset($re['fecha_implementacion'])) {
$this->setFechaImplementacion($re['fecha_implementacion']);
}
- else {
- $this->setFechaImplementacion();
- }
if (isset($re['contacto'])) {
$this->setContacto($re['contacto']);
}
- else {
- $this->setContacto();
- }
if (isset($re['responsable'])) {
$this->setResponsable($re['responsable']);
}
- else {
- $this->setResponsable();
+ if (isset($re['estado'])) {
+ $this->setEstado($re['estado']);
}
}
$tmp = $sql['obtener_permisos'];
'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
'contacto' => $this->getContacto(),
'responsable' => $this->getResponsable(),
- 'estado' => 1
+ 'estado' => $this->getEstado()
);
- $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;
$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;
}
'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
'contacto' => $this->getContacto(),
'responsable' => $this->getResponsable(),
+ 'estado' => $this->getEstado()
);
- $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;
}
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());
'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;
'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.'\'');
* Devuelve el array de sistemas
*
* @param SAMURAI_DB &$db Base de Datos
+ * @param bool $activos Indica si se deben buscar solamente los sistemas activos
*
* @return array(Sistema)
* @access public
* @static
*/
- function getSistemas(&$db) // ~X2C
+ function getSistemas(&$db, $activos = true) // ~X2C
{
$rta = array ();
- foreach (SAMURAI_Sistema::_getIdSistemas($db) as $id) {
+ foreach (SAMURAI_Sistema::_getIdSistemas($db, $activos) as $id) {
$tmp = new SAMURAI_Sistema($db,$id);
array_push($rta, $tmp);
}
* Devuleve un array con los identificadores de todos los sistemas.
*
* @param SAMURAI_DB &$db Base de Datos
+ * @param bool $activos Indica si se deben buscar solamente los sistemas activos
*
* @return array(int)
* @access protected
* @static
*/
- function _getIdSistemas(&$db) // ~X2C
+ function _getIdSistemas(&$db, $activos = true) // ~X2C
{
//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']);
* 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
+ * @param bool $activos Indica si se deben buscar solamente los sistemas activos
*
* @return array()
* @access public
* @static
*/
- function getArraySistemas(&$db) // ~X2C
+ function getArraySistemas(&$db, $activos = true) // ~X2C
{
$rta = array ();
- foreach (SAMURAI_Sistema::getSistemas($db) as $sistema) {
+ foreach (SAMURAI_Sistema::getSistemas($db, $activos) as $sistema) {
$rta[$sistema->getId()] = $sistema->getNombre();
}
return $rta;
}
// -X2C
+ // +X2C Operation 397
+ /**
+ * Devuelve un array asociativo en donde la clave es el identificador y el valor es el nombre del sistema. Solo devuelve aquellos sistemas en los cuales el usuario tiene permisos.
+ *
+ * @param DB &$DB Conexion a la base de datos
+ *
+ * @return array()
+ * @access public
+ */
+ function getArraySistemasSeleccionar(&$DB) // ~X2C
+ {
+ $rta = array();
+ $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
+ //Verifico si tiene permiso developer en samurai
+ $consulta = $sql['sistemas_seleccionar2'];
+ $dbh = $DB->prepare($consulta);
+ $res = $DB->execute($dbh, array(SAMURAI_PERM, $_SESSION['usuario'],
+ SAMURAI_PERM_DEVELOPER));
+ $re = $res->fetchrow(DB_FETCHMODE_ASSOC);
+ if ($re['cuenta']) {
+ $consulta = $sql['obtener_datos_sistema'];
+ $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)) {
+ $rta[$re['id_sistema']] = $re['nombre_sistema'];
+ }
+ $res->free();
+ return $rta;
+ }
+ //Si no tiene permiso developer en samurai le muestro solo aquellos
+ //sistemas en los cuales puede trabajar
+ $consulta = $sql['sistemas_seleccionar'];
+ $dbh = $DB->prepare($consulta);
+ $res = $DB->execute($dbh, array($_SESSION['usuario']));
+ while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
+ $rta[$re['id_sistema']] = $re['nombre_sistema'];
+ }
+ $res->free();
+
+ return $rta;
+
+ }
+ // -X2C
+
} // -X2C Class :SAMURAI_Sistema
-?>
+?>
\ No newline at end of file