From 47c2257490e14e046af59871a1348c83ef24dd26 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Tue, 7 Oct 2014 00:36:29 +0200 Subject: [PATCH] add Investment.description field --- weboob/capabilities/bank.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index 2518223f..c5481681 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -158,13 +158,14 @@ class Investment(BaseObject): Investment in a financial market. """ - label = StringField('Label of stocks') - code = StringField('Short code identifier of the stock') - quantity = IntField('Quantity of stocks') - unitprice = DecimalField('Buy price of one stock') - unitvalue = DecimalField('Current value of one stock') - valuation = DecimalField('Total current valuation of the Investment') - diff = DecimalField('Difference between the buy cost and the current valuation') + label = StringField('Label of stocks') + code = StringField('Short code identifier of the stock') + description = StringField('Description of the stock') + quantity = IntField('Quantity of stocks') + unitprice = DecimalField('Buy price of one stock') + unitvalue = DecimalField('Current value of one stock') + valuation = DecimalField('Total current valuation of the Investment') + diff = DecimalField('Difference between the buy cost and the current valuation') class Transfer(BaseObject):