Commit 674c4826 authored by Marco Schmiedel's avatar Marco Schmiedel

fix

parent 11270df4
...@@ -53,6 +53,7 @@ Deine Aufgabe ist es, beide Dokumente sorgfältig und vergleichend zu analysiere ...@@ -53,6 +53,7 @@ Deine Aufgabe ist es, beide Dokumente sorgfältig und vergleichend zu analysiere
26. **`pricing_monthly_after_period_eur_netto` (Number oder null):** Netto-Preis nach Aktionsphase = Brutto / 1.19. 26. **`pricing_monthly_after_period_eur_netto` (Number oder null):** Netto-Preis nach Aktionsphase = Brutto / 1.19.
27. **`contract_min_duration_months` (Number oder null):** Mindest-Vertragslaufzeit in Monaten. 27. **`contract_min_duration_months` (Number oder null):** Mindest-Vertragslaufzeit in Monaten.
28. **`contract_cancellation_notice_period_months` (Number oder null):** Kündigungsfrist in Monaten. 28. **`contract_cancellation_notice_period_months` (Number oder null):** Kündigungsfrist in Monaten.
29. **`hardware_subsidy_eur_brutto` (5,10,15,20 oder 0):** Höhe der Hardwaresubvention (im Tarifname steht "mit Handy 5" = 5, mit Smartphone 5 = 5, mit Smartphone 10 = 10 usw.)
Werte, die nicht zuverlässig extrahiert werden können, auf `null` setzen. Werte, die nicht zuverlässig extrahiert werden können, auf `null` setzen.
Numerische Werte als Number belassen, Netto stets auf 4 Nachkommastellen runden. Numerische Werte als Number belassen, Netto stets auf 4 Nachkommastellen runden.
...@@ -92,6 +93,7 @@ expectedKeys: List[str] = [ ...@@ -92,6 +93,7 @@ expectedKeys: List[str] = [
"pricing_monthly_after_period_eur_netto", "pricing_monthly_after_period_eur_netto",
"contract_min_duration_months", "contract_min_duration_months",
"contract_cancellation_notice_period_months", "contract_cancellation_notice_period_months",
"hardware_subsidy_eur_brutto",
] ]
......
...@@ -4,7 +4,7 @@ MYSQL_PASSWORD = "floz09sx3dTyx144gy" ...@@ -4,7 +4,7 @@ MYSQL_PASSWORD = "floz09sx3dTyx144gy"
MYSQL_DATABASE = "itmax_tarifs" MYSQL_DATABASE = "itmax_tarifs"
MYSQL_PORT = 3306 MYSQL_PORT = 3306
USE_SSH_TUNNEL = False USE_SSH_TUNNEL = True
SSH_HOST = "jumphost.bugsmasher.online" SSH_HOST = "jumphost.bugsmasher.online"
SSH_PORT = 22 SSH_PORT = 22
SSH_USERNAME = "root" SSH_USERNAME = "root"
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment