Credit limit, payment due date and amount for credit card bank accounts. Closes #1717
This commit is contained in:
parent
47489db73b
commit
0430d7e30f
1 changed files with 3 additions and 0 deletions
|
|
@ -91,6 +91,9 @@ class Account(Recipient):
|
||||||
type = IntField('Type of account', default=TYPE_UNKNOWN)
|
type = IntField('Type of account', default=TYPE_UNKNOWN)
|
||||||
balance = DecimalField('Balance on this bank account')
|
balance = DecimalField('Balance on this bank account')
|
||||||
coming = DecimalField('Coming balance')
|
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):
|
def __repr__(self):
|
||||||
return u"<Account id=%r label=%r>" % (self.id, self.label)
|
return u"<Account id=%r label=%r>" % (self.id, self.label)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue