diff --git a/debian/changelog b/debian/changelog
index e3f0808b..2ed711f1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-hedera-web (1.406.67) stable; urgency=low
+hedera-web (1.406.68) stable; urgency=low
* Initial Release.
diff --git a/forms/ecomerce/catalog/style.css b/forms/ecomerce/catalog/style.css
index 0f8307f3..940a4f82 100644
--- a/forms/ecomerce/catalog/style.css
+++ b/forms/ecomerce/catalog/style.css
@@ -410,6 +410,12 @@
max-width: initial;
width: 3em;
}
+.item-card .lots-grid .price-kg
+{
+ font-size: .8em;
+ color: #999;
+ width: 1px;
+}
.item-card .lots-grid .cell-text
{
max-width: initial;
diff --git a/forms/ecomerce/catalog/ui.xml b/forms/ecomerce/catalog/ui.xml
index b8968364..86bad9ed 100644
--- a/forms/ecomerce/catalog/ui.xml
+++ b/forms/ecomerce/catalog/ui.xml
@@ -441,14 +441,16 @@
on-status-changed-after="onCardLoad"
batch="card-batch">
CALL myBasket_calcCatalogFromItem(#item);
- SELECT l.warehouseFk, w.name warehouse, p.`grouping`, p.price, p.rate, l.available
+ SELECT l.warehouseFk, w.name warehouse, p.`grouping`,
+ p.price, p.priceKg, p.rate, l.available
FROM tmp.ticketLot l
JOIN tmp.ticketComponentPrice p ON p.warehouseFk = l.warehouseFk
JOIN vn.warehouse w ON w.id = p.warehouseFk
ORDER BY warehouseFk, `grouping`;
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/package.json b/package.json
index 9a57f670..c3b8b8e7 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "hedera-web",
- "version": "1.406.67",
+ "version": "1.406.68",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {