X-Git-Url: https://git.llucax.com/mecon/yatta.git/blobdiff_plain/8d2616c309cde3dfbcf843ba66e0162f8d108920..2e8265a456b821c853d6af40ebb1f8311a4a384d:/lib/YATTA/ProcesoDB.php?ds=sidebyside diff --git a/lib/YATTA/ProcesoDB.php b/lib/YATTA/ProcesoDB.php index aeb9d32..3f7b51a 100644 --- a/lib/YATTA/ProcesoDB.php +++ b/lib/YATTA/ProcesoDB.php @@ -188,6 +188,14 @@ class YATTA_ProcesoDB extends MECON_DBO { * @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. @@ -228,6 +236,7 @@ class YATTA_ProcesoDB extends MECON_DBO { $this->archivo = $res['archivo']; $this->nota = $res['nota']; $this->icono = $res['icono']; + $this->activo = $res['activo']; return true; } return false; @@ -243,7 +252,25 @@ class YATTA_ProcesoDB extends MECON_DBO { */ 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.'); + } } /** @@ -322,6 +349,9 @@ class YATTA_ProcesoDB extends MECON_DBO { 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 @@ -368,7 +398,7 @@ class YATTA_ProcesoDB extends MECON_DBO { ")". ")". ")". - ") AS icono + ") AS icono, p.activo AS activo FROM yatta.procesos AS p, samurai.sistema AS s $where $orden"); @@ -385,6 +415,9 @@ class YATTA_ProcesoDB extends MECON_DBO { */ function guardar($db = null, $nuevo = true) { + return $db->query ('UPDATE yatta.procesos SET nota = \''.$this->nota. + '\', status = '.$this->status. + ' WHERE id = '. $this->id); } /** @@ -412,6 +445,7 @@ class YATTA_ProcesoDB extends MECON_DBO { $this->archivo = null; $this->nota = null; $this->icono = null; + $this->activo = null; } /** @@ -431,6 +465,7 @@ class YATTA_ProcesoDB extends MECON_DBO { 'scheduling' => $this->scheduling, 'notificar' => $this->notificar, 'resultado' => $this->resultado, + 'activo' => $this->activo, ); } }