mirror of https://gitlab.crans.org/bde/nk20
Merge branch 'import_nk15' into 'master'
Import nk15 See merge request bde/nk20!23
This commit is contained in:
commit
25fc35c857
|
@ -27,6 +27,12 @@ class Note(PolymorphicModel):
|
|||
help_text=_('in centimes, money credited for this instance'),
|
||||
default=0,
|
||||
)
|
||||
last_negative= models.DateTimeField(
|
||||
verbose_name=_('last negative date'),
|
||||
help_text=_('last time the balance was negative'),
|
||||
null=True,
|
||||
blank=True,
|
||||
)
|
||||
is_active = models.BooleanField(
|
||||
_('active'),
|
||||
default=True,
|
||||
|
|
|
@ -164,10 +164,6 @@ class TemplateTransaction(Transaction):
|
|||
TemplateCategory,
|
||||
on_delete=models.PROTECT,
|
||||
)
|
||||
name = models.CharField(
|
||||
max_length=255,
|
||||
)
|
||||
|
||||
|
||||
class MembershipTransaction(Transaction):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue