first setup of pos transaction - add provider, user, organization information of pos to login

This commit is contained in:
2025-08-26 15:24:46 +03:30
parent c0b6b8ddca
commit 65c831d6a8
7 changed files with 54 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ class Device(BaseModel):
device_identity = models.CharField(max_length=25, null=True)
acceptor = models.CharField(max_length=50, null=True)
terminal = models.CharField(max_length=50, null=True)
serial = models.TextField(null=True)
serial = models.TextField(null=True, unique=True)
password = models.CharField(max_length=25, null=True)
multi_device = models.BooleanField(default=False)
server_in = models.BooleanField(default=False)