Errores solucionados
This commit is contained in:
parent
9309cb51b3
commit
929eb0972b
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.205-1) stable; urgency=low
|
||||
hedera-web (1.207-1) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -32,10 +32,6 @@
|
|||
{
|
||||
background-color: #FCC;
|
||||
}
|
||||
.basket .icon
|
||||
{
|
||||
width: 8em;
|
||||
}
|
||||
.basket .icon > img
|
||||
{
|
||||
border-radius: 50%;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue