From 1fec0227b7ac573e62148a57deabe57d7cacd729 Mon Sep 17 00:00:00 2001 From: "piotr.gawron" <piotr.gawron@uni.lu> Date: Thu, 14 May 2020 15:18:24 +0200 Subject: [PATCH] lab ids added --- smash/web/importer/csv_tns_visit_import_reader.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/smash/web/importer/csv_tns_visit_import_reader.py b/smash/web/importer/csv_tns_visit_import_reader.py index 6afd5400..1a6181a3 100644 --- a/smash/web/importer/csv_tns_visit_import_reader.py +++ b/smash/web/importer/csv_tns_visit_import_reader.py @@ -297,6 +297,15 @@ class TnsCsvVisitImportReader: text = 'Laboratoires réunis, 4, rue Tony Bourg, 1278, Gasperich' if text == 'lab-ketterthill-41': text = "Ketterthill, 143-147, route d'Arlon, 8009, Strassen" + if text == 'lab-reunis-42': + text = 'Laboratoires réunis, 31, route de Luxembourg, 7240, Bereldange' + if text == 'lab-reunis-43': + text = 'Laboratoires réunis, 11, rue de Peppange, 3270, Bettembourg' + if text == 'lab-reunis-44': + text = 'Laboratoires réunis, 3, Suebelwee, 5685, Dalheim' + if text == 'lab-reunis-45': + text = 'Laboratoires réunis, 1, rue des Glacis, 1628, Luxembourg, Glacis' + locations = Location.objects.filter(name=text) if len(locations) > 0: return locations[0] -- GitLab