Catalog field order fixed
gitea/hedera-web/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2020-08-13 10:21:59 +02:00
parent 13c29b641f
commit 1c6d346f51
3 changed files with 10 additions and 5 deletions

2
debian/changelog vendored
View File

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

View File

@ -60,11 +60,16 @@
JOIN vn.itemType t ON t.id = i.typeFk
WHERE #filter;
CALL myBasket_calcCatalogFull;
SELECT i.id, i.description, i.longName item,
i.subName, i.tag5, i.value5, i.tag6, i.value6, i.tag7, i.value7,
SELECT i.id, i.description, i.longName item, i.subName,
i.tag5, i.value5, i.tag6, i.value6, i.tag7, i.value7,
i.relevancy, i.size, i.category,
k.name ink, p.name producer, o.name origin,
b.available, b.price, i.image, im.updated
FROM tmp.ticketCalculateItem b
JOIN vn.item i ON i.id = b.itemFk
LEFT JOIN vn.ink k ON k.id = i.inkFk
LEFT JOIN vn.producer p ON p.id = i.producerFk
LEFT JOIN vn.origin o ON o.id = i.originFk
LEFT JOIN image im
ON im.collectionFk = 'catalog'
AND im.name = i.image
@ -346,7 +351,7 @@
<option value="D|size">
<t>Higher size</t>
</option>
<option value="A|color">
<option value="A|ink">
<t>Color</t>
</option>
<option value="A|producer">

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "1.407.24",
"version": "1.407.25",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {