forked from verdnatura/hedera-web
Solucionado error al modificar nombre de fotos
This commit is contained in:
parent
4fb4c9e430
commit
390050bb56
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.221-deb8) stable; urgency=low
|
||||
hedera-web (1.222-deb8) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -38,6 +38,8 @@ Vn.Catalog = new Class
|
|||
|
||||
this.popup = new Htk.Popup ();
|
||||
this.popup.setChildNode (this.$('lots-popup'));
|
||||
|
||||
this.$('items-model').setInfo ('a', 'Articles', 'vn2008', ['Id_Article']);
|
||||
}
|
||||
|
||||
,typeRenderer: function (builder, form)
|
||||
|
|
|
@ -22,14 +22,14 @@
|
|||
FROM basket_item
|
||||
GROUP BY warehouse_id
|
||||
</db-query>
|
||||
<db-model result-index="2" id="items-model">
|
||||
<db-model result-index="2" id="items-model" updatable="true">
|
||||
CREATE TEMPORARY TABLE tmp.bionic_calc
|
||||
(INDEX (item_id))
|
||||
ENGINE=MEMORY
|
||||
SELECT Id_Article item_id FROM vn2008.Articles
|
||||
WHERE #filter;
|
||||
CALL bionic_calc ();
|
||||
SELECT t.item_id, t.available, t.price, p.producer,
|
||||
SELECT a.Id_Article, t.available, t.price, p.producer,
|
||||
a.Foto, a.Article, a.Categoria, a.Medida, a.Tallos, a.Color, o.Abreviatura
|
||||
FROM tmp.bionic_item t
|
||||
JOIN vn2008.Articles a ON a.Id_Article = t.item_id
|
||||
|
|
Loading…
Reference in New Issue