#9 feat(Sale): add external_id field.

This commit is contained in:
2025-07-19 10:57:28 -05:00
parent f8ff6b7905
commit 62d39c97c0
3 changed files with 21 additions and 1 deletions

View File

@@ -105,6 +105,7 @@ class Sale(models.Model):
related_name='Sales',
null=True
)
external_id = models.CharField(max_length=100, null=True, blank=True)
def __str__(self):
return f"{self.date} {self.customer}"