add acceptor & terminal device to assignment - add phone to organization - set password for device when assignment

This commit is contained in:
2025-08-30 09:47:36 +03:30
parent 00edbeb847
commit 390f1afe74
4 changed files with 16 additions and 9 deletions

View File

@@ -94,6 +94,7 @@ class OrganizationType(BaseModel):
class Organization(BaseModel):
name = models.CharField(max_length=250, null=True)
en_name = models.CharField(max_length=150, null=True)
phone = models.CharField(max_length=25, null=True)
type = models.ForeignKey(
'OrganizationType',
on_delete=models.CASCADE,