Files
geograsim/App/Don_t_Deploy/2026-07-11-tourismustal-glossar-sozial.sql
Adminator 20974b8b3b Tourismustal: Soziale Verantwortung (Personalhaus) + Editor-Fixes
- Personalhaus-Ausbau = Wohnqualitaet: zufriedenes Personal, freundlicher
  Service, +2/+4/+6 Gaeste-Zufriedenheit je Stufe (nur bei Beschaeftigten).
  Report-Zeile, Wissensbaustein (reale Saisonkraft-Unterkuenfte),
  BUILD_INFO + Audio neu, spezieller Ausbau-Toast. Glossar-Begriff
  soziale-verantwortung mit Bild + Modul-Zuordnung (SQL).
- Editor-Bugfix: _sprite las w/bottom aus der beim Laden eingefrorenen
  Kopie - Justierungen wirkten nicht. Jetzt live aus SPRITE_DEFS.
- Export-Button klargestellt: exportiert ALLE justierten Gebaeude auf einmal.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-11 23:48:47 +02:00

24 lines
2.0 KiB
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- ============================================================
-- Tourismustal: Glossar-Begriff "Soziale Verantwortung" (+ Zuordnung)
-- Stand: 2026-07-11 · Atlas · idempotent
-- Mechanik in der Sim: Personalhaus-Ausbau → Wohnqualität → Personal-
-- zufriedenheit → freundlicherer Service → Gäste-Zufriedenheit (Win-win).
-- ============================================================
INSERT INTO glossar (key_slug, title, short, text, short_easy, text_easy, category, sort_order, image_path) VALUES
('soziale-verantwortung', 'Soziale Verantwortung',
'Unternehmen tragen Verantwortung für ihre Beschäftigten gute Arbeits- und Wohnbedingungen zahlen sich doppelt aus.',
'Soziale Verantwortung (Corporate Social Responsibility) heißt: Ein Betrieb kümmert sich nicht nur um Gewinn, sondern auch um Menschen und Umwelt. Im Alpentourismus betrifft das besonders die Saisonarbeitskräfte real wohnen sie oft in engen, schlechten Personalunterkünften. Wer in gute Personalhäuser, faire Löhne und gutes Arbeitsklima investiert, bekommt zufriedenes, loyales Personal und Gäste spüren freundlichen Service sofort. Soziale Verantwortung ist damit kein Kostenfaktor, sondern eine Investition: ein Win-win für Beschäftigte, Gäste und Betrieb.',
'Ein Betrieb kümmert sich gut um seine Mitarbeiter:innen.',
'Soziale Verantwortung heißt: Ein Betrieb schaut auch auf seine Leute, nicht nur aufs Geld. Zum Beispiel: gute Wohnungen für das Personal. Zufriedene Mitarbeiter sind freundlich. Das freut auch die Gäste. Alle gewinnen.',
'gesellschaft', 214,
'assets/img/glossar/soziale-verantwortung.webp')
ON DUPLICATE KEY UPDATE
title=VALUES(title), short=VALUES(short), text=VALUES(text),
short_easy=VALUES(short_easy), text_easy=VALUES(text_easy),
category=VALUES(category), sort_order=VALUES(sort_order), image_path=VALUES(image_path);
INSERT INTO glossar_modules (glossar_id, module_id)
SELECT id, 'tourismustal' FROM glossar WHERE key_slug = 'soziale-verantwortung'
ON DUPLICATE KEY UPDATE module_id=VALUES(module_id);