mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Merge pull request #168 from SchrodingersGat/supplier-part
Adjust SupplierPart supplier foreignkey
This commit is contained in:
commit
28d8252047
@ -400,7 +400,9 @@ class SupplierPart(models.Model):
|
||||
)
|
||||
|
||||
supplier = models.ForeignKey(Company, on_delete=models.CASCADE,
|
||||
related_name='parts')
|
||||
related_name='parts',
|
||||
limit_choices_to={'is_supplier': True}
|
||||
)
|
||||
|
||||
SKU = models.CharField(max_length=100, help_text='Supplier stock keeping unit')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user