Credit limit, payment due date and amount for credit card bank accounts. Closes #1717

This commit is contained in:
Oleg Plakhotniuk 2015-02-07 16:45:26 -06:00 committed by Romain Bignon
commit 0430d7e30f

View file

@ -91,6 +91,9 @@ class Account(Recipient):
type = IntField('Type of account', default=TYPE_UNKNOWN)
balance = DecimalField('Balance on this bank account')
coming = DecimalField('Coming balance')
paydate = DateField('For credit cards. When next payment is due.')
paymin = DecimalField('For credit cards. Minimal payment due.')
cardlimit = DecimalField('For credit cards. Credit limit.')
def __repr__(self):
return u"<Account id=%r label=%r>" % (self.id, self.label)