[IMP] stock_inventory_valuation_report: print variant name in report

This commit is contained in:
Alessandro Uffreduzzi
2024-02-07 10:37:23 +01:00
parent 583cd687db
commit 586b4eaedb

View File

@@ -75,7 +75,9 @@ class StockInventoryValuationReport(models.TransientModel):
if products:
for product in products:
vals = {
"name": product.name,
"name": product.with_context(
display_default_code=False
).display_name,
"reference": product.default_code,
"barcode": product.barcode,
"qty_at_date": product.quantity_svl,