Ajout lien rapport de synthese niveau 2 et 5

This commit is contained in:
Michael RICOIS 2010-03-10 15:58:35 +00:00
parent 22975fa6fc
commit f4356ce4fa

View File

@ -142,8 +142,16 @@ $children[] = array('data' => 'Rapport synthétique',
'hidden' => true
)
);
$children[] = array('data' => 'Rapport complet',
'href' => 'menu_href_rsynthese',
$children[] = array('data' => 'Rapport complet A',
'href' => 'menu_href_rsynthesea',
'perm' =>
array(
'list' => array( 'INDISCORE3' ),
'hidden' => true
)
);
$children[] = array('data' => 'Rapport complet B',
'href' => 'menu_href_rsyntheseb',
'perm' =>
array(
'list' => array( 'INDISCORE3' ),
@ -656,6 +664,30 @@ function menu_href_rsynthese()
return $href;
}
function menu_href_rsynthesea()
{
global $siret, $idEntreprise;
$href = false;
if ( $siret*1!=0 ) {
$href = './?page=rsynthese&siret='.$siret.'&idEntreprise='.$idEntreprise.'&niveau=2';
}else{
$href = '#';
}
return $href;
}
function menu_href_rsyntheseb()
{
global $siret, $idEntreprise;
$href = false;
if ( $siret*1!=0 ) {
$href = './?page=rsynthese&siret='.$siret.'&idEntreprise='.$idEntreprise.'&niveau=5';
}else{
$href = '#';
}
return $href;
}
function menu_href_rsynthesemin()
{
global $siret, $idEntreprise;