add in get_origin function generic origintype
actually we have only internal module origintype propose to add feature to add stockmovement from other external module
This commit is contained in:
parent
15ab9c0ecd
commit
1b117d5581
@ -660,9 +660,16 @@ class MouvementStock extends CommonObject
|
|||||||
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
|
||||||
$origin = new FactureFournisseur($this->db);
|
$origin = new FactureFournisseur($this->db);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return '';
|
if ($origintype)
|
||||||
|
{
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/'.$origintype.'/class/'.$origintype.'.class.php';
|
||||||
|
$classname = ucfirst($origintype);
|
||||||
|
$origin = new $classname($this->db);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return '';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user