* @access public
*/
var $icono = null;
+
+ /**
+ * Indica si el proceso esta activo (No fue borrado por el usuario).
+ *
+ * @var int $activo
+ * @access public
+ */
+ var $activo = null;
/**
* Carga el objeto con los datos que se pasan por parametro.
$this->archivo = $res['archivo'];
$this->nota = $res['nota'];
$this->icono = $res['icono'];
+ $this->activo = $res['activo'];
return true;
}
return false;
*/
function borrar($db = null)
{
- trigger_error('Not implemented!', E_USER_WARNING);
+ if (!is_null($this->id)) {
+ $res = $this->buscar($db);
+ if (DB::isError($res)) {
+ return $res;
+ }
+ $this->cargar($res);
+
+ if (is_null($this->archivo) || is_null($this->resultado)) {
+ return $db->query('DELETE FROM yatta.procesos WHERE id = '.
+ $this->id);
+ }
+ else {
+ return $db->query ('UPDATE yatta.procesos SET activo = 0'.
+ ' WHERE id = '. $this->id);
+ }
+ }
+ else {
+ return new PEAR_Error('Debe definirse el id del proceso a borrar.');
+ }
}
/**
if (!is_null($this->nota)) {
$where[] = 'p.nota LIKE '. $db->quote("%$this->nota%");
}
+ if (!is_null($this->activo)) {
+ $where[] = 'p.activo = '. $this->activo;
+ }
if ($where) {
$where = 'WHERE p.owner = '. $db->quote("$this->owner").
'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
")".
")".
")".
- ") AS icono
+ ") AS icono, p.activo AS activo
FROM yatta.procesos AS p, samurai.sistema AS s
$where
$orden");
$this->archivo = null;
$this->nota = null;
$this->icono = null;
+ $this->activo = null;
}
/**
'scheduling' => $this->scheduling,
'notificar' => $this->notificar,
'resultado' => $this->resultado,
+ 'activo' => $this->activo,
);
}
}