add country of transaction

This commit is contained in:
Romain Bignon 2015-02-13 16:30:39 +01:00
commit baab7311b8

View file

@ -141,6 +141,7 @@ class Transaction(BaseObject):
# International
original_amount = DecimalField('Original amount (in another currency)')
original_currency = StringField('Currency of the original amount')
country = StringField('Country of transaction')
def __repr__(self):
return "<Transaction date=%r label=%r amount=%r>" % (self.date, self.label, self.amount)