Update facture-rec.class.php

This commit is contained in:
Frédéric FRANCE 2022-02-15 11:13:22 +01:00 committed by GitHub
parent ed4622790e
commit 710e970389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1440,7 +1440,15 @@ class FactureRec extends CommonInvoice
$result .= $this->ref;
}
$result .= $linkend;
global $action;
$hookmanager->initHooks(array($this->element . 'dao'));
$parameters = array('id'=>$this->id, 'getnomurl'=>$result);
$reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook > 0) {
$result = $hookmanager->resPrint;
} else {
$result .= $hookmanager->resPrint;
}
return $result;
}