Merge pull request #3403 from defrance/patch-76
NEW add in get_origin function generic origintype
This commit is contained in:
commit
c09b130644
@ -660,9 +660,16 @@ class MouvementStock extends CommonObject
|
||||
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
|
||||
$origin = new FactureFournisseur($this->db);
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
return '';
|
||||
if ($origintype)
|
||||
{
|
||||
dol_include_once ('/'.$origintype.'/class/'.$origintype.'.class.php');
|
||||
$classname = ucfirst($origintype);
|
||||
$origin = new $classname($this->db);
|
||||
}
|
||||
else
|
||||
return '';
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user