django-bulk-hooks 0.1.268__py3-none-any.whl → 0.1.269__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.
Potentially problematic release.
This version of django-bulk-hooks might be problematic. Click here for more details.
- django_bulk_hooks/queryset.py +6 -0
- {django_bulk_hooks-0.1.268.dist-info → django_bulk_hooks-0.1.269.dist-info}/METADATA +1 -1
- {django_bulk_hooks-0.1.268.dist-info → django_bulk_hooks-0.1.269.dist-info}/RECORD +5 -5
- {django_bulk_hooks-0.1.268.dist-info → django_bulk_hooks-0.1.269.dist-info}/LICENSE +0 -0
- {django_bulk_hooks-0.1.268.dist-info → django_bulk_hooks-0.1.269.dist-info}/WHEEL +0 -0
django_bulk_hooks/queryset.py
CHANGED
|
@@ -535,6 +535,9 @@ class HookQuerySetMixin:
|
|
|
535
535
|
for field_name in unique_fields:
|
|
536
536
|
if hasattr(obj, field_name):
|
|
537
537
|
unique_value[field_name] = getattr(obj, field_name)
|
|
538
|
+
elif hasattr(obj, field_name + '_id'):
|
|
539
|
+
# Handle ForeignKey fields where _id suffix is used
|
|
540
|
+
unique_value[field_name] = getattr(obj, field_name + '_id')
|
|
538
541
|
if unique_value:
|
|
539
542
|
unique_values.append(unique_value)
|
|
540
543
|
|
|
@@ -563,6 +566,9 @@ class HookQuerySetMixin:
|
|
|
563
566
|
for field_name in unique_fields:
|
|
564
567
|
if hasattr(obj, field_name):
|
|
565
568
|
obj_unique_value[field_name] = getattr(obj, field_name)
|
|
569
|
+
elif hasattr(obj, field_name + '_id'):
|
|
570
|
+
# Handle ForeignKey fields where _id suffix is used
|
|
571
|
+
obj_unique_value[field_name] = getattr(obj, field_name + '_id')
|
|
566
572
|
|
|
567
573
|
# Check if this record already exists using our bulk lookup
|
|
568
574
|
if obj_unique_value:
|
|
@@ -9,9 +9,9 @@ django_bulk_hooks/handler.py,sha256=Bx-W6yyiciKMyy-BRxUt3CmRPCrX9_LhQgU-5LaJTjg,
|
|
|
9
9
|
django_bulk_hooks/manager.py,sha256=3jNWL-EkvGScsliNc7mW-ozQCG6HyaEevI1u1BFS4AA,3836
|
|
10
10
|
django_bulk_hooks/models.py,sha256=WtSfc4GBOG_oOt8n37cVvid0MtFIGze9JYKSixil2y0,4370
|
|
11
11
|
django_bulk_hooks/priority.py,sha256=HG_2D35nga68lBCZmSXTcplXrjFoRgZFRDOy4ROKonY,376
|
|
12
|
-
django_bulk_hooks/queryset.py,sha256=
|
|
12
|
+
django_bulk_hooks/queryset.py,sha256=W3ZYbfmxPaPmbc2ektDHmMieDVDmfeYKtbdIEiqMcBE,89762
|
|
13
13
|
django_bulk_hooks/registry.py,sha256=GRUTGVQEO2sdkC9OaZ9Q3U7mM-3Ix83uTyvrlTtpatw,1317
|
|
14
|
-
django_bulk_hooks-0.1.
|
|
15
|
-
django_bulk_hooks-0.1.
|
|
16
|
-
django_bulk_hooks-0.1.
|
|
17
|
-
django_bulk_hooks-0.1.
|
|
14
|
+
django_bulk_hooks-0.1.269.dist-info/LICENSE,sha256=dguKIcbDGeZD-vXWdLyErPUALYOvtX_fO4Zjhq481uk,1088
|
|
15
|
+
django_bulk_hooks-0.1.269.dist-info/METADATA,sha256=XMVW-QQc_K3N4cvBDI_gXzrTc6VCtcLJ61a-VHZnwQk,9115
|
|
16
|
+
django_bulk_hooks-0.1.269.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
17
|
+
django_bulk_hooks-0.1.269.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|