aboutsummaryrefslogtreecommitdiffstats
path: root/apps/checkin/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/checkin/models.py')
-rw-r--r--apps/checkin/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/checkin/models.py b/apps/checkin/models.py
index efea6ff..82874a4 100644
--- a/apps/checkin/models.py
+++ b/apps/checkin/models.py
@@ -85,6 +85,9 @@ class ServiceOrder(models.Model):
devices = models.ManyToManyField(Device, null=True)
tags = models.ManyToManyField(TaggedItem)
+ servo_id = models.CharField(max_length=7, default='', editable=False)
+ status = models.TextField(default='', blank=True)
+
def add_accessory(self, accessory):
tag = TaggedItem()
tag.kind = 'accessory'