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:
parent
2f95fcac55
commit
2295ffe63e
10 changed files with 80 additions and 39 deletions
|
|
@ -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>';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue