typo + doxygen

This commit is contained in:
Frédéric FRANCE 2019-12-09 08:07:59 +01:00 committed by GitHub
parent 2ca5a4378b
commit 76cf54e6e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,15 @@ class Mo extends CommonObject
public $qty;
public $fk_warehouse;
public $fk_soc;
/**
* @var string public note
*/
public $note_public;
/**
* @var string private note
*/
public $note_private;
/**
@ -245,7 +253,7 @@ class Mo extends CommonObject
// Insert lines in mrp_production table
if (! $error && $this->fk_bom > 0)
{
include_once DOL_DOCULENT_ROOT.'/bom/class/bom.class.php';
include_once DOL_DOCUMENT_ROOT.'/bom/class/bom.class.php';
$bom = new Bom($this->db);
$bom->fetch($this->fk_bom);
if ($bom->id > 0)