Errores solucionados

This commit is contained in:
Juan Ferrer Toribio 2015-08-27 18:47:22 +02:00
parent 9309cb51b3
commit 929eb0972b
3 changed files with 4 additions and 8 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.205-1) stable; urgency=low
hedera-web (1.207-1) stable; urgency=low
* Initial Release.

View File

@ -32,10 +32,6 @@
{
background-color: #FCC;
}
.basket .icon
{
width: 8em;
}
.basket .icon > img
{
border-radius: 50%;

View File

@ -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;
<sql-batch property="batch" id="batch">
<item name="filter" object="filter"/>
</sql-batch>