]> git.llucax.com Git - mecon/ai.git/commitdiff
Se mejora un poco el orden por longitud de hijos.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 8 Oct 2003 21:58:34 +0000 (21:58 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 8 Oct 2003 21:58:34 +0000 (21:58 +0000)
lib/AI/Servicio.php

index 9fb5e8ce668c2b5756a63c67785b2baf206112f9..d6277cfdaf3a70206673e66f4f88dc86bd919848 100644 (file)
@@ -190,7 +190,10 @@ class AI_Servicio extends AI_DBTreeObject {
                 $id = intval($this->$id_field);
                 if ($orden === AI_SERVICIO_ORDEN_LONG_HIJOS) {
                     $query = "
-                        SELECT A.*, SUM(CEIL(LENGTH(B.nombre) / 22)) as RENGLONES
+                        SELECT
+                            A.*,
+                            count(1) as COUNT,
+                            SUM(CEIL(LENGTH(B.nombre) / 22)) as RENGLONES
                         FROM {$this->conf['base']}.{$this->conf['tabla']} AS A,
                              {$this->conf['base']}.{$this->conf['tabla']} AS B
                         WHERE A.$id_field = B.$id_padre
@@ -198,7 +201,9 @@ class AI_Servicio extends AI_DBTreeObject {
                     if ($soloHabilitados) {
                         $query .= " AND A.{$this->conf['habilitado']} = 1";
                     }
-                    $query .= " GROUP BY A.$id_field ORDER BY RENGLONES DESC";
+                    $query .= "
+                        GROUP BY A.$id_field
+                        ORDER BY RENGLONES DESC, COUNT DESC";
                 } elseif ($orden === AI_SERVICIO_ORDEN_LONG_NOMBRE) {
                     $query = "
                         SELECT *