feat(currencies): allow archiving

This commit is contained in:
Herculino Trotta
2025-08-29 22:47:00 -03:00
parent 4565dc770b
commit 1abe9e9f62
7 changed files with 50 additions and 0 deletions

View File

@@ -32,6 +32,11 @@ class Currency(models.Model):
help_text=_("Default currency for exchange calculations"),
)
is_archived = models.BooleanField(
default=False,
verbose_name=_("Archived"),
)
def __str__(self):
return self.name