mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 11:35:41 +00:00
Company index / detail / edit pages working
This commit is contained in:
@ -49,6 +49,10 @@ class Company(models.Model):
|
||||
|
||||
notes = models.TextField(blank=True)
|
||||
|
||||
is_customer = models.BooleanField(default=False)
|
||||
|
||||
is_supplier = models.BooleanField(default=False)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
|
Reference in New Issue
Block a user