diff --git a/stock_inventory_valuation_report/i18n/stock_inventory_valuation_report.pot b/stock_inventory_valuation_report/i18n/stock_inventory_valuation_report.pot index 5b8ac8a..54a277f 100644 --- a/stock_inventory_valuation_report/i18n/stock_inventory_valuation_report.pot +++ b/stock_inventory_valuation_report/i18n/stock_inventory_valuation_report.pot @@ -210,3 +210,20 @@ msgstr "" msgid "report.s_i_v_r.report_stock_inventory_valuation_report_xlsx" msgstr "" +#. module: stock_inventory_valuation_report +#: model:ir.model.fields,field_description:stock_inventory_valuation_report.field_report_s_i_v_r_report_stock_inventory_valuation_report_xlsx__name +#: model:ir.model.fields,field_description:stock_inventory_valuation_report.field_report_stock_inventory_valuation_report__name +#: model:ir.model.fields,field_description:stock_inventory_valuation_report.field_stock_inventory_valuation_view__name +#: model_terms:ir.ui.view,arch_db:stock_inventory_valuation_report.report_stock_inventory_valuation_lines_header +msgid "Name" +msgstr "" + +#. module: stock_inventory_valuation_report +#: model:ir.model.fields,field_description:stock_inventory_valuation_report.field_stock_inventory_valuation_view__reference +msgid "Reference" +msgstr "" + +#. module: stock_inventory_valuation_report +#: model:ir.model.fields,field_description:stock_inventory_valuation_report.field_stock_inventory_valuation_view__barcode +msgid "Barcode" +msgstr "" diff --git a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py index 26caecf..715e05a 100644 --- a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py +++ b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.py @@ -8,7 +8,9 @@ class StockInventoryValuationView(models.TransientModel): _name = 'stock.inventory.valuation.view' _description = 'Stock Inventory Valuation View' - display_name = fields.Char() + name = fields.Char() + reference = fields.Char() + barcode = fields.Char() qty_at_date = fields.Float() uom_id = fields.Many2one( comodel_name='uom.uom', @@ -54,7 +56,9 @@ class StockInventoryValuationReport(models.TransientModel): ReportLine = self.env['stock.inventory.valuation.view'] for product in products: line = { - 'display_name': product.display_name, + 'name': product.name, + 'reference': product.default_code, + 'barcode': product.barcode, 'qty_at_date': product.qty_at_date, 'uom_id': product.uom_id, 'currency_id': product.currency_id, diff --git a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.xml b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.xml index 6f5fdb7..c927aba 100644 --- a/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.xml +++ b/stock_inventory_valuation_report/reports/stock_inventory_valuation_report.xml @@ -99,7 +99,9 @@