From dcbb38174d2cdcd0eae45c7ceebf21206d1b28ad Mon Sep 17 00:00:00 2001 From: Matthias Lodner Date: Wed, 25 Feb 2026 19:52:07 +0100 Subject: [PATCH] Updated bartender html settings and sql. --- bartender/README.md | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/bartender/README.md b/bartender/README.md index 6562cd0..dcc6384 100644 --- a/bartender/README.md +++ b/bartender/README.md @@ -16,6 +16,7 @@ SELECT a.name AS product, CONCAT(a.topm_id, v.topm_row) AS aritcle_number, COALESCE(v.name, a.name) AS name, + COALESCE(a.additional_name, COALESCE(v.name, a.name)) AS sigel_name, CONCAT(CONCAT(v.weight, ' '), u.display) AS weight, a.bio AS bio, v.ean AS ean, @@ -35,7 +36,7 @@ SELECT ELSE 'ERROR' END ), 'Landwirtschaft' - ) AS "bio", + ) AS "bio_text", COALESCE(a.mhd, s.mhd) AS mhd, COALESCE(a.allergens_text, s.allergens_text) AS "allergens info" FROM article AS a @@ -53,38 +54,38 @@ ORDER BY a.name, v.weight ASC ##### Product title ```html -

-

+
+
``` ##### Product title Siegel ```html -

-

+
+
``` ##### Description ```html -

-

+
+
``` ##### Ingredients ```html -

-

+
+
``` ##### Allergens info ```html -

-

+
+
``` ##### BIO text ```html -

-

+
+
``` ---