I am making an inventory system, and one thing I would like to be able to track is transfers. I have two models
class Location(models.Model):
    class FacilityChoices(models.TextChoices):
        warehouse = 'Warehouse'
        location = 'Location'
    name = models.CharField(max_length=255, null=False, blank=False)
    street_ad = models.CharField(max_length=128, verbose_name='Street address')
    city_ad = models.CharField(max_length=128, verbose_name='City Address')
    state_prov = models.CharField(max_length=30, verbose_name='State/Province')
    country = models.CharField(max_length=50, verbose_name='Country')
    zip_code = models.CharField(max_length=20, verbose_name='Zip/Postal code')
    facility_type = models.CharField(max_length=30, choices=FacilityChoices.choices, default=FacilityChoices.warehouse)
...
class Transfer(models.Model):
    item = models.ForeignKey(Stock, on_delete=models.CASCADE)
    quantity = models.IntegerField()
    location_send = models.ForeignKey(Location, on_delete=models.CASCADE)
    location_receive = models.ForeignKey(Location, on_delete=models.CASCADE)
but I receive an error (fields.E304) when I do this. What would be the best way to accomplish this?
 
    