Added the limitation so that the default currency and the currencies in use cannot be deleted.

This commit is contained in:
2023-03-22 00:37:39 +08:00
parent b60cc7902d
commit bbf3ee3320
4 changed files with 185 additions and 120 deletions

View File

@ -432,6 +432,17 @@ class Currency(db.Model):
return True
return False
@property
def can_delete(self) -> bool:
"""Returns whether the currency can be deleted.
:return: True if the currency can be deleted, or False otherwise.
"""
from accounting.template_globals import default_currency_code
if self.code == default_currency_code():
return False
return len(self.line_items) == 0
def delete(self) -> None:
"""Deletes the currency.