pretix-map 0.0.6__py3-none-any.whl → 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pretix-map
3
- Version: 0.0.6
3
+ Version: 0.1.0
4
4
  Summary: An overview map of the catchment area of previous orders. Measured by postcode
5
5
  Author-email: MarkenJaden <jjsch1410@gmail.com>
6
6
  Maintainer-email: MarkenJaden <jjsch1410@gmail.com>
@@ -1,10 +1,10 @@
1
- pretix_map-0.0.6.dist-info/licenses/LICENSE,sha256=RhQ89ePNDClBzEROahhwjDrBSEb5Zpx6XewZfGlY4Ss,569
2
- pretix_mapplugin/__init__.py,sha256=vnEQ3_faaqtBKoxP4DuJgVUXAxvUIINTpkt3E8qLWks,23
1
+ pretix_map-0.1.0.dist-info/licenses/LICENSE,sha256=RhQ89ePNDClBzEROahhwjDrBSEb5Zpx6XewZfGlY4Ss,569
2
+ pretix_mapplugin/__init__.py,sha256=QTYqXqSTHFRkM9TEgpDFcHvwLbvqHDqvqfQ9EiXkcAM,23
3
3
  pretix_mapplugin/apps.py,sha256=AnThwyRw2AAz5f-kmXZ8hm85OmKnlDkRosVoQOBgPzE,830
4
4
  pretix_mapplugin/geocoding.py,sha256=lBmwMvmE_cPyOHxWE8H3Se2P-2Eq0UjDTCv9gUs97Fo,4018
5
5
  pretix_mapplugin/models.py,sha256=v0v9K0sb5OQHs5Gc6-jea_aEGECUQp1tZoYMwwb3YIM,994
6
6
  pretix_mapplugin/signals.py,sha256=maBMMSq5M7diy_EaNgKr8KRfGFj0U437u-MEl2NVYBw,3661
7
- pretix_mapplugin/tasks.py,sha256=dxxEe7WGEGqiwLQlmM7btZTNVTKGQq5L6gqM_RdIecY,4558
7
+ pretix_mapplugin/tasks.py,sha256=tNSjm12IVN-NqyCG9AxN5jHsGRbMA13X7qMfkW30_qM,4518
8
8
  pretix_mapplugin/urls.py,sha256=o5407vULF4S-bUihU7AeRxUcMyazg2lPjbvqRflsGxE,838
9
9
  pretix_mapplugin/views.py,sha256=7WgmNZeqwmOesT6PrkAIRC8fNfAcWGm-j9-2YqF5egI,7146
10
10
  pretix_mapplugin/locale/de/LC_MESSAGES/django.mo,sha256=6VVRAqa0ixL-lDA1QwoVvG0wd5ZBwYjaR4P8T73hxhU,269
@@ -39,8 +39,8 @@ pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/images/marker-ic
39
39
  pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/images/marker-shadow.png,sha256=Jk9cZAM58ELdcpBiz8BMF_jqDymIK1OOOEjtjxDttNo,618
40
40
  pretix_mapplugin/templates/pretix_mapplugin/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  pretix_mapplugin/templates/pretix_mapplugin/map_page.html,sha256=jUfPrCkwcbcTXgZ2d9a5wpUD1U7Y8g5rnB20hklKQ-k,2252
42
- pretix_map-0.0.6.dist-info/METADATA,sha256=LgMrztKJHpMfIbhAF363Ume1LxzKAXc9qzxLYgdOS0Y,9514
43
- pretix_map-0.0.6.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
44
- pretix_map-0.0.6.dist-info/entry_points.txt,sha256=C3NAjeZHoCekafkLMCJynPcABRTK8AUprtQv7sUNDZs,137
45
- pretix_map-0.0.6.dist-info/top_level.txt,sha256=CAtEnkgA73zE9Gadm5mjt1SpXHBPOS-QWP0dQVoNToE,17
46
- pretix_map-0.0.6.dist-info/RECORD,,
42
+ pretix_map-0.1.0.dist-info/METADATA,sha256=P_53hGKTlW_N8JsWYFXsWouU64cW70rxkY9XoJUveCY,9514
43
+ pretix_map-0.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
44
+ pretix_map-0.1.0.dist-info/entry_points.txt,sha256=C3NAjeZHoCekafkLMCJynPcABRTK8AUprtQv7sUNDZs,137
45
+ pretix_map-0.1.0.dist-info/top_level.txt,sha256=CAtEnkgA73zE9Gadm5mjt1SpXHBPOS-QWP0dQVoNToE,17
46
+ pretix_map-0.1.0.dist-info/RECORD,,
@@ -1 +1 @@
1
- __version__ = "0.0.6"
1
+ __version__ = "0.1.0"
pretix_mapplugin/tasks.py CHANGED
@@ -32,7 +32,6 @@ def geocode_order_task(self, order_pk: int,
32
32
  # Fetch order with related address and country data efficiently
33
33
  order = Order.objects.select_related(
34
34
  'invoice_address',
35
- 'invoice_address__country'
36
35
  ).get(pk=order_pk)
37
36
  logger.info(f"Starting geocoding task for Order {order.code} (PK: {order_pk})")
38
37