From 61e6e33387ee7855fe0cfc5394d578d244074574 Mon Sep 17 00:00:00 2001 From: ptibogxiv Date: Tue, 11 Jan 2022 20:37:20 +0100 Subject: [PATCH] FIX bom.class.php --- 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 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) {