mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Adjust SupplierPart supplier foreignkey
- Limit choices to 'is_supplier'
This commit is contained in:
parent
d70137dcbd
commit
95be2755f4
@ -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