diff --git a/inventory/signals.py b/inventory/signals.py index 393dd871..52b88ed4 100644 --- a/inventory/signals.py +++ b/inventory/signals.py @@ -963,11 +963,8 @@ def create_po_fulfilled_notification(sender,instance,created,**kwargs): @receiver(post_save, sender=models.Car) def car_created_notification(sender, instance, created, **kwargs): if created: -<<<<<<< HEAD - accountants = models.CustomGroup.objects.filter(dealer=instance.dealer,name__in=["Manager","Accountant","Inventory"]).first().group.user_set.all().distinct() -======= + accountants = models.CustomGroup.objects.filter(dealer=instance.dealer,name__in=["Manager","Accountant"]).first().group.user_set.all().distinct() ->>>>>>> b23e84331fbb3a8ce0814a04b68cd3380b93d3a2 for accountant in accountants: models.Notification.objects.create( user=accountant,