Merge pull request #12661 from frederic34/patch-21

typo + doxygen
This commit is contained in:
Laurent Destailleur 2019-12-09 10:46:32 +01:00 committed by GitHub
commit 4b8ebe94ad
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)