From 564bae453ead8a25fd0f8bddad499ad05a6dcf5a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 10 Jan 2022 21:00:38 +0100 Subject: [PATCH] Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop --- htdocs/bom/class/bom.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/bom/class/bom.class.php b/htdocs/bom/class/bom.class.php index 3855af82083..656b3169eef 100644 --- a/htdocs/bom/class/bom.class.php +++ b/htdocs/bom/class/bom.class.php @@ -794,7 +794,7 @@ class BOM extends CommonObject $product = new Product($db); $resultFetch = $product->fetch($this->fk_product); if ($resultFetch > 0) { - $label .= "
".$langs->trans("Product").': '.$product->label; + $label .= "
".$langs->trans("Product").': '.$product->ref.' - '.$product->label; } }