invoice call form

This commit is contained in:
Kenneth SOARES
2025-06-16 19:20:28 +02:00
parent 5f17ecc739
commit efa9f35b45
4 changed files with 63 additions and 12 deletions

View File

@@ -1407,7 +1407,7 @@ class MonthField(models.CharField):
class InvoiceCall(models.Model):
is_validated = models.BooleanField(verbose_name=_("is validated"))
is_validated = models.BooleanField(verbose_name=_("is validated"), default=False)
club = models.ForeignKey(Club, on_delete=models.CASCADE)
month = MonthField(verbose_name=_("invoice date"))