Skip to content
Snippets Groups Projects
Commit 84e51eff authored by sebhm's avatar sebhm
Browse files

add hook addMoreActionsButtons

as in most Card, this hook is useful
parent dc050d39
No related branches found
No related tags found
No related merge requests found
...@@ -2313,6 +2313,11 @@ else ...@@ -2313,6 +2313,11 @@ else
print '<div class="tabsAction">'; print '<div class="tabsAction">';
$parameters = array();
$reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been
// modified by hook
if (empty($reshook)) {
// Modify a validated invoice with no payments // Modify a validated invoice with no payments
if ($object->statut == FactureFournisseur::STATUS_VALIDATED && $action != 'edit' && $object->getSommePaiement() == 0 && $user->rights->fournisseur->facture->creer) if ($object->statut == FactureFournisseur::STATUS_VALIDATED && $action != 'edit' && $object->getSommePaiement() == 0 && $user->rights->fournisseur->facture->creer)
{ {
...@@ -2433,6 +2438,7 @@ else ...@@ -2433,6 +2438,7 @@ else
//print '</td></tr></table>'; //print '</td></tr></table>';
} }
} }
}
/* /*
* Show mail form * Show mail form
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment