From 32237b9a2b574c9abfe6f54b73bb53f26f29c65b Mon Sep 17 00:00:00 2001 From: tipaul Date: Mon, 30 May 2005 13:50:12 +0000 Subject: [PATCH] ajout d'un lien "intervention" dans les onglets du client. Renvoie aux interventions pour ce seul client. --- htdocs/comm/fiche.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/comm/fiche.php b/htdocs/comm/fiche.php index b91ba5f67c0..dc5911c01cd 100644 --- a/htdocs/comm/fiche.php +++ b/htdocs/comm/fiche.php @@ -175,6 +175,11 @@ if ($_socid > 0) $head[$h][1] = $langs->trans("Accountancy"); $h++; } + if ($conf->compta->enabled) { + $head[$h][0] = DOL_URL_ROOT.'/fichinter/index.php?socid='.$objsoc->id; + $head[$h][1] = $langs->trans("Interventions"); + $h++; + } $head[$h][0] = DOL_URL_ROOT.'/socnote.php?socid='.$objsoc->id; $head[$h][1] = $langs->trans("Note");