task #1013 Comptabilité analytique : amélioration quand aucune donnée

Task #1013 - Comptabilité analytique : amélioration quand aucune donnée
This commit is contained in:
Dany De Bontridder 2014-07-20 12:50:12 +02:00
parent 2f95fcac55
commit 2295ffe63e
10 changed files with 80 additions and 39 deletions

View file

@ -18,8 +18,18 @@ if (isset($_GET['result']))
//--------------------------------
// export Buttons
//---------------------------------
echo $list->show_button();
echo $list->display_html();
$result=$list->display_html();
if ( $list->has_data > 0)
{
echo $list->show_button();
echo $result;
}
else
{
echo '<p class="notice">';
echo _('Aucune donnée trouvée');
echo '</p>';
}
echo '</div>';
}
echo '</div>';