diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index 38c5ccfa41bd9b6506ee40b7a3d803d72ebaef32..1a5d3ce0a7b92c270f6c17e8b99a0e9a48a49ade 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -417,10 +417,11 @@ class Transaction(BaseObject): raw = StringField('Raw label of the transaction') category = StringField('Category of the transaction') label = StringField('Pretty label') - amount = DecimalField('Amount of the transaction') + amount = DecimalField('Net amount of the transaction, used to compute account balance') card = StringField('Card number (if any)') commission = DecimalField('Commission part on the transaction (in account currency)') + gross_amount = DecimalField('Amount of the transaction without the commission') # International original_amount = DecimalField('Original amount (in another currency)')