]> git.llucax.com Git - mecon/yatta.git/blobdiff - lib/YATTA/Archivo.php
Modificacion para que se haga mas ejecute mas rapido el script.
[mecon/yatta.git] / lib / YATTA / Archivo.php
index e2189ceeb566247421efd747a4eb802678026ae5..36c0892551ce6fa2d1de585f98450c02ce53fc6d 100644 (file)
@@ -27,7 +27,7 @@ $Id$
 require_once 'MECON/DBO.php';
 require_once 'PEAR.php';
 
-define ('PATH_TACHO', '/var/www/yatta/tacho/');
+define ('PATH_TACHO', '/var/www/sistemas/yatta/tacho/');
 
 /**
  * Clase para el manejo de los archivos.
@@ -149,7 +149,7 @@ class YATTA_Archivo extends MECON_DBO {
              trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
         }
         //Borro el archivo del tacho
-        if (!unlink($this->archivo)) {
+        if (!unlink(PATH_TACHO.basename($this->archivo))) {
             return new PEAR_Error('No se pudo borrar el archivo del tacho.');
         }
     }
@@ -187,9 +187,9 @@ class YATTA_Archivo extends MECON_DBO {
             $where[] = 'p.resultado LIKE '. $db->quote("%$this->resultado%");
         }
         if (!is_null($this->usuario)) {
-            $where[] = ' (p.owner LIKE '. $db->quote("$this->usuario");
+            $where[] = ' p.owner LIKE '. $db->quote("$this->usuario");
             if ($destinos) {
-                $where[] = 'p.destinos LIKE '. $db->quote("%$this->usuario%"); 
+                $where[] = ' p.destinos LIKE '. $db->quote("%$this->usuario%"); 
             }
         }
         if (!is_null($this->archivo)) {
@@ -197,8 +197,8 @@ class YATTA_Archivo extends MECON_DBO {
         }
         if ($where) {
             $where = 'WHERE p.status = 2 AND p.resultado is not null '.
-                'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
-                        ", $where).') ';
+                'AND p.id_sistema = s.id_sistema AND ('. join ("$operador "
+                        , $where).') ';
         } 
         else {
             $where = 'WHERE p.id_sistema = s.id_sistema ';