diff --git a/htdocs/bom/class/bom.class.php b/htdocs/bom/class/bom.class.php
index 656b3169eef..0520c76dde2 100644
--- a/htdocs/bom/class/bom.class.php
+++ b/htdocs/bom/class/bom.class.php
@@ -790,7 +790,7 @@ class BOM extends CommonObject
$label .= '
'.$langs->trans('Label').': '.$this->label;
}
if (!empty($this->fk_product) && $this->fk_product > 0) {
- include_once DOL_DOCUMENT_ROO.'/product/class/product.class.php';
+ include_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
$product = new Product($db);
$resultFetch = $product->fetch($this->fk_product);
if ($resultFetch > 0) {