Skip to content
Snippets Groups Projects
Commit 2f5bf06a authored by Maxime Kohlhaas's avatar Maxime Kohlhaas
Browse files

Supplier order : add trigger on product dispatch

parent ec3dab23
No related branches found
No related tags found
No related merge requests found
......@@ -1292,7 +1292,22 @@ class CommandeFournisseur extends CommonOrder
dol_syslog(get_class($this)."::DispatchProduct sql=".$sql);
$resql = $this->db->query($sql);
if (! $resql)
if ($resql)
{
if (! $notrigger)
{
global $conf, $langs, $user;
// Appel des triggers
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php';
$interface=new Interfaces($this->db);
$result=$interface->run_triggers('LINEORDER_SUPPLIER_DISPATCH',$this,$user,$langs,$conf);
if ($result < 0) { $error++; $this->errors=$interface->errors; }
// Fin appel triggers
}
$this->db->commit();
}
else
{
$this->error=$this->db->lasterror();
$error++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment