diff --git a/modules/creditdunord/pages.py b/modules/creditdunord/pages.py index 89b3ceee40eca6364247626015d485b53904a0eb..1ee3dc352603bcd5a6776bf0db4c4a65bde95abe 100755 --- a/modules/creditdunord/pages.py +++ b/modules/creditdunord/pages.py @@ -712,6 +712,7 @@ class get_market_investment(TableElement): col_label = 'Valeur' col_quantity = 'Quantité' col_unitvalue = 'Cours' + col_unitprice = 'Prix de revient' col_valuation = 'Estimation' col_portfolio_share = '%' @@ -722,6 +723,7 @@ class item(ItemElement): obj_valuation = MyDecimal(TableCell('valuation', colspan=True)) obj_quantity = MyDecimal(TableCell('quantity', colspan=True)) obj_unitvalue = MyDecimal(TableCell('unitvalue', colspan=True)) + obj_unitprice = MyDecimal(TableCell('unitprice', colspan=True)) obj_portfolio_share = Eval(lambda x: x / 100, MyDecimal(TableCell('portfolio_share'))) def obj_code(self):