From 929eb0972bef1d16faf93064ab20bf6602321d1c Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Thu, 27 Aug 2015 18:47:22 +0200 Subject: [PATCH] Errores solucionados --- debian/changelog | 2 +- web/forms/ecomerce/basket/style.css | 4 ---- web/forms/ecomerce/catalog/ui.xml | 6 +++--- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9081966f..9d56e766 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -hedera-web (1.205-1) stable; urgency=low +hedera-web (1.207-1) stable; urgency=low * Initial Release. diff --git a/web/forms/ecomerce/basket/style.css b/web/forms/ecomerce/basket/style.css index 8d29e153..b78411a2 100755 --- a/web/forms/ecomerce/basket/style.css +++ b/web/forms/ecomerce/basket/style.css @@ -32,10 +32,6 @@ { background-color: #FCC; } -.basket .icon -{ - width: 8em; -} .basket .icon > img { border-radius: 50%; diff --git a/web/forms/ecomerce/catalog/ui.xml b/web/forms/ecomerce/catalog/ui.xml index c9e10ad7..6fce9b7c 100755 --- a/web/forms/ecomerce/catalog/ui.xml +++ b/web/forms/ecomerce/catalog/ui.xml @@ -27,8 +27,7 @@ (INDEX (item_id)) ENGINE=MEMORY SELECT Id_Article item_id FROM vn2008.Articles - WHERE #filter - LIMIT 400; + WHERE #filter; CALL bionic_calc (); SELECT t.item_id, t.available, t.price, a.Foto, a.Article, a.Categoria, a.Medida, a.Tallos, a.Color, o.Abreviatura @@ -36,7 +35,8 @@ JOIN vn2008.Articles a ON a.Id_Article = t.item_id LEFT JOIN vn2008.Origen o ON a.id_origen = o.id WHERE t.available > 0 - ORDER BY a.Article, a.Medida; + ORDER BY a.Article, a.Medida + LIMIT 400;