0
1
Fork 0

Solucionado error al modificar nombre de fotos

This commit is contained in:
Juan Ferrer Toribio 2015-09-28 16:23:35 +02:00
parent 4fb4c9e430
commit 390050bb56
3 changed files with 5 additions and 3 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.221-deb8) stable; urgency=low
hedera-web (1.222-deb8) stable; urgency=low
* Initial Release.

View File

@ -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)

View File

@ -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