2015-09-27 00:35:53 +02:00
|
|
|
<?php
|
|
|
|
//This file is part of NOALYSS and is under GPL
|
|
|
|
//see licence.txt
|
2018-04-13 18:58:28 +02:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Module Printing : Analytic to display relation between card or accounting with
|
|
|
|
* Analytic
|
|
|
|
*/
|
2015-09-27 00:35:53 +02:00
|
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
2018-04-13 18:58:28 +02:00
|
|
|
require_once NOALYSS_INCLUDE.'/class/anc_table.class.php';
|
2015-09-27 00:35:53 +02:00
|
|
|
$tab = new Anc_Table($cn);
|
|
|
|
$tab->get_request();
|
|
|
|
echo '<form method="get">';
|
|
|
|
echo $tab->display_form();
|
|
|
|
echo '<p>' . HtmlInput::submit('Recherche', _('Recherche')) . '</p>';
|
|
|
|
|
|
|
|
echo '</form>';
|
|
|
|
if (isset($_GET['result']))
|
|
|
|
{
|
|
|
|
echo $tab->show_button("");
|
|
|
|
$tab->display_html();
|
|
|
|
}
|
|
|
|
?>
|