Better explanation for Investment class

This commit is contained in:
Florent 2014-10-23 15:20:59 +02:00
commit 9c86b8f25b
2 changed files with 4 additions and 4 deletions

View file

@ -70,8 +70,8 @@ class AccountInvestment(IsinMixin, Page):
---------------- ----------------
label = StringField('Label of stocks') label = StringField('Label of stocks')
code = StringField('Short code identifier of the stock') code = StringField('Identifier of the stock (ISIN code)')
description = StringField('Description of the stock') description = StringField('Short description of the stock')
quantity = IntField('Quantity of stocks') quantity = IntField('Quantity of stocks')
unitprice = DecimalField('Buy price of one stock') unitprice = DecimalField('Buy price of one stock')
unitvalue = DecimalField('Current value of one stock') unitvalue = DecimalField('Current value of one stock')

View file

@ -159,8 +159,8 @@ class Investment(BaseObject):
""" """
label = StringField('Label of stocks') label = StringField('Label of stocks')
code = StringField('Short code identifier of the stock') code = StringField('Identifier of the stock (ISIN code)')
description = StringField('Description of the stock') description = StringField('Short description of the stock')
quantity = DecimalField('Quantity of stocks') quantity = DecimalField('Quantity of stocks')
unitprice = DecimalField('Buy price of one stock') unitprice = DecimalField('Buy price of one stock')
unitvalue = DecimalField('Current value of one stock') unitvalue = DecimalField('Current value of one stock')